HomeSort by relevance Sort by last modified time
    Searched refs:mbb (Results 1 - 25 of 29) sorted by null

1 2

  /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/clang/test/CodeGenCXX/
mangle-ms-back-references.cpp 27 void mbb(bool a, bool b) {} function in struct:S
41 b->mbb(false, false);
42 // CHECK: "\01?mbb@S@@QAEX_N0@Z"
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 135 /// adds a live range from that instruction to the end of its MBB.
194 SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const {
195 return Indexes->getMBBStartIdx(mbb);
199 SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const {
200 return Indexes->getMBBEndIdx(mbb);
204 const MachineBasicBlock *mbb) const {
205 return li.liveAt(getMBBStartIdx(mbb));
209 const MachineBasicBlock *mbb) const {
210 return li.liveAt(getMBBEndIdx(mbb).getPrevSlot());
217 void insertMBBInMaps(MachineBasicBlock *MBB) {
    [all...]
SlotIndexes.h 321 /// MBBRanges - Map MBB number to (start, stop) indexes.
325 /// and MBB id.
364 void repairIndexesInRange(MachineBasicBlock *MBB,
415 const MachineBasicBlock *MBB = MI->getParent();
416 assert(MBB && "MI must be inserted inna basic block");
417 MachineBasicBlock::const_iterator I = MI, B = MBB->begin();
420 return getMBBStartIdx(MBB);
432 const MachineBasicBlock *MBB = MI->getParent();
433 assert(MBB && "MI must be inserted inna basic block");
434 MachineBasicBlock::const_iterator I = MI, E = MBB->end()
    [all...]
RegisterScavenging.h 35 MachineBasicBlock *MBB;
74 : MBB(NULL), NumPhysRegs(0), Tracking(false),
79 void enterBasicBlock(MachineBasicBlock *mbb);
85 /// forward - Move the internal MBB iterator and update register states.
88 /// forward - Move the internal MBB iterator and update register states until
91 if (!Tracking && MBB->begin() != I) forward();
95 /// skipTo - Move the internal MBB iterator but do not update register states.
RegisterPressure.h 177 const MachineBasicBlock *MBB;
199 MF(0), TRI(0), RCI(0), LIS(0), MBB(0), P(rp), RequireIntervals(true) {}
202 MF(0), TRI(0), RCI(0), LIS(0), MBB(0), P(rp), RequireIntervals(false) {}
205 const LiveIntervals *lis, const MachineBasicBlock *mbb,
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 113 MachineBasicBlock *mbb = 0; local
140 if (mi->getParent() != mbb) {
141 mbb = mi->getParent();
142 loop = Loops.getLoopFor(mbb);
144 isExiting = loop ? loop->isLoopExiting(mbb) : false;
153 if (writes && isExiting && LIS.isLiveOutOfMBB(li, mbb))
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?");
74 MachineBasicBlock *mbb = &*mbbItr; local
76 // Insert an index for the MBB start.
79 for (MachineBasicBlock::iterator miItr = mbb->begin(), miEnd = mbb->end();
96 MBBRanges[mbb->getNumber()].first = blockStartIndex;
97 MBBRanges[mbb->getNumber()].second = SlotIndex(&indexList.back(),
99 idx2MBBMap.push_back(IdxMBBPair(blockStartIndex, mbb));
    [all...]
RegisterScavenging.cpp 55 if (!MBB)
59 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(),
60 E = MBB->livein_end(); I != E; ++I)
64 BitVector PR = MBB->getParent()->getFrameInfo()->getPristineRegs(MBB);
69 void RegScavenger::enterBasicBlock(MachineBasicBlock *mbb) {
70 MachineFunction &MF = *mbb->getParent();
85 if (!MBB) {
99 MBB = mbb;
    [all...]
RegAllocPBQP.cpp 331 const MachineBasicBlock *mbb = &*mbbItr; local
333 for (MachineBasicBlock::const_iterator miItr = mbb->begin(),
334 miEnd = mbb->end();
354 loopInfo->getLoopDepth(mbb));
RegisterPressure.cpp 202 const MachineBasicBlock *mbb,
209 MBB = mbb;
250 while (IdxPos != MBB->end() && IdxPos->isDebugValue())
252 if (IdxPos == MBB->end())
253 return LIS->getMBBEndIdx(MBB);
403 if (CurrPos == MBB->begin()) {
417 while (CurrPos != MBB->begin() && CurrPos->isDebugValue());
468 if (CurrPos == MBB->end()) {
528 while (CurrPos != MBB->end() && CurrPos->isDebugValue())
    [all...]
RegisterCoalescer.cpp 123 /// copyCoalesceInMBB - Coalesce copies in the specified MBB, putting
125 void copyCoalesceInMBB(MachineBasicBlock *MBB);
239 static bool isSplitEdge(const MachineBasicBlock *MBB) {
240 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
243 for (MachineBasicBlock::const_iterator MII = MBB->begin(), E = MBB->end();
644 MachineBasicBlock *MBB = DefMI->getParent();
655 MBB->insert(Pos, NewMI);
656 MBB->erase(DefMI)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantPoolValue.h 195 const MachineBasicBlock *MBB; // Machine basic block.
197 ARMConstantPoolMBB(LLVMContext &C, const MachineBasicBlock *mbb, unsigned id,
203 const MachineBasicBlock *mbb,
206 const MachineBasicBlock *getMBB() const { return MBB; }
ARMConstantPoolValue.cpp 257 const MachineBasicBlock *mbb,
263 MBB(mbb) {}
266 const MachineBasicBlock *mbb,
269 return new ARMConstantPoolMBB(C, mbb, ID, PCAdj, ARMCP::no_modifier, false);
284 if (APMBB->MBB == MBB && equals(APMBB))
294 return ACPMBB && ACPMBB->MBB == MBB &&
299 ID.AddPointer(MBB);
    [all...]
  /external/guava/guava/src/com/google/common/io/
Files.java 666 MappedByteBuffer mbb = map(raf, mode, size);
668 return mbb;
680 MappedByteBuffer mbb = channel.map(mode, 0, size);
682 return mbb;
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.h 37 MachineBasicBlock *MBB;
128 MachineBasicBlock *getBlock() { return MBB; }
135 InstrEmitter(MachineBasicBlock *mbb, MachineBasicBlock::iterator insertpos);
InstrEmitter.cpp 176 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
280 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
322 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
443 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
492 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
508 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
555 MBB->insert(InsertPos, MIB);
579 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
623 MBB->insert(InsertPos, MIB);
760 MBB->insert(InsertPos, MIB)
    [all...]
  /external/openssl/crypto/
ia64cpuid.S 145 { .mbb; add r33=-1,r33 // len--
164 { .mbb; cmp.eq p6,p7=r0,r33
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 45 MappedByteBuffer mbb = raf.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, 65536); local
52 mbb.get(buf1);
70 MappedByteBuffer mbb = raf.getChannel() local
78 mbb.put(buf1);
80 mbb.position(0);
83 mbb.get(buf2);
  /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...]
ia64-mont.pl 303 { .mbb; add lc=4,lc
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 

Completed in 859 milliseconds

1 2