HomeSort by relevance Sort by last modified time
    Searched defs:BlockAddress (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/
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/include/llvm/CodeGen/
ISDOpcodes.h 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress,
    [all...]
  /external/llvm/lib/VMCore/
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...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 216 | BlockAddress
    [all...]
llvm_ocaml.c 416 BlockAddress,
441 DEFINE_CASE(Val, BlockAddress);
    [all...]

Completed in 278 milliseconds