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

  /external/llvm/include/llvm/Support/
InstIterator.h 28 // inst_iterator and const_inst_iterator's.
122 Instruction> inst_iterator; typedef in namespace:llvm
128 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); }
129 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); }
136 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); }
137 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.h 171 typedef std::vector<const CodeGenInstruction*>::const_iterator inst_iterator; typedef in class:llvm::CodeGenTarget
172 inst_iterator inst_begin() const{return getInstructionsByEnumValue().begin();}
173 inst_iterator inst_end() const { return getInstructionsByEnumValue().end(); }

Completed in 69 milliseconds