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

1 2

  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 99 MachineBasicBlock *mbb = nullptr; local
129 if (mi->getParent() != mbb) {
130 mbb = mi->getParent();
131 loop = Loops.getLoopFor(mbb);
132 isExiting = loop ? loop->isLoopExiting(mbb) : false;
142 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 49 if (!MBB)
53 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(),
54 E = MBB->livein_end(); I != E; ++I)
58 BitVector PR = MBB->getParent()->getFrameInfo()->getPristineRegs(MBB);
63 void RegScavenger::enterBasicBlock(MachineBasicBlock *mbb) {
64 MachineFunction &MF = *mbb->getParent();
78 if (!MBB) {
86 MBB = mbb;
    [all...]
RegisterPressure.cpp 157 MBB = nullptr;
180 const MachineBasicBlock *mbb,
190 MBB = mbb;
228 while (IdxPos != MBB->end() && IdxPos->isDebugValue())
230 if (IdxPos == MBB->end())
231 return LIS->getMBBEndIdx(MBB);
461 if (CurrPos == MBB->begin()) {
475 while (CurrPos != MBB->begin() && CurrPos->isDebugValue());
559 if (CurrPos == MBB->end())
    [all...]
RegisterCoalescer.cpp 136 /// Coalesce copies in the specified MBB, putting
138 void copyCoalesceInMBB(MachineBasicBlock *MBB);
282 static bool isSplitEdge(const MachineBasicBlock *MBB) {
283 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
286 for (const auto &MI : *MBB) {
695 MachineBasicBlock *MBB = DefMI->getParent();
706 MBB->insert(Pos, NewMI);
707 MBB->erase(DefMI);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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 146 /// instruction to the end of its MBB.
212 SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const {
213 return Indexes->getMBBStartIdx(mbb);
217 SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const {
218 return Indexes->getMBBEndIdx(mbb);
222 const MachineBasicBlock *mbb) const {
223 return LR.liveAt(getMBBStartIdx(mbb));
227 const MachineBasicBlock *mbb) const {
228 return LR.liveAt(getMBBEndIdx(mbb).getPrevSlot());
235 void insertMBBInMaps(MachineBasicBlock *MBB) {
    [all...]
SlotIndexes.h 349 /// MBBRanges - Map MBB number to (start, stop) indexes.
353 /// and MBB id.
392 void repairIndexesInRange(MachineBasicBlock *MBB,
443 const MachineBasicBlock *MBB = MI->getParent();
444 assert(MBB && "MI must be inserted inna basic block");
445 MachineBasicBlock::const_iterator I = MI, B = MBB->begin();
448 return getMBBStartIdx(MBB);
460 const MachineBasicBlock *MBB = MI->getParent();
461 assert(MBB && "MI must be inserted inna basic block");
462 MachineBasicBlock::const_iterator I = MI, E = MBB->end()
    [all...]
RegisterScavenging.h 35 MachineBasicBlock *MBB;
73 : MBB(nullptr), NumRegUnits(0), Tracking(false) {}
77 void enterBasicBlock(MachineBasicBlock *mbb);
83 /// forward - Move the internal MBB iterator and update register states.
86 /// forward - Move the internal MBB iterator and update register states until
89 if (!Tracking && MBB->begin() != I) forward();
102 /// skipTo - Move the internal MBB iterator but do not update register states.
RegisterPressure.h 243 const MachineBasicBlock *MBB;
273 MF(nullptr), TRI(nullptr), RCI(nullptr), LIS(nullptr), MBB(nullptr), P(rp),
277 MF(nullptr), TRI(nullptr), RCI(nullptr), LIS(nullptr), MBB(nullptr), P(rp),
283 const LiveIntervals *lis, const MachineBasicBlock *mbb,
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantPoolValue.cpp 228 const MachineBasicBlock *mbb,
234 MBB(mbb) {}
237 const MachineBasicBlock *mbb,
240 return new ARMConstantPoolMBB(C, mbb, ID, PCAdj, ARMCP::no_modifier, false);
250 return ACPMBB && ACPMBB->MBB == MBB &&
255 ID.AddPointer(MBB);
260 O << "BB#" << MBB->getNumber();
ARMConstantPoolValue.h 224 const MachineBasicBlock *MBB; // Machine basic block.
226 ARMConstantPoolMBB(LLVMContext &C, const MachineBasicBlock *mbb, unsigned id,
232 const MachineBasicBlock *mbb,
235 const MachineBasicBlock *getMBB() const { return MBB; }
253 return MBB == A->MBB && ARMConstantPoolValue::equals(A);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
LoaderRaw.java 114 MappedByteBuffer mbb = inputStream.getChannel().map(FileChannel.MapMode.READ_ONLY, local
117 mbb.asShortBuffer().get(slice);
119 mbb = null;
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.h 36 MachineBasicBlock *MBB;
127 MachineBasicBlock *getBlock() { return MBB; }
134 InstrEmitter(MachineBasicBlock *mbb, MachineBasicBlock::iterator insertpos);
InstrEmitter.cpp 176 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
296 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
338 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
459 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
506 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
522 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
569 MBB->insert(InsertPos, MIB);
593 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
637 MBB->insert(InsertPos, MIB);
    [all...]
  /external/libunwind/tests/
ia64-test-stack-asm.S 95 { .mbb
168 { .mbb
ia64-test-rbs-asm.S 219 { .mbb
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 61 MappedByteBuffer mbb = raf.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, 65536); local
68 mbb.get(buf1);
86 MappedByteBuffer mbb = raf.getChannel() local
94 mbb.put(buf1);
96 mbb.position(0);
99 mbb.get(buf2);
    [all...]
  /external/vogar/lib/
guava.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 

Completed in 2402 milliseconds

1 2