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

  /external/llvm/lib/CodeGen/
SlotIndexes.cpp 45 // Iterate over all MBBs, and within each MBB all MIs, keeping the MI
59 "Index -> MBB mapping non-empty at initial numbering?");
61 "MBB -> Index mapping non-empty at initial numbering?");
75 MachineBasicBlock *mbb = &*mbbItr; local
77 // Insert an index for the MBB start.
80 for (MachineBasicBlock::iterator miItr = mbb->begin(), miEnd = mbb->end();
99 MBBRanges[mbb->getNumber()].first = blockStartIndex;
100 MBBRanges[mbb->getNumber()].second = SlotIndex(&indexList.back(),
102 idx2MBBMap.push_back(IdxMBBPair(blockStartIndex, mbb));
    [all...]
CalcSpillWeights.cpp 92 MachineBasicBlock *mbb = 0; local
119 if (mi->getParent() != mbb) {
120 mbb = mi->getParent();
121 loop = Loops.getLoopFor(mbb);
123 isExiting = loop ? loop->isLoopExiting(mbb) : false;
132 if (writes && isExiting && LIS.isLiveOutOfMBB(li, mbb))
RegAllocPBQP.cpp 389 const MachineBasicBlock *mbb = &*mbbItr; local
391 for (MachineBasicBlock::const_iterator miItr = mbb->begin(),
392 miEnd = mbb->end();
412 loopInfo->getLoopDepth(mbb));
RenderMachineFunction.cpp 72 "MBB starts."),
809 MachineBasicBlock *mbb = sis->getMBBFromIndex(i); local
812 if (i == sis->getMBBStartIdx(mbb) || mi != 0 ||
817 if (i == sis->getMBBStartIdx(mbb)) {
818 os << indent + s(6) << "BB#" << mbb->getNumber() << ":&nbsp;\n";
    [all...]
RegisterCoalescer.cpp 108 /// CopyCoalesceInMBB - Coalesce copies in the specified MBB, putting
110 void CopyCoalesceInMBB(MachineBasicBlock *MBB,
680 MachineBasicBlock *MBB = DefMI->getParent();
691 MBB->insert(Pos, NewMI);
692 MBB->erase(DefMI);
803 MachineBasicBlock *MBB = CopyMI->getParent();
806 TII->reMaterialize(*MBB, MII, DstReg, 0, DefMI, *TRI);
1834 MachineBasicBlock* mbb = mbbi; local
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
MappedByteBufferTest.java 217 MappedByteBuffer mbb = ch.map(MapMode.READ_WRITE, 0L, 100L); local
220 mbb.putInt(1, 1);
221 mbb.position(50);
222 mbb.putInt(50);
224 mbb.flip();
225 mbb.get();
226 assertEquals(1, mbb.getInt());
228 mbb.position(50);
229 assertEquals(50, mbb.getInt());
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 464 milliseconds