reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Transforms/Scalar/GVNExpression.h
  436   int_arg_iterator int_op_begin() { return IntOperands; }
  437   int_arg_iterator int_op_end() { return IntOperands + NumIntOperands; }
  438   const_int_arg_iterator int_op_begin() const { return IntOperands; }
  440     return IntOperands + NumIntOperands;
  447     assert(IntOperands && "Operands not allocated before pushing");
  448     IntOperands[NumIntOperands++] = IntOperand;
  452     assert(!IntOperands && "Operands already allocated");
  453     IntOperands = Allocator.Allocate<unsigned>(MaxIntOperands);
  476       OS << "[" << i << "] = " << IntOperands[i] << "  ";