HomeSort by relevance Sort by last modified time
    Searched defs:Blocks (Results 101 - 125 of 233) sorted by null

1 2 3 45 6 7 8 910

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
InterferenceCache.h 37 /// of PhysReg in all basic blocks.
67 /// Blocks - Interference for each block in the function.
68 SmallVector<BlockInterference, 8> Blocks;
70 /// update - Recompute Blocks[MBBNum]
102 if (Blocks[MBBNum].Tag != Tag)
104 return &Blocks[MBBNum];
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
CrashDebugger.cpp 246 /// all terminators except the specified basic blocks to a 'ret' instruction,
278 SmallPtrSet<BasicBlock*, 8> Blocks;
280 Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
282 outs() << "Checking for crash with only these blocks:";
283 unsigned NumPrint = Blocks.size();
287 if (NumPrint < Blocks.size())
288 outs() << "... <" << Blocks.size() << " total>";
291 // Loop over and delete any hack up any blocks that are not listed...
294 if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
310 // The CFG Simplifier pass may delete one of the basic blocks we are
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PostOrderIterator.h 45 // confine a CFG traversal to blocks in a specific loop.
264 // This is used to visit basic blocks in a method in reverse post order. This
272 // BasicBlocks are removed, *but* it may contain erased blocks. Some places
290 std::vector<NodeRef> Blocks; // Block list in normal PO order
293 std::copy(po_begin(BB), po_end(BB), std::back_inserter(Blocks));
302 rpo_iterator begin() { return Blocks.rbegin(); }
303 rpo_iterator end() { return Blocks.rend(); }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 91 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 91 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PostOrderIterator.h 45 // confine a CFG traversal to blocks in a specific loop.
264 // This is used to visit basic blocks in a method in reverse post order. This
272 // BasicBlocks are removed, *but* it may contain erased blocks. Some places
290 std::vector<NodeRef> Blocks; // Block list in normal PO order
293 std::copy(po_begin(BB), po_end(BB), std::back_inserter(Blocks));
302 rpo_iterator begin() { return Blocks.rbegin(); }
303 rpo_iterator end() { return Blocks.rend(); }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 91 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 91 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 96 std::vector<SourceLineBlock> Blocks;
  /external/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 643 std::vector<MachineBasicBlock *> Blocks;
644 for (const auto &MBBSource : Entry.Blocks) {
648 Blocks.push_back(MBB);
650 unsigned Index = JTI->createJumpTableIndex(Blocks);
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 321 /// all terminators except the specified basic blocks to a 'ret' instruction,
353 SmallPtrSet<BasicBlock*, 8> Blocks;
355 Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
357 outs() << "Checking for crash with only these blocks:";
358 unsigned NumPrint = Blocks.size();
362 if (NumPrint < Blocks.size())
363 outs() << "... <" << Blocks.size() << " total>";
366 // Loop over and delete any hack up any blocks that are not listed...
369 if (!Blocks.count(&*BB) && BB->getTerminator()->getNumSuccessors()) {
387 // The CFG Simplifier pass may delete one of the basic blocks we ar
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 120 /// The current mapping from old blocks to new blocks.
121 DenseMap<BasicBlock*, BasicBlock*> Blocks;
128 if (!Blocks.count(*I)) Count++;
135 /// predecessor blocks it has remaining.
148 /// A queue of unified blocks to process.
151 /// Try to unify the given two blocks. Enqueues them for processing
156 BasicBlock *&Ref = Blocks[L];
390 return Blocks[cast<BlockAddress>(L)->getBasicBlock()]
446 return Blocks[cast<BasicBlock>(L)] != R
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DifferenceEngine.cpp 123 /// The current mapping from old blocks to new blocks.
124 DenseMap<BasicBlock*, BasicBlock*> Blocks;
131 if (!Blocks.count(*I)) Count++;
138 /// predecessor blocks it has remaining.
151 /// A queue of unified blocks to process.
154 /// Try to unify the given two blocks. Enqueues them for processing
159 BasicBlock *&Ref = Blocks[L];
390 return Blocks[cast<BlockAddress>(L)->getBasicBlock()]
446 return Blocks[cast<BasicBlock>(L)] != R
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MIRYamlMapping.h 324 std::vector<FlowStringValue> Blocks;
326 return ID == Other.ID && Blocks == Other.Blocks;
340 YamlIO.mapOptional("blocks", Entry.Blocks, std::vector<FlowStringValue>());
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
MIRYamlMapping.h 324 std::vector<FlowStringValue> Blocks;
326 return ID == Other.ID && Blocks == Other.Blocks;
340 YamlIO.mapOptional("blocks", Entry.Blocks, std::vector<FlowStringValue>());
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
MIRYamlMapping.h 324 std::vector<FlowStringValue> Blocks;
326 return ID == Other.ID && Blocks == Other.Blocks;
340 YamlIO.mapOptional("blocks", Entry.Blocks, std::vector<FlowStringValue>());
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
MIRYamlMapping.h 324 std::vector<FlowStringValue> Blocks;
326 return ID == Other.ID && Blocks == Other.Blocks;
340 YamlIO.mapOptional("blocks", Entry.Blocks, std::vector<FlowStringValue>());
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/DwMmcHcDxe/
DwMmcHci.c     [all...]

Completed in 1518 milliseconds

1 2 3 45 6 7 8 910