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

  /external/llvm/include/llvm/IR/
Constants.h 746 /// BlockAddress - The address of a basic block.
748 class BlockAddress : public Constant {
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);
776 struct OperandTraits<BlockAddress> :
777 public FixedNumOperandTraits<BlockAddress, 2> {
780 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BlockAddress, Value
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress,
    [all...]
  /external/llvm/lib/IR/
Constants.cpp 344 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
347 // While raw uses of blockaddress need to be relocated, differences between
358 isa<BlockAddress>(LHS->getOperand(0)) &&
359 isa<BlockAddress>(RHS->getOperand(0)) &&
360 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
361 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 239 milliseconds