/external/llvm/lib/Transforms/Utils/ |
D | ValueMapper.cpp | 121 BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(), VM, in MapValue() 123 return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock()); in MapValue()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGDumper.cpp | 418 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock(); in print_details() 421 OS << (const void*)BBDN->getBasicBlock() << ">"; in print_details() 479 WriteAsOperand(OS, BA->getBlockAddress()->getBasicBlock(), false); in print_details()
|
D | SelectionDAGBuilder.cpp | 1355 const BasicBlock *SrcBB = Src->getBasicBlock(); in getEdgeWeight() 1356 const BasicBlock *DstBB = Dst->getBasicBlock(); in getEdgeWeight() 1385 const BasicBlock *BB = CurBB->getBasicBlock(); in EmitBranchForMergedCondition() 1432 BOp->getParent() != CurBB->getBasicBlock() || in FindMergedConditions() 1433 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || in FindMergedConditions() 1434 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { in FindMergedConditions() 1442 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); in FindMergedConditions() 1529 DAG.getBasicBlock(Succ0MBB))); in visitBr() 1664 DAG.getBasicBlock(CB.TrueBB)); in visitSwitchCase() 1670 DAG.getBasicBlock(CB.FalseBB)); in visitSwitchCase() [all …]
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 980 BasicBlock *BB = getBasicBlock(Record[0]); in ParseValueSymbolTable() 2469 BasicBlock *TrueDest = getBasicBlock(Record[0]); in ParseFunctionBody() 2478 BasicBlock *FalseDest = getBasicBlock(Record[1]); in ParseFunctionBody() 2497 BasicBlock *Default = getBasicBlock(Record[3]); in ParseFunctionBody() 2535 BasicBlock *DestBB = getBasicBlock(Record[CurIdx++]); in ParseFunctionBody() 2552 BasicBlock *Default = getBasicBlock(Record[2]); in ParseFunctionBody() 2561 BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]); in ParseFunctionBody() 2582 if (BasicBlock *DestBB = getBasicBlock(Record[2+i])) { in ParseFunctionBody() 2598 BasicBlock *NormalBB = getBasicBlock(Record[2]); in ParseFunctionBody() 2599 BasicBlock *UnwindBB = getBasicBlock(Record[3]); in ParseFunctionBody() [all …]
|
D | BitcodeReader.h | 248 BasicBlock *getBasicBlock(unsigned ID) const { in getBasicBlock() function
|
/external/llvm/lib/Target/Mips/ |
D | Mips16ISelLowering.cpp | 497 const BasicBlock *LLVM_BB = BB->getBasicBlock(); in emitSel16() 560 const BasicBlock *LLVM_BB = BB->getBasicBlock(); in emitSelT16() 625 const BasicBlock *LLVM_BB = BB->getBasicBlock(); in emitSeliT16()
|
D | MipsLongBranch.cpp | 149 MF->CreateMachineBasicBlock(MBB->getBasicBlock()); in splitMBB() 248 const BasicBlock *BB = MBB->getBasicBlock(); in expandToLongBranch()
|
D | MipsAsmPrinter.cpp | 299 if (const BasicBlock *bb = Pred->getBasicBlock()) in isBlockOnlyReachableByFallthrough()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineRelocation.h | 286 MachineBasicBlock *getBasicBlock() const { in getBasicBlock() function
|
D | MachineBasicBlock.h | 117 const BasicBlock *getBasicBlock() const { return BB; }
|
D | SelectionDAG.h | 422 SDValue getBasicBlock(MachineBasicBlock *MBB); 423 SDValue getBasicBlock(MachineBasicBlock *MBB, SDLoc dl);
|
/external/llvm/lib/CodeGen/ |
D | MachineBasicBlock.cpp | 246 if (const BasicBlock *LBB = getBasicBlock()) in getName() 257 if (getBasicBlock()) in getFullName() 258 Name += getBasicBlock()->getName(); in getFullName() 278 if (const BasicBlock *LBB = getBasicBlock()) { in print()
|
D | ShrinkWrapping.cpp | 1047 if (MBB->getBasicBlock()) in getBasicBlockName() 1048 return MBB->getBasicBlock()->getName().str(); in getBasicBlockName()
|
D | MachineLICM.cpp | 1412 if (Preheader->getBasicBlock()) in Hoist() 1415 if (MI->getParent()->getBasicBlock()) in Hoist()
|
D | BranchFolding.cpp | 685 SuccBB->getBasicBlock() : MBB->getBasicBlock(); in CreateCommonTailOnlyBlock()
|
D | MachineFunction.cpp | 382 if (const BasicBlock *BB = Node->getBasicBlock()) in getNodeLabel()
|
/external/llvm/lib/ExecutionEngine/JIT/ |
D | JITEmitter.cpp | 412 TheJIT->addPointerToBasicBlock(MBB->getBasicBlock(), in StartMachineBasicBlock() 848 ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock()); in finishFunction() 973 TheJIT->clearPointerToBasicBlock(MBB->getBasicBlock()); in retryWithMoreMemory()
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 392 return Blocks[cast<BlockAddress>(L)->getBasicBlock()] in equivalentAsOperands() 393 == cast<BlockAddress>(R)->getBasicBlock(); in equivalentAsOperands()
|
/external/llvm/include/llvm/Analysis/ |
D | BlockFrequencyImpl.h | 62 if (const BasicBlock *BB = MBB->getBasicBlock()) in getBlockName()
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 1380 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock())); in destroyConstant() 1381 getBasicBlock()->AdjustBlockAddressRefCount(-1); in destroyConstant() 1389 BasicBlock *NewBB = getBasicBlock(); in replaceUsesOfWithOnConstant() 1401 getBasicBlock()->AdjustBlockAddressRefCount(-1); in replaceUsesOfWithOnConstant() 1406 getBasicBlock())); in replaceUsesOfWithOnConstant() 1410 getBasicBlock()->AdjustBlockAddressRefCount(1); in replaceUsesOfWithOnConstant()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64BranchFixupPass.cpp | 365 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock()); in splitBlockBeforeInstr()
|
/external/llvm/lib/Analysis/ |
D | ProfileInfo.cpp | 177 DEBUG(dbgs() << "Creating Block " << MBB->getBasicBlock()->getName() in setExecutionCount() 1024 return O << MBB->getBasicBlock()->getName() << "(MB)"; in operator <<()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 1974 return MMI->getAddrLabelSymbol(BA->getBasicBlock()); in GetBlockAddressSymbol() 2101 const BasicBlock *BB = MBB->getBasicBlock(); in EmitBasicBlockStart() 2113 if (const BasicBlock *BB = MBB->getBasicBlock()) in EmitBasicBlockStart()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430ISelLowering.cpp | 1119 const BasicBlock *LLVM_BB = BB->getBasicBlock(); in EmitShiftInstr() 1209 const BasicBlock *LLVM_BB = BB->getBasicBlock(); in EmitInstrWithCustomInserter()
|
/external/llvm/lib/Target/ARM/ |
D | ARMConstantIslandPass.cpp | 877 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock()); in splitBlockBeforeInstr() 2041 MF->CreateMachineBasicBlock(JTBB->getBasicBlock()); in adjustJTTargetBlockForward()
|