HomeSort by relevance Sort by last modified time
    Searched refs:CodeGenInstruction (Results 1 - 23 of 23) sorted by null

  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.h 13 #include "CodeGenInstruction.h"
32 CodeGenInstruction Source; // The source pseudo instruction definition.
33 CodeGenInstruction Dest; // The destination instruction to lower to.
36 PseudoExpansion(CodeGenInstruction &s, CodeGenInstruction &d,
51 CodeGenInstruction &Insn,
AsmWriterEmitter.h 25 class CodeGenInstruction;
29 std::map<const CodeGenInstruction*, AsmWriterInst*> CGIAWIMap;
30 std::vector<const CodeGenInstruction*> NumberedInstructions;
44 std::map<const CodeGenInstruction*, AsmWriterInst*>::const_iterator I =
InstrInfoEmitter.h 28 class CodeGenInstruction;
45 void emitRecord(const CodeGenInstruction &Inst, unsigned Num,
57 std::vector<std::string> GetOperandInfo(const CodeGenInstruction &Inst);
AsmWriterInst.h 24 class CodeGenInstruction;
45 /// the CodeGenInstruction.
88 const CodeGenInstruction *CGI;
90 AsmWriterInst(const CodeGenInstruction &CGI,
CodeGenTarget.h 21 #include "CodeGenInstruction.h"
67 mutable DenseMap<const Record*, CodeGenInstruction*> Instructions;
75 mutable std::vector<const CodeGenInstruction*> InstrsByEnum;
143 DenseMap<const Record*, CodeGenInstruction*> &getInstructions() const {
149 CodeGenInstruction &getInstruction(const Record *InstRec) const {
151 DenseMap<const Record*, CodeGenInstruction*>::iterator I =
159 const std::vector<const CodeGenInstruction*> &
165 typedef std::vector<const CodeGenInstruction*>::const_iterator inst_iterator;
DisassemblerEmitter.cpp 92 /// which knows how to translate itself from a CodeGenInstruction and provide
114 const std::vector<const CodeGenInstruction*> &numberedInstructions =
X86RecognizableInstr.h 94 /// The operands of the instruction, as listed in the CodeGenInstruction.
138 /// on a CodeGenInstruction::OperandInfo.
240 /// from a CodeGenInstruction.
243 /// @arg insn - The CodeGenInstruction to extract information from.
246 const CodeGenInstruction &insn,
249 /// processInstr - Accepts a CodeGenInstruction and loads decode information
254 /// @arg insn - The CodeGenInstruction to be used as a source for this
258 const CodeGenInstruction &insn,
PseudoLoweringEmitter.cpp 11 #include "CodeGenInstruction.h"
27 addDagOperandMapping(Record *Rec, DagInit *Dag, CodeGenInstruction &Insn,
93 CodeGenInstruction Insn(Operator);
122 CodeGenInstruction SourceInsn(Rec);
162 CodeGenInstruction &Source = Expansion.Source;
163 CodeGenInstruction &Dest = Expansion.Dest;
Android.mk 10 CodeGenInstruction.cpp \
CodeEmitterGen.cpp 87 CodeGenInstruction &CGI = Target.getInstruction(R);
219 const std::vector<const CodeGenInstruction*> &NumberedInstructions =
232 for (std::vector<const CodeGenInstruction*>::const_iterator
236 const CodeGenInstruction *CGI = *IN;
CodeGenTarget.cpp 246 Instructions[Insts[i]] = new CodeGenInstruction(Insts[i]);
249 static const CodeGenInstruction *
251 const DenseMap<const Record*, CodeGenInstruction*> &Insts,
255 DenseMap<const Record*, CodeGenInstruction*>::const_iterator
266 bool operator()(const CodeGenInstruction *Rec1,
267 const CodeGenInstruction *Rec2) const {
295 const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions();
297 const CodeGenInstruction *Instr = GetInstByName(*p, Insts, Records);
304 for (DenseMap<const Record*, CodeGenInstruction*>::const_iterator
306 const CodeGenInstruction *CGI = I->second
    [all...]
InstrInfoEmitter.cpp 54 InstrInfoEmitter::GetOperandInfo(const CodeGenInstruction &Inst) {
209 const std::vector<const CodeGenInstruction*> &NumberedInstructions =
220 const CodeGenInstruction *Instr = NumberedInstructions[i];
233 const CodeGenInstruction *Instr = NumberedInstructions[i];
280 void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
382 const std::vector<const CodeGenInstruction*> &NumberedInstructions =
CodeGenInstruction.h 1 //===- CodeGenInstruction.h - Instruction Class Wrapper ---------*- C++ -*-===//
201 class CodeGenInstruction {
248 CodeGenInstruction(Record *R);
278 CodeGenInstruction *ResultInst;
EDEmitter.cpp 203 /// populateOperandOrder - Accepts a CodeGenInstruction and generates its
207 /// CodeGenInstruction, and emits the resulting mapping into an array, filling
217 const CodeGenInstruction &inst,
353 const CodeGenInstruction &inst) {
377 /// @inst - The CodeGenInstruction, which provides a way to translate
383 const CodeGenInstruction &inst,
435 const CodeGenInstruction &inst) {
745 const CodeGenInstruction &inst) {
789 const CodeGenInstruction &inst) {
826 const std::vector<const CodeGenInstruction*> &numberedInstructions
    [all...]
AsmWriterInst.cpp 50 AsmWriterInst::AsmWriterInst(const CodeGenInstruction &CGI,
CodeGenInstruction.cpp 1 //===- CodeGenInstruction.cpp - CodeGen Instruction Class Wrapper ---------===//
10 // This file implements the CodeGenInstruction class.
14 #include "CodeGenInstruction.h"
287 // CodeGenInstruction Implementation
290 CodeGenInstruction::CodeGenInstruction(Record *R) : TheDef(R), Operands(R) {
338 MVT::SimpleValueType CodeGenInstruction::
355 std::string CodeGenInstruction::
DAGISelEmitter.cpp 35 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op);
AsmMatcherEmitter.cpp 378 PointerUnion<const CodeGenInstruction*, const CodeGenInstAlias*> DefRec;
380 const CodeGenInstruction *getResultInst() const {
381 if (DefRec.is<const CodeGenInstruction*>())
382 return DefRec.get<const CodeGenInstruction*>();
412 MatchableInfo(const CodeGenInstruction &CGI)
658 CodeGenInstruction::FlattenAsmStringVariants(AsmString, AsmVariantNo);
    [all...]
FixedLenDecoderEmitter.cpp 214 const std::vector<const CodeGenInstruction*> &AllInstructions;
249 FilterChooser(const std::vector<const CodeGenInstruction*> &Insts,
262 FilterChooser(const std::vector<const CodeGenInstruction*> &Insts,
    [all...]
DAGISelMatcherGen.cpp 649 CodeGenInstruction &II = CGT.getInstruction(Op);
678 CodeGenInstruction &II = CGT.getInstruction(Op);
    [all...]
CodeGenDAGPatterns.cpp     [all...]
X86RecognizableInstr.cpp 209 const CodeGenInstruction &insn,
280 const CodeGenInstruction &insn,
    [all...]
FastISelEmitter.cpp 434 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op);

Completed in 91 milliseconds