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 543 /// BlockAddress - The address of a basic block.
545 class BlockAddress : public Constant {
548 BlockAddress(Function *F, BasicBlock *BB);
550 /// get - Return a BlockAddress for the specified function and basic block.
551 static BlockAddress *get(Function *F, BasicBlock *BB);
553 /// get - Return a BlockAddress for the specified basic block. The basic
555 static BlockAddress *get(BasicBlock *BB);
567 static inline bool classof(const BlockAddress *) { return true; }
574 struct OperandTraits<BlockAddress> :
575 public FixedNumOperandTraits<BlockAddress, 2>
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress,
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 244 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
247 // While raw uses of blockaddress need to be relocated, differences between
258 isa<BlockAddress>(LHS->getOperand(0)) &&
259 isa<BlockAddress>(RHS->getOperand(0)) &&
260 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
261 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 215 | BlockAddress
    [all...]
llvm_ocaml.c 417 BlockAddress,
442 DEFINE_CASE(Val, BlockAddress);
    [all...]

Completed in 481 milliseconds