Home
last modified time | relevance | path

Searched refs:InstrsByEnum (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/llvm/utils/TableGen/
DCodeGenTarget.h64 mutable std::vector<const CodeGenInstruction*> InstrsByEnum; variable
163 if (InstrsByEnum.empty()) in getNumPseudoInstructions()
175 if (InstrsByEnum.empty()) in getInstructionsByEnumValue()
177 return InstrsByEnum; in getInstructionsByEnumValue()
DCodeGenTarget.cpp480 InstrsByEnum.push_back(Instr); in ComputeInstrsByEnum()
482 unsigned EndOfPredefines = InstrsByEnum.size(); in ComputeInstrsByEnum()
489 InstrsByEnum.push_back(CGI); in ComputeInstrsByEnum()
495 assert(InstrsByEnum.size() == Insts.size() && "Missing predefined instr"); in ComputeInstrsByEnum()
499 InstrsByEnum.begin() + EndOfPredefines, InstrsByEnum.end(), in ComputeInstrsByEnum()
/external/llvm/utils/TableGen/
DCodeGenTarget.h79 mutable std::vector<const CodeGenInstruction*> InstrsByEnum; variable
166 if (InstrsByEnum.empty()) ComputeInstrsByEnum(); in getInstructionsByEnumValue()
167 return InstrsByEnum; in getInstructionsByEnumValue()
DCodeGenTarget.cpp312 InstrsByEnum.push_back(Instr); in ComputeInstrsByEnum()
314 unsigned EndOfPredefines = InstrsByEnum.size(); in ComputeInstrsByEnum()
319 InstrsByEnum.push_back(CGI); in ComputeInstrsByEnum()
322 assert(InstrsByEnum.size() == Insts.size() && "Missing predefined instr"); in ComputeInstrsByEnum()
326 std::sort(InstrsByEnum.begin() + EndOfPredefines, InstrsByEnum.end(), in ComputeInstrsByEnum()