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

  /external/llvm/include/llvm/Support/
GetElementPtrTypeIterator.h 83 typedef generic_gep_type_iterator<> gep_type_iterator; typedef in namespace:llvm
85 inline gep_type_iterator gep_type_begin(const User *GEP) {
86 return gep_type_iterator::begin(GEP->getOperand(0)->getType(),
89 inline gep_type_iterator gep_type_end(const User *GEP) {
90 return gep_type_iterator::end(GEP->op_end());
92 inline gep_type_iterator gep_type_begin(const User &GEP) {
93 return gep_type_iterator::begin(GEP.getOperand(0)->getType(),
96 inline gep_type_iterator gep_type_end(const User &GEP) {
97 return gep_type_iterator::end(GEP.op_end());
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 32 typedef generic_gep_type_iterator<User::const_op_iterator> gep_type_iterator; typedef in namespace:llvm
199 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
200 gep_type_iterator E, ExecutionContext &SF);

Completed in 71 milliseconds