/external/llvm/include/llvm/CodeGen/ |
LiveIntervalAnalysis.h | 154 /// adds a live range from that instruction to the end of its MBB. 205 SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const { 206 return indexes_->getMBBStartIdx(mbb); 210 SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const { 211 return indexes_->getMBBEndIdx(mbb); 215 const MachineBasicBlock *mbb) const { 216 return li.liveAt(getMBBStartIdx(mbb)); 220 const MachineBasicBlock *mbb) { 221 return li.getLiveRangeContaining(getMBBStartIdx(mbb)); 225 const MachineBasicBlock *mbb) const [all...] |
SlotIndexes.h | 348 /// MBBRanges - Map MBB number to (start, stop) indexes. 352 /// and MBB id. 521 const MachineBasicBlock *MBB = MI->getParent(); 522 assert(MBB && "MI must be inserted inna basic block"); 523 MachineBasicBlock::const_iterator I = MI, B = MBB->begin(); 526 return getMBBStartIdx(MBB); 538 const MachineBasicBlock *MBB = MI->getParent(); 539 assert(MBB && "MI must be inserted inna basic block"); 540 MachineBasicBlock::const_iterator I = MI, E = MBB->end(); 544 return getMBBEndIdx(MBB); [all...] |
RegisterScavenging.h | 34 MachineBasicBlock *MBB; 73 : MBB(NULL), NumPhysRegs(0), Tracking(false), 78 void enterBasicBlock(MachineBasicBlock *mbb); 84 /// forward - Move the internal MBB iterator and update register states. 87 /// forward - Move the internal MBB iterator and update register states until 90 if (!Tracking && MBB->begin() != I) forward(); 94 /// skipTo - Move the internal MBB iterator but do not update register states.
|
SelectionDAGNodes.h | [all...] |
/external/llvm/lib/CodeGen/ |
SlotIndexes.cpp | 44 // Iterate over all MBBs, and within each MBB all MIs, keeping the MI 60 "Index -> MBB mapping non-empty at initial numbering?"); 62 "MBB -> Index mapping non-empty at initial numbering?"); 76 MachineBasicBlock *mbb = &*mbbItr; local 78 // Insert an index for the MBB start. 81 for (MachineBasicBlock::iterator miItr = mbb->begin(), miEnd = mbb->end(); 99 MBBRanges[mbb->getNumber()].first = blockStartIndex; 100 MBBRanges[mbb->getNumber()].second = SlotIndex(back(), SlotIndex::LOAD); 101 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))
|
Splitter.h | 73 void updateTerminators(MachineBasicBlock &mbb);
|
Splitter.cpp | 346 MachineBasicBlock *mbb = &*bbItr; local 349 if (tii->AnalyzeBranch(*mbb, a, b, c)) { 350 dbgs() << "MBB#" << mbb->getNumber() << " has multiway terminator.\n"; 352 for (MachineBasicBlock::iterator iItr = mbb->begin(), iEnd = mbb->end(); 358 for (MachineBasicBlock::succ_iterator sItr = mbb->succ_begin(), sEnd = mbb->succ_end(); 387 dbgs() << "(MBB#" << exitEdge.first->getNumber() 388 << ", MBB#" << exitEdge.second->getNumber() << ") " [all...] |
RegisterScavenging.cpp | 65 if (!MBB) 69 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(), 70 E = MBB->livein_end(); I != E; ++I) 74 BitVector PR = MBB->getParent()->getFrameInfo()->getPristineRegs(MBB); 79 void RegScavenger::enterBasicBlock(MachineBasicBlock *mbb) { 80 MachineFunction &MF = *mbb->getParent(); 90 if (!MBB) { 105 MBB = mbb; [all...] |
LiveIntervalAnalysis.cpp | 181 MachineBasicBlock *MBB = firstMI->getParent(); 182 if (MBB != lastMI->getParent() || lastMI->getDesc().isTerminator()) 284 void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb, 321 // will be a single kill, in MBB, which comes after the definition. 322 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) { 346 LiveRange NewLR(defIndex, getMBBEndIdx(mbb), ValNo); 353 // A phi join register is killed at the end of the MBB and revived as a new 424 // because the 2-addr copy must be in the same MBB as the redef. 469 SlotIndex killIndex = getMBBEndIdx(mbb); 482 void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB, 1138 MachineBasicBlock *mbb = indexes_->getMBBCoveringRange(itr->start, itr->end); local [all...] |
RegAllocPBQP.cpp | 354 const MachineBasicBlock *mbb = &*mbbItr; local 356 for (MachineBasicBlock::const_iterator miItr = mbb->begin(), 357 miEnd = mbb->end(); 377 loopInfo->getLoopDepth(mbb));
|
RenderMachineFunction.cpp | 72 "MBB starts."), 808 MachineBasicBlock *mbb = sis->getMBBFromIndex(i); local 811 if (i == sis->getMBBStartIdx(mbb) || mi != 0 || 816 if (i == sis->getMBBStartIdx(mbb)) { 817 os << indent + s(6) << "BB#" << mbb->getNumber() << ": \n"; [all...] |
RegisterCoalescer.cpp | 587 MachineBasicBlock *MBB = DefMI->getParent(); 597 MBB->insert(DefMI, NewMI); 598 MBB->erase(DefMI); 731 MachineBasicBlock *MBB = CopyMI->getParent(); 734 tii_->reMaterialize(*MBB, MII, DstReg, DstSubIdx, DefMI, *tri_); 1684 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());
|
/external/guava/src/com/google/common/io/ |
Files.java | 675 MappedByteBuffer mbb = map(raf, mode, size); 677 return mbb; 689 MappedByteBuffer mbb = channel.map(mode, 0, size); 691 return mbb;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
InstrEmitter.h | 36 MachineBasicBlock *MBB; 124 MachineBasicBlock *getBlock() { return MBB; } 131 InstrEmitter(MachineBasicBlock *mbb, MachineBasicBlock::iterator insertpos);
|
InstrEmitter.cpp | 150 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 251 BuildMI(*MBB, InsertPos, Op.getDebugLoc(), 293 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(), 448 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 475 MBB->insert(InsertPos, MI); 514 MBB->insert(InsertPos, MI); 537 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 577 MBB->insert(InsertPos, MI); 738 MBB->insert(InsertPos, MI); [all...] |
/external/openssl/crypto/ |
ia64cpuid.S | 145 { .mbb; add r33=-1,r33 // len-- 164 { .mbb; cmp.eq p6,p7=r0,r33
|
/external/openssl/crypto/bn/asm/ |
ia64.S | 214 { .mbb; nop.b 0x0 258 { .mbb; (p21) st8 [r14]=r42,8 // *(rp++)=r 267 { .mbb; nop.b 0x0 [all...] |