HomeSort by relevance Sort by last modified time
    Searched defs:MBBNumbering (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineFunction.h 100 std::vector<MachineBasicBlock*> MBBNumbering;
232 assert(N < MBBNumbering.size() && "Illegal block number");
233 assert(MBBNumbering[N] && "Block was removed from the machine function!");
234 return MBBNumbering[N];
239 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
333 MBBNumbering.push_back(MBB);
334 return (unsigned)MBBNumbering.size()-1;
341 assert(N < MBBNumbering.size() && "Illegal basic block #");
342 MBBNumbering[N] = 0;
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 190 std::vector<MachineBasicBlock*> MBBNumbering;
372 assert(N < MBBNumbering.size() && "Illegal block number");
373 assert(MBBNumbering[N] && "Block was removed from the machine function!");
374 return MBBNumbering[N];
382 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
490 MBBNumbering.push_back(MBB);
491 return (unsigned)MBBNumbering.size()-1;
498 assert(N < MBBNumbering.size() && "Illegal basic block #");
499 MBBNumbering[N] = nullptr;

Completed in 103 milliseconds