HomeSort by relevance Sort by last modified time
    Searched full:mbb (Results 276 - 300 of 321) sorted by null

<<111213

  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 73 explicit LandingPadInfo(MachineBasicBlock *MBB)
74 : LandingPadBlock(MBB), LandingPadLabel(0), Personality(0) {}
AsmPrinter.h 236 void EmitBasicBlockStart(const MachineBasicBlock *MBB) const;
285 isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const;
483 const MachineBasicBlock *MBB,
LexicalScopes.h 76 bool dominates(DebugLoc DL, MachineBasicBlock *MBB);
MachineFrameInfo.h 544 /// entry to the MBB.
552 BitVector getPristineRegs(const MachineBasicBlock *MBB) const;
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/CodeGen/
LiveRangeEdit.cpp 141 SlotIndex LiveRangeEdit::rematerializeAt(MachineBasicBlock &MBB,
148 TII.reMaterialize(MBB, MI, DestReg, 0, RM.OrigMI, tri);
README.txt 41 %reg1039 = PHI %reg1070, mbb<bb76.outer,0x8b0c5f0>, %reg1037, mbb<bb27,0x8b0a7c0>
UnreachableBlockElim.cpp 112 INITIALIZE_PASS(UnreachableMachineBlockElim, "unreachable-mbb-elimination",
LiveInterval.cpp 876 const MachineBasicBlock *MBB = LIS.getMBBFromIndex(VNI->def);
877 assert(MBB && "Phi-def has no defining MBB");
879 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
880 PE = MBB->pred_end(); PI != PE; ++PI)
VirtRegMap.cpp 234 // Compute MBB live-in lists from virtual register live ranges and their
RegAllocGreedy.cpp 768 BC.Number = BI.MBB->getNumber();
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 104 MachineBasicBlock *MBB) const;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_macroblock_layer.h 181 struct mbStorage *mbB;
h264bsd_neighbour.c 153 pMbStorage[i].mbB = pMbStorage + i - picWidth;
155 pMbStorage[i].mbB = NULL;
211 return(pMb->mbB);
h264bsd_intra_prediction.c 225 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB);
227 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER))
393 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB);
395 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER))
643 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB);
645 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER))
861 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB);
863 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER))
    [all...]
h264bsd_macroblock_layer.c 838 if (h264bsdIsNeighbourAvailable(pMb, pMb->mbB))
840 n = (n + pMb->mbB->totalCoeff[neighbourBindex] + 1) >> 1;
859 if (h264bsdIsNeighbourAvailable(pMb, pMb->mbB))
862 n = (n + pMb->mbB->totalCoeff[neighbourBindex] + 1) >> 1;
864 n = pMb->mbB->totalCoeff[neighbourBindex];
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp     [all...]
ARMCodeEmitter.cpp 421 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
422 MBB != E; ++MBB) {
423 MCE.StartMachineBasicBlock(MBB);
424 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 471 MachineBasicBlock *MBB = IV_Phi->getOperand(i+1).getMBB();
472 if (MBB == Preheader)
474 else if (MBB == Latch)
876 MachineBasicBlock *MBB = Blocks[i];
878 MII = MBB->begin(), E = MBB->end(); MII != E; ++MII) {
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 47 raw_ostream& operator<<(raw_ostream &O, const MachineBasicBlock *MBB);
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 203 EmitInstrWithCustomInserter(MachineInstr *MI, MachineBasicBlock *MBB) const;
  /external/llvm/utils/TableGen/
FastISelEmitter.cpp 641 OS << " BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, "
732 OS << " BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, "
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 999 milliseconds

<<111213