HomeSort by: relevance | last modified time | path
    Searched defs:op_begin (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
OperandTraits.h 31 static Use *op_begin(SubClass* U) { function in struct:llvm::FixedNumOperandTraits
69 static Use *op_begin(SubClass* U) { function in struct:llvm::VariadicOperandTraits
96 static Use *op_begin(User* U) { function in struct:llvm::HungoffOperandTraits
114 inline op_iterator op_begin(); \
115 inline const_op_iterator op_begin() const; \
126 CLASS::op_iterator CLASS::op_begin() { \
127 return OperandTraits<CLASS>::op_begin(this); \
129 CLASS::const_op_iterator CLASS::op_begin() const { \
130 return OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this)); \
142 OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this))[i_nocapture].get());
    [all...]
Metadata.h 1092 op_iterator op_begin() const { function in class:llvm::MDNode
1100 op_range operands() const { return op_range(op_begin(), op_end()); }
1104 return op_begin()[I];
1318 iterator begin() const { return N ? iterator(N->op_begin()) : iterator(); }
1474 op_iterator op_begin() { return op_iterator(this, 0); } function in class:llvm::NamedMDNode
1479 const_op_iterator op_begin() const { return const_op_iterator(this, 0); } function in class:llvm::NamedMDNode
1483 return make_range(op_begin(), op_end());
1486 return make_range(op_begin(), op_end());
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSA.h 433 static Use *op_begin(MemoryUseOrDef *MUD) { function in struct:llvm::OperandTraits
435 return OperandTraits<MemoryUse>::op_begin(MU);
436 return OperandTraits<MemoryDef>::op_begin(cast<MemoryDef>(MUD));
505 return reinterpret_cast<block_iterator>(op_begin() + ReservedSpace);
509 return reinterpret_cast<const_block_iterator>(op_begin() + ReservedSpace);
550 return getIncomingBlock(unsigned(&U - op_begin()));

Completed in 19 milliseconds