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

1 2 3

  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 42 BlockAddress::get(BB), "table");
  /external/llvm/include/llvm/IR/
BasicBlock.h 28 class BlockAddress;
73 friend class BlockAddress;
Constants.h 747 /// BlockAddress - The address of a basic block.
749 class BlockAddress : public Constant {
752 BlockAddress(Function *F, BasicBlock *BB);
754 /// get - Return a BlockAddress for the specified function and basic block.
755 static BlockAddress *get(Function *F, BasicBlock *BB);
757 /// get - Return a BlockAddress for the specified basic block. The basic
759 static BlockAddress *get(BasicBlock *BB);
777 struct OperandTraits<BlockAddress> :
778 public FixedNumOperandTraits<BlockAddress, 2> {
781 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BlockAddress, Value
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantPoolValue.h 23 class BlockAddress;
144 const BlockAddress *getBlockAddress() const;
ARMConstantPoolValue.cpp 82 // external symbols. FIXME: What about blockaddress?
160 const BlockAddress *ARMConstantPoolConstant::getBlockAddress() const {
161 return dyn_cast_or_null<BlockAddress>(CVal);
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 110 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) {
115 return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock());
CloneFunction.cpp 129 // implementation, which generates an invalid blockaddress when
132 Constant *OldBBAddr = BlockAddress::get(const_cast<Function*>(OldFunc),
134 VMap[OldBBAddr] = BlockAddress::get(NewFunc, CBB);
245 // implementation, which generates an invalid blockaddress when
251 Constant *OldBBAddr = BlockAddress::get(const_cast<Function*>(OldFunc),
253 VMap[OldBBAddr] = BlockAddress::get(NewFunc, NewBB);
Local.cpp 228 // indirectbr blockaddress(@F, @BB) -> br label @BB
229 if (BlockAddress *BA =
230 dyn_cast<BlockAddress>(IBI->getAddress()->stripPointerCasts())) {
496 BlockAddress *BA = BlockAddress::get(DestBB);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 22 class BlockAddress;
173 const BlockAddress *BA; // For MO_BlockAddress.
433 const BlockAddress *getBlockAddress() const {
634 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset,
AsmPrinter.h 25 class BlockAddress;
316 /// GetBlockAddressSymbol - Return the MCSymbol used to satisfy BlockAddress
318 MCSymbol *GetBlockAddressSymbol(const BlockAddress *BA) const;
ISDOpcodes.h 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress,
    [all...]
MachineInstrBuilder.h 142 const MachineInstrBuilder &addBlockAddress(const BlockAddress *BA,
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/IR/
BasicBlock.cpp 66 // is no indirect branch). Handle these cases by zapping the BlockAddress
69 assert(!use_empty() && "There should be at least one blockaddress!");
73 BlockAddress *BA = cast<BlockAddress>(use_back());
Constants.cpp 337 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
340 // While raw uses of blockaddress need to be relocated, differences between
351 isa<BlockAddress>(LHS->getOperand(0)) &&
352 isa<BlockAddress>(RHS->getOperand(0)) &&
353 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
354 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
    [all...]
Function.cpp 668 if (isa<BlockAddress>(U))
685 // Check if the function is used by anything other than a blockaddress.
687 if (!isa<BlockAddress>(*I))
LLVMContextImpl.h 282 DenseMap<std::pair<Function*, BasicBlock*> , BlockAddress*> BlockAddresses;
ConstantFold.cpp     [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 391 if (isa<BlockAddress>(L))
392 return Blocks[cast<BlockAddress>(L)->getBasicBlock()]
393 == cast<BlockAddress>(R)->getBasicBlock();
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 68 if (BlockAddress *BA = dyn_cast<BlockAddress>(V)) {
  /external/llvm/lib/Analysis/
Lint.cpp 395 !isa<BlockAddress>(UnderlyingObject),
401 Assert1(!isa<BlockAddress>(UnderlyingObject),
405 Assert1(!isa<BlockAddress>(UnderlyingObject),
410 isa<BlockAddress>(UnderlyingObject),
411 "Undefined behavior: Branch to non-blockaddress", &I);
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 91 // Ignore blockaddress uses.
92 if (isa<BlockAddress>(U)) continue;
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 49 const BlockAddress *BlockAddr;
MSP430ISelLowering.cpp 107 setOperationAction(ISD::BlockAddress, MVT::i16, Custom);
193 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
690 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 312 return dyn_cast<BlockAddress>(Val->stripPointerCasts());
318 /// if we can infer that the value is a known ConstantInt/BlockAddress or undef
631 BlockAddress *BA = BlockAddress::get(BB);
    [all...]

Completed in 559 milliseconds

1 2 3