LCOV - code coverage report
Current view: top level - lib/CodeGen - MachineDominanceFrontier.cpp (source / functions) Hit Total Coverage
Test: llvm-toolchain.info Lines: 16 16 100.0 %
Date: 2018-10-20 13:21:21 Functions: 6 6 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : //===- MachineDominanceFrontier.cpp ---------------------------------------===//
       2             : //
       3             : //                     The LLVM Compiler Infrastructure
       4             : //
       5             : // This file is distributed under the University of Illinois Open Source
       6             : // License. See LICENSE.TXT for details.
       7             : //
       8             : //===----------------------------------------------------------------------===//
       9             : 
      10             : #include "llvm/CodeGen/MachineDominanceFrontier.h"
      11             : #include "llvm/Analysis/DominanceFrontierImpl.h"
      12             : #include "llvm/CodeGen/MachineDominators.h"
      13             : #include "llvm/CodeGen/Passes.h"
      14             : 
      15             : using namespace llvm;
      16             : 
      17             : namespace llvm {
      18             : template class DominanceFrontierBase<MachineBasicBlock, false>;
      19             : template class DominanceFrontierBase<MachineBasicBlock, true>;
      20             : template class ForwardDominanceFrontierBase<MachineBasicBlock>;
      21             : }
      22             : 
      23             : 
      24             : char MachineDominanceFrontier::ID = 0;
      25             : 
      26       85329 : INITIALIZE_PASS_BEGIN(MachineDominanceFrontier, "machine-domfrontier",
      27             :                 "Machine Dominance Frontier Construction", true, true)
      28       85329 : INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
      29      374408 : INITIALIZE_PASS_END(MachineDominanceFrontier, "machine-domfrontier",
      30             :                 "Machine Dominance Frontier Construction", true, true)
      31             : 
      32        1981 : MachineDominanceFrontier::MachineDominanceFrontier()
      33             :   : MachineFunctionPass(ID),
      34        1981 :     Base() {
      35        1981 :   initializeMachineDominanceFrontierPass(*PassRegistry::getPassRegistry());
      36        1981 : }
      37             : 
      38             : char &llvm::MachineDominanceFrontierID = MachineDominanceFrontier::ID;
      39             : 
      40        9572 : bool MachineDominanceFrontier::runOnMachineFunction(MachineFunction &) {
      41        9572 :   releaseMemory();
      42        9572 :   Base.analyze(getAnalysis<MachineDominatorTree>().getBase());
      43        9572 :   return false;
      44             : }
      45             : 
      46       19144 : void MachineDominanceFrontier::releaseMemory() {
      47             :   Base.releaseMemory();
      48       19144 : }
      49             : 
      50        1978 : void MachineDominanceFrontier::getAnalysisUsage(AnalysisUsage &AU) const {
      51             :   AU.setPreservesAll();
      52             :   AU.addRequired<MachineDominatorTree>();
      53        1978 :   MachineFunctionPass::getAnalysisUsage(AU);
      54        1978 : }

Generated by: LCOV version 1.13