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

/external/llvm/include/llvm/IR/
H A DConstants.h746 /// BlockAddress - The address of a basic block.
748 class BlockAddress : public Constant { class in namespace:llvm
751 BlockAddress(Function *F, BasicBlock *BB);
753 /// get - Return a BlockAddress for the specified function and basic block.
754 static BlockAddress *get(Function *F, BasicBlock *BB);
756 /// get - Return a BlockAddress for the specified basic block. The basic
758 static BlockAddress *get(BasicBlock *BB);
760 /// \brief Lookup an existing \c BlockAddress constant for the given
763 /// \returns 0 if \c !BB->hasAddressTaken(), otherwise the \c BlockAddress.
764 static BlockAddress *looku
[all...]
/external/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress, enumerator in enum:llvm::ISD::NodeType
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml261 | BlockAddress Constructor in type:ValueKind/t
H A Dllvm_ocaml.c479 BlockAddress, enumerator in enum:ValueKind
506 DEFINE_CASE(Val, BlockAddress);
/external/llvm/lib/IR/
H A DConstants.cpp380 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
394 isa<BlockAddress>(LHS->getOperand(0)) &&
395 isa<BlockAddress>(RHS->getOperand(0)) &&
396 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
397 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
1388 //---- BlockAddress::get() implementation.
1391 BlockAddress *BlockAddress::get(BasicBlock *BB) {
1396 BlockAddress *BlockAddres
1406 BlockAddress::BlockAddress(Function *F, BasicBlock *BB) function in class:BlockAddress
[all...]

Completed in 134 milliseconds