Searched defs:BlockAddress (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/
H A DConstants.h760 /// BlockAddress - The address of a basic block.
762 class BlockAddress : public Constant { class in namespace:llvm
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,
[all...]
/external/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress, enumerator in enum:llvm::ISD::NodeType
/external/llvm/lib/VMCore/
H A DConstants.cpp285 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
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())
1267 //---- BlockAddress::get() implementation.
1270 BlockAddress *BlockAddress::get(BasicBlock *BB) {
1275 BlockAddress *BlockAddres
1285 BlockAddress::BlockAddress(Function *F, BasicBlock *BB) function in class:BlockAddress
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml216 | BlockAddress Constructor in type:ValueKind/t
H A Dllvm_ocaml.c416 BlockAddress, enumerator in enum:ValueKind
441 DEFINE_CASE(Val, BlockAddress);

Completed in 89 milliseconds