HomeSort by relevance Sort by last modified time
    Searched refs:BlockAddress (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 42 BlockAddress::get(BB), "table");
  /external/llvm/include/llvm/IR/
BasicBlock.h 29 class BlockAddress;
74 friend class BlockAddress;
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/lib/Target/ARM/
ARMConstantPoolValue.h 23 class BlockAddress;
144 const BlockAddress *getBlockAddress() const;
ARMConstantPoolValue.cpp 82 // external symbols. FIXME: What about blockaddress?
160 const BlockAddress *ARMConstantPoolConstant::getBlockAddress() const {
161 return dyn_cast_or_null<BlockAddress>(CVal);
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 118 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) {
123 return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock());
CloneFunction.cpp 130 // implementation, which generates an invalid blockaddress when
133 Constant *OldBBAddr = BlockAddress::get(const_cast<Function*>(OldFunc),
135 VMap[OldBBAddr] = BlockAddress::get(NewFunc, CBB);
246 // implementation, which generates an invalid blockaddress when
252 Constant *OldBBAddr = BlockAddress::get(const_cast<Function*>(OldFunc),
254 VMap[OldBBAddr] = BlockAddress::get(NewFunc, NewBB);
Local.cpp 228 // indirectbr blockaddress(@F, @BB) -> br label @BB
229 if (BlockAddress *BA =
230 dyn_cast<BlockAddress>(IBI->getAddress()->stripPointerCasts())) {
496 BlockAddress *BA = BlockAddress::get(DestBB);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 22 class BlockAddress;
173 const BlockAddress *BA; // For MO_BlockAddress.
433 const BlockAddress *getBlockAddress() const {
634 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset,
AsmPrinter.h 25 class BlockAddress;
322 /// GetBlockAddressSymbol - Return the MCSymbol used to satisfy BlockAddress
324 MCSymbol *GetBlockAddressSymbol(const BlockAddress *BA) const;
ISDOpcodes.h 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress,
    [all...]
MachineInstrBuilder.h 142 const MachineInstrBuilder &addBlockAddress(const BlockAddress *BA,
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZMCInstLower.cpp 88 const BlockAddress *BA = MO.getBlockAddress();
  /external/llvm/lib/IR/
BasicBlock.cpp 66 // is no indirect branch). Handle these cases by zapping the BlockAddress
69 assert(!use_empty() && "There should be at least one blockaddress!");
73 BlockAddress *BA = cast<BlockAddress>(use_back());
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...]
Function.cpp 684 if (isa<BlockAddress>(U))
701 // Check if the function is used by anything other than a blockaddress.
703 if (!isa<BlockAddress>(*I))
LLVMContextImpl.h 282 DenseMap<std::pair<Function*, BasicBlock*> , BlockAddress*> BlockAddresses;
ConstantFold.cpp     [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 391 if (isa<BlockAddress>(L))
392 return Blocks[cast<BlockAddress>(L)->getBasicBlock()]
393 == cast<BlockAddress>(R)->getBasicBlock();
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 68 if (BlockAddress *BA = dyn_cast<BlockAddress>(V)) {
  /external/llvm/lib/Analysis/
Lint.cpp 395 !isa<BlockAddress>(UnderlyingObject),
401 Assert1(!isa<BlockAddress>(UnderlyingObject),
405 Assert1(!isa<BlockAddress>(UnderlyingObject),
410 isa<BlockAddress>(UnderlyingObject),
411 "Undefined behavior: Branch to non-blockaddress", &I);
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 91 // Ignore blockaddress uses.
92 if (isa<BlockAddress>(U)) continue;
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 49 const BlockAddress *BlockAddr;
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 314 return dyn_cast<BlockAddress>(Val->stripPointerCasts());
320 /// if we can infer that the value is a known ConstantInt/BlockAddress or undef
633 BlockAddress *BA = BlockAddress::get(BB);
    [all...]

Completed in 2891 milliseconds

1 2 3