Home
last modified time | relevance | path

Searched refs:DFI (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Analysis/
DIteratedDominanceFrontier.cpp24 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/
DDominanceFrontierImpl.h104 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/
DWebAssemblyPEI.cpp835 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/
DPrologEpilogInserter.cpp819 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()
DMachineVerifier.cpp1787 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/
DSemaOverload.cpp9675 static unsigned RankDeductionFailure(const DeductionFailureInfo &DFI) { in RankDeductionFailure() argument
9676 switch ((Sema::TemplateDeductionResult)DFI.Result) { in RankDeductionFailure()