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

1 2 3

  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 42 BlockAddress::get(BB), "table");
  /external/llvm/include/llvm/
BasicBlock.h 28 class BlockAddress;
72 friend class BlockAddress;
274 /// AdjustBlockAddressRefCount - BasicBlock stores the number of BlockAddress
Constants.h 760 /// BlockAddress - The address of a basic block.
762 class BlockAddress : public Constant {
765 BlockAddress(Function *F, BasicBlock *BB);
767 /// get - Return a BlockAddress for the specified function and basic block.
768 static BlockAddress *get(Function *F, BasicBlock *BB);
770 /// get - Return a BlockAddress for the specified basic block. The basic
772 static BlockAddress *get(BasicBlock *BB);
784 static inline bool classof(const BlockAddress *) { return true; }
791 struct OperandTraits<BlockAddress> :
792 public FixedNumOperandTraits<BlockAddress, 2>
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantPoolValue.h 23 class BlockAddress;
146 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 95 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) {
100 return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock());
CloneFunction.cpp 127 // implementation, which generates an invalid blockaddress when
130 Constant *OldBBAddr = BlockAddress::get(const_cast<Function*>(OldFunc),
132 VMap[OldBBAddr] = BlockAddress::get(NewFunc, CBB);
243 // implementation, which generates an invalid blockaddress when
249 Constant *OldBBAddr = BlockAddress::get(const_cast<Function*>(OldFunc),
251 VMap[OldBBAddr] = BlockAddress::get(NewFunc, NewBB);
Local.cpp 193 // indirectbr blockaddress(@F, @BB) -> br label @BB
194 if (BlockAddress *BA =
195 dyn_cast<BlockAddress>(IBI->getAddress()->stripPointerCasts())) {
461 BlockAddress *BA = BlockAddress::get(DestBB);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 22 class BlockAddress;
172 const BlockAddress *BA; // For MO_BlockAddress.
430 const BlockAddress *getBlockAddress() const {
631 static MachineOperand CreateBA(const BlockAddress *BA,
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...]
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/VMCore/
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 285 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
288 // While raw uses of blockaddress need to be relocated, differences between
299 isa<BlockAddress>(LHS->getOperand(0)) &&
300 isa<BlockAddress>(RHS->getOperand(0)) &&
301 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
302 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
    [all...]
Function.cpp 624 if (isa<BlockAddress>(U))
641 // Check if the function is used by anything other than a blockaddress.
643 if (!isa<BlockAddress>(*I))
LLVMContextImpl.h 284 DenseMap<std::pair<Function*, BasicBlock*> , BlockAddress*> BlockAddresses;
ConstantFold.cpp     [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 393 if (isa<BlockAddress>(L))
394 return Blocks[cast<BlockAddress>(L)->getBasicBlock()]
395 == 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);
187 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
657 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 303 return dyn_cast<BlockAddress>(Val->stripPointerCasts());
309 /// if we can infer that the value is a known ConstantInt/BlockAddress or undef
622 BlockAddress *BA = BlockAddress::get(BB);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp 105 case ISD::BlockAddress: return "BlockAddress";

Completed in 746 milliseconds

1 2 3