/external/llvm/lib/Target/X86/ |
D | X86PadShortFunction.cpp | 85 DenseMap<MachineBasicBlock*, VisitedBBInfo> VisitedBBs; member 116 VisitedBBs.clear(); in runOnMachineFunction() 181 = VisitedBBs.find(MBB); in cyclesUntilReturn() 182 if (it != VisitedBBs.end()) { in cyclesUntilReturn() 195 VisitedBBs[MBB] = VisitedBBInfo(true, CyclesToEnd); in cyclesUntilReturn() 203 VisitedBBs[MBB] = VisitedBBInfo(false, CyclesToEnd); in cyclesUntilReturn()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86PadShortFunction.cpp | 91 DenseMap<MachineBasicBlock*, VisitedBBInfo> VisitedBBs; member 125 VisitedBBs.clear(); in runOnMachineFunction() 192 = VisitedBBs.find(MBB); in cyclesUntilReturn() 193 if (it != VisitedBBs.end()) { in cyclesUntilReturn() 206 VisitedBBs[MBB] = VisitedBBInfo(true, CyclesToEnd); in cyclesUntilReturn() 214 VisitedBBs[MBB] = VisitedBBInfo(false, CyclesToEnd); in cyclesUntilReturn()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | FunctionComparator.cpp | 853 SmallPtrSet<const BasicBlock *, 32> VisitedBBs; // in terms of F1. in compare() local 858 VisitedBBs.insert(FnLBBs[0]); in compare() 874 if (!VisitedBBs.insert(TermL->getSuccessor(i)).second) in compare() 926 SmallPtrSet<const BasicBlock *, 16> VisitedBBs; in functionHash() local 931 VisitedBBs.insert(BBs[0]); in functionHash() 942 if (!VisitedBBs.insert(Term->getSuccessor(i)).second) in functionHash()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | LoopInfoImpl.h | 294 SmallPtrSet<BlockT *, 8> VisitedBBs; in verifyLoop() local 333 VisitedBBs.insert(BB); in verifyLoop() 336 if (VisitedBBs.size() != getNumBlocks()) { in verifyLoop() 339 if (!VisitedBBs.count(BB)) { in verifyLoop()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | FunctionLoweringInfo.h | 172 SmallPtrSet<const BasicBlock*, 4> VisitedBBs; variable
|
/external/llvm/include/llvm/CodeGen/ |
D | FunctionLoweringInfo.h | 186 SmallPtrSet<const BasicBlock*, 4> VisitedBBs; variable
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 1271 SmallPtrSet<const BasicBlock *, 32> VisitedBBs; // in terms of F1. in compare() local 1276 VisitedBBs.insert(FnLBBs[0]); in compare() 1292 if (!VisitedBBs.insert(TermL->getSuccessor(i)).second) in compare() 1339 SmallSet<const BasicBlock *, 16> VisitedBBs; in functionHash() local 1344 VisitedBBs.insert(BBs[0]); in functionHash() 1355 if (!VisitedBBs.insert(Term->getSuccessor(i)).second) in functionHash()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | FunctionLoweringInfo.cpp | 345 VisitedBBs.clear(); in clear()
|
D | SelectionDAGISel.cpp | 1424 if (!FuncInfo->VisitedBBs.count(*PI)) { in SelectAllBasicBlocks() 1438 FuncInfo->VisitedBBs.insert(LLVMBB); in SelectAllBasicBlocks()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfo.cpp | 604 SmallPtrSet<MachineBasicBlock *, 8> VisitedBBs; in InsertBranch() local 605 MachineInstr *Loop = findLoopInstr(TBB, EndLoopOp, VisitedBBs); in InsertBranch() 644 SmallPtrSet<MachineBasicBlock *, 8> VisitedBBs; in InsertBranch() local 645 MachineInstr *Loop = findLoopInstr(TBB, EndLoopOp, VisitedBBs); in InsertBranch() 694 SmallPtrSet<MachineBasicBlock *, 8> VisitedBBs; in reduceLoopCount() local 695 MachineInstr *Loop = findLoopInstr(&MBB, Cmp->getOpcode(), VisitedBBs); in reduceLoopCount()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfo.cpp | 618 SmallPtrSet<MachineBasicBlock *, 8> VisitedBBs; in insertBranch() local 620 VisitedBBs); in insertBranch() 660 SmallPtrSet<MachineBasicBlock *, 8> VisitedBBs; in insertBranch() local 662 VisitedBBs); in insertBranch() 760 SmallPtrSet<MachineBasicBlock *, 8> VisitedBBs; in analyzeLoopForPipelining() local 762 LoopBB, I->getOpcode(), I->getOperand(0).getMBB(), VisitedBBs); in analyzeLoopForPipelining()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FunctionLoweringInfo.cpp | 354 VisitedBBs.clear(); in clear()
|
D | SelectionDAGISel.cpp | 1284 if (!FuncInfo->VisitedBBs.count(*PI)) { in SelectAllBasicBlocks() 1300 FuncInfo->VisitedBBs.insert(LLVMBB); in SelectAllBasicBlocks()
|
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 2023 SmallPtrSet<BasicBlock*, 4> VisitedBBs; in dupRetToEnableTailCallOpts() local 2025 if (!VisitedBBs.insert(*PI).second) in dupRetToEnableTailCallOpts()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 2224 SmallSet<BasicBlock*, 4> VisitedBBs; in vectorizeTree() local 2230 if (!VisitedBBs.insert(IBB).second) { in vectorizeTree()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 2131 SmallPtrSet<BasicBlock*, 4> VisitedBBs; in dupRetToEnableTailCallOpts() local 2133 if (!VisitedBBs.insert(*PI).second) in dupRetToEnableTailCallOpts()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 4091 SmallPtrSet<BasicBlock*, 4> VisitedBBs; in vectorizeTree() local 4097 if (!VisitedBBs.insert(IBB).second) { in vectorizeTree()
|