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

1 2

  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 99 MachineBasicBlock *mbb = nullptr; local
127 if (mi->getParent() != mbb) {
128 mbb = mi->getParent();
129 loop = Loops.getLoopFor(mbb);
130 isExiting = loop ? loop->isLoopExiting(mbb) : false;
140 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 57 if (!MBB)
61 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(),
62 E = MBB->livein_end(); I != E; ++I)
66 BitVector PR = MBB->getParent()->getFrameInfo()->getPristineRegs(MBB);
71 void RegScavenger::enterBasicBlock(MachineBasicBlock *mbb) {
72 MachineFunction &MF = *mbb->getParent();
87 if (!MBB) {
101 MBB = mbb;
    [all...]
RegAllocPBQP.cpp 324 for (const auto &mbb : *mf) {
325 for (const auto &mi : mbb) {
RegisterPressure.cpp 158 MBB = nullptr;
181 const MachineBasicBlock *mbb,
191 MBB = mbb;
229 while (IdxPos != MBB->end() && IdxPos->isDebugValue())
231 if (IdxPos == MBB->end())
232 return LIS->getMBBEndIdx(MBB);
460 if (CurrPos == MBB->begin()) {
474 while (CurrPos != MBB->begin() && CurrPos->isDebugValue());
558 if (CurrPos == MBB->end())
    [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 144 /// instruction to the end of its MBB.
214 SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const {
215 return Indexes->getMBBStartIdx(mbb);
219 SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const {
220 return Indexes->getMBBEndIdx(mbb);
224 const MachineBasicBlock *mbb) const {
225 return LR.liveAt(getMBBStartIdx(mbb));
229 const MachineBasicBlock *mbb) const {
230 return LR.liveAt(getMBBEndIdx(mbb).getPrevSlot());
237 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;
76 : MBB(nullptr), NumPhysRegs(0), Tracking(false) {}
80 void enterBasicBlock(MachineBasicBlock *mbb);
86 /// forward - Move the internal MBB iterator and update register states.
89 /// forward - Move the internal MBB iterator and update register states until
92 if (!Tracking && MBB->begin() != I) forward();
105 /// skipTo - Move the internal MBB iterator but do not update register states.
RegisterPressure.h 258 const MachineBasicBlock *MBB;
288 MF(nullptr), TRI(nullptr), RCI(nullptr), LIS(nullptr), MBB(nullptr), P(rp),
292 MF(nullptr), TRI(nullptr), RCI(nullptr), LIS(nullptr), MBB(nullptr), P(rp),
298 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);
  /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),
292 BuildMI(*MBB, InsertPos, Op.getDebugLoc(),
334 BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(),
455 BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg)
502 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
518 BuildMI(*MBB, InsertPos, Node->getDebugLoc(),
565 MBB->insert(InsertPos, MIB);
589 BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY),
633 MBB->insert(InsertPos, MIB);
801 MBB->insert(InsertPos, MIB)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/
ia64cpuid.S 145 { .mbb; add r33=-1,r33 // len--
164 { .mbb; cmp.eq p6,p7=r0,r33
  /external/libunwind/tests/
ia64-test-stack-asm.S 95 { .mbb
168 { .mbb
ia64-test-rbs-asm.S 219 { .mbb
  /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 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/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
memset.S 117 } { .mbb
191 { .mbb
  /external/chromium_org/third_party/openssl/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...]
  /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...]

Completed in 698 milliseconds

1 2