Searched refs:DFI (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Analysis/ |
D | IteratedDominanceFrontier.cpp | 24 for (auto DFI = df_begin(DT.getRootNode()), DFE = df_end(DT.getRootNode()); in calculate() local 25 DFI != DFE; ++DFI) { in calculate() 26 DomLevels[*DFI] = DFI.getPathLength() - 1; in calculate()
|
/external/llvm/include/llvm/Analysis/ |
D | DominanceFrontierImpl.h | 104 const_iterator DFI = find(Node); in compare() local 105 if (DFI == end()) in compare() 108 if (compareDomSet(I->second, DFI->second)) in compare()
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyPEI.cpp | 835 for (auto DFI = df_ext_begin(&Fn, Reachable), DFE = df_ext_end(&Fn, Reachable); in replaceFrameIndices() local 836 DFI != DFE; ++DFI) { in replaceFrameIndices() 839 if (DFI.getPathLength() >= 2) { in replaceFrameIndices() 840 MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2); in replaceFrameIndices() 845 MachineBasicBlock *BB = *DFI; in replaceFrameIndices()
|
/external/llvm/lib/CodeGen/ |
D | PrologEpilogInserter.cpp | 819 for (auto DFI = df_ext_begin(&Fn, Reachable), DFE = df_ext_end(&Fn, Reachable); in replaceFrameIndices() local 820 DFI != DFE; ++DFI) { in replaceFrameIndices() 823 if (DFI.getPathLength() >= 2) { in replaceFrameIndices() 824 MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2); in replaceFrameIndices() 829 MachineBasicBlock *BB = *DFI; in replaceFrameIndices()
|
D | MachineVerifier.cpp | 1787 DFI = df_ext_begin(MF, Reachable), DFE = df_ext_end(MF, Reachable); in verifyStackFrame() local 1788 DFI != DFE; ++DFI) { in verifyStackFrame() 1789 const MachineBasicBlock *MBB = *DFI; in verifyStackFrame() 1793 if (DFI.getPathLength() >= 2) { in verifyStackFrame() 1794 const MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2); in verifyStackFrame()
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 9675 static unsigned RankDeductionFailure(const DeductionFailureInfo &DFI) { in RankDeductionFailure() argument 9676 switch ((Sema::TemplateDeductionResult)DFI.Result) { in RankDeductionFailure()
|