Home
last modified time | relevance | path

Searched refs:PreRegAlloc (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DTailDuplication.cpp32 bool PreRegAlloc; member in __anonf6112c3d0111::TailDuplicateBase
34 TailDuplicateBase(char &PassID, bool PreRegAlloc) in TailDuplicateBase() argument
35 : MachineFunctionPass(PassID), PreRegAlloc(PreRegAlloc) {} in TailDuplicateBase()
78 Duplicator.initMF(MF, PreRegAlloc, MBPI, /*LayoutMode=*/false); in runOnMachineFunction()
DTailDuplicator.cpp79 void TailDuplicator::initMF(MachineFunction &MFin, bool PreRegAlloc, in initMF() argument
93 this->PreRegAlloc = PreRegAlloc; in initMF()
175 if (PreRegAlloc) in tailDuplicateAndUpdate()
264 if (PreRegAlloc && TailDupVerify) { in tailDuplicateBlocks()
283 if (PreRegAlloc && TailDupVerify) in tailDuplicateBlocks()
383 if (PreRegAlloc) { in duplicateInstruction()
588 if (HasIndirectbr && PreRegAlloc) in shouldTailDuplicate()
613 if (PreRegAlloc && MI.isReturn()) in shouldTailDuplicate()
619 if (PreRegAlloc && MI.isCall()) in shouldTailDuplicate()
650 if (HasIndirectbr && PreRegAlloc) in shouldTailDuplicate()
[all …]
DMachineLICM.cpp101 bool PreRegAlloc; member in __anonbcfebb110111::MachineLICMBase
147 MachineLICMBase(char &PassID, bool PreRegAlloc) in MachineLICMBase() argument
148 : MachineFunctionPass(PassID), PreRegAlloc(PreRegAlloc) {} in MachineLICMBase()
319 PreRegAlloc = MRI->isSSA(); in runOnMachineFunction()
321 if (PreRegAlloc) in runOnMachineFunction()
327 if (PreRegAlloc) { in runOnMachineFunction()
350 if (PreRegAlloc && !LoopIsOuterMostWithPredecessor(CurLoop)) { in runOnMachineFunction()
357 if (!PreRegAlloc) in runOnMachineFunction()
1352 if (TII->produceSameValue(*MI, *PrevMI, (PreRegAlloc ? MRI : nullptr))) in LookForDuplicate()
DIfConversion.cpp199 bool PreRegAlloc; member in __anon0dc22c2c0111::IfConverter
354 PreRegAlloc = MRI->isSSA(); in INITIALIZE_PASS_DEPENDENCY()
357 if (!PreRegAlloc) { in INITIALIZE_PASS_DEPENDENCY()
DMachineBlockPlacement.cpp2777 bool PreRegAlloc = false; in runOnMachineFunction() local
2778 TailDup.initMF(MF, PreRegAlloc, MBPI, /* LayoutMode */ true, TailDupSize); in runOnMachineFunction()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DTailDuplication.cpp59 bool PreRegAlloc; member in __anoncab2b0910111::TailDuplicatePass
74 MachineFunctionPass(ID), PreRegAlloc(PreRA) {} in TailDuplicatePass()
121 FunctionPass *llvm::createTailDuplicatePass(bool PreRegAlloc) { in createTailDuplicatePass() argument
122 return new TailDuplicatePass(PreRegAlloc); in createTailDuplicatePass()
208 if (PreRegAlloc) in TailDuplicateAndUpdate()
294 if (PreRegAlloc && TailDupVerify) { in TailDuplicateBlocks()
313 if (PreRegAlloc && TailDupVerify) in TailDuplicateBlocks()
558 if (HasIndirectbr && PreRegAlloc) in shouldTailDuplicate()
573 if (PreRegAlloc && I->getDesc().isReturn()) in shouldTailDuplicate()
579 if (PreRegAlloc && I->getDesc().isCall()) in shouldTailDuplicate()
[all …]
DMachineLICM.cpp63 bool PreRegAlloc; member in __anon0a0335650111::MachineLICM
114 MachineFunctionPass(ID), PreRegAlloc(true) { in MachineLICM()
119 MachineFunctionPass(ID), PreRegAlloc(PreRA) { in MachineLICM()
289 FunctionPass *llvm::createMachineLICMPass(bool PreRegAlloc) { in INITIALIZE_PASS_DEPENDENCY()
290 return new MachineLICM(PreRegAlloc); in INITIALIZE_PASS_DEPENDENCY()
308 if (PreRegAlloc) in runOnMachineFunction()
324 if (PreRegAlloc) { in runOnMachineFunction()
347 if (PreRegAlloc && !LoopIsOuterMostWithPredecessor(CurLoop)) { in runOnMachineFunction()
352 if (!PreRegAlloc) in runOnMachineFunction()
1165 if (TII->produceSameValue(MI, PrevMI, (PreRegAlloc ? MRI : 0))) in LookForDuplicate()
/external/llvm/lib/CodeGen/
DTailDuplicator.cpp69 PreRegAlloc = MRI->isSSA(); in initMF()
142 if (PreRegAlloc) in tailDuplicateAndUpdate()
228 if (PreRegAlloc && TailDupVerify) { in tailDuplicateBlocks()
247 if (PreRegAlloc && TailDupVerify) in tailDuplicateBlocks()
341 if (PreRegAlloc) { in duplicateInstruction()
538 if (HasIndirectbr && PreRegAlloc) in shouldTailDuplicate()
557 if (PreRegAlloc && MI.isReturn()) in shouldTailDuplicate()
563 if (PreRegAlloc && MI.isCall()) in shouldTailDuplicate()
594 if (HasIndirectbr && PreRegAlloc) in shouldTailDuplicate()
600 if (!PreRegAlloc) in shouldTailDuplicate()
[all …]
DMachineLICM.cpp78 bool PreRegAlloc; member in __anon3c58eeb90111::MachineLICM
127 MachineFunctionPass(ID), PreRegAlloc(true) { in MachineLICM()
132 MachineFunctionPass(ID), PreRegAlloc(PreRA) { in MachineLICM()
275 PreRegAlloc = MRI->isSSA(); in runOnMachineFunction()
277 if (PreRegAlloc) in runOnMachineFunction()
283 if (PreRegAlloc) { in runOnMachineFunction()
306 if (PreRegAlloc && !LoopIsOuterMostWithPredecessor(CurLoop)) { in runOnMachineFunction()
313 if (!PreRegAlloc) in runOnMachineFunction()
1222 if (TII->produceSameValue(*MI, *PrevMI, (PreRegAlloc ? MRI : nullptr))) in LookForDuplicate()
DIfConversion.cpp172 bool PreRegAlloc; member in __anon7862d4d40111::IfConverter
300 PreRegAlloc = MRI->isSSA(); in INITIALIZE_PASS_DEPENDENCY()
303 if (!PreRegAlloc) { in INITIALIZE_PASS_DEPENDENCY()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DPasses.h153 FunctionPass *createTailDuplicatePass(bool PreRegAlloc = false);
186 FunctionPass *createMachineLICMPass(bool PreRegAlloc = true);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DTailDuplicator.h44 bool PreRegAlloc; variable
67 void initMF(MachineFunction &MF, bool PreRegAlloc,
/external/llvm/include/llvm/CodeGen/
DTailDuplicator.h36 bool PreRegAlloc; variable
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DThumb2ITBlockPass.cpp26 bool PreRegAlloc; member in __anon8281d83d0111::Thumb2ITBlockPass