Searched refs:TheDef (Results 1 - 21 of 21) sorted by relevance

/external/llvm/utils/TableGen/
H A DAsmWriterInst.cpp127 CGI.TheDef->getName() + "'!";
166 + CGI.TheDef->getName() + "'";
173 + CGI.TheDef->getName() + "'";
181 throw "Bad operand modifier name in '"+ CGI.TheDef->getName() + "'";
186 + CGI.TheDef->getName() + "'";
190 throw "Stray '$' in '" + CGI.TheDef->getName() +
H A DCodeGenIntrinsics.h27 Record *TheDef; // The actual record defining this intrinsic. member in struct:llvm::CodeGenIntrinsic
H A DInstrInfoEmitter.cpp188 Record *Inst = (*II)->TheDef;
221 InstrNames.add(Instr->TheDef->getName());
234 OS << InstrNames.get(Instr->TheDef->getName()) << "U, ";
294 << getItinClassNumber(Inst.TheDef) << ",\t"
295 << Inst.TheDef->getValueAsInt("Size") << ",\t0";
327 BitsInit *TSF = Inst.TheDef->getValueAsBitsInit("TSFlags");
334 throw "Invalid TSFlags bit in " + Inst.TheDef->getName();
341 std::vector<Record*> UseList = Inst.TheDef->getValueAsListOfDefs("Uses");
347 std::vector<Record*> DefList = Inst.TheDef->getValueAsListOfDefs("Defs");
360 OS << " }, // Inst #" << Num << " = " << Inst.TheDef
[all...]
H A DAsmMatcherEmitter.cpp373 /// TheDef - This is the definition of the instruction or InstAlias that this
375 Record *const TheDef; member in struct:__anon7970::MatchableInfo
413 : AsmVariantID(0), TheDef(CGI.TheDef), DefRec(&CGI),
418 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
528 Record *TheDef; member in struct:__anon7970::SubtargetFeatureInfo
533 SubtargetFeatureInfo(Record *D, unsigned Idx) : TheDef(D), Index(Idx) {}
537 return "Feature_" + TheDef->getName();
644 errs() << TheDef
[all...]
H A DCodeGenInstruction.cpp28 CGIOperandList::CGIOperandList(Record *R) : TheDef(R) {
137 throw "'" + TheDef->getName() + "' does not have an operand named '$" +
157 throw TheDef->getName() + ": Illegal operand name: '" + Op + "'";
167 throw TheDef->getName() + ": illegal empty suboperand name in '" +Op +"'";
177 throw TheDef->getName() + ": Illegal to refer to"
187 throw TheDef->getName() + ": unknown suboperand name in '" + Op + "'";
195 throw TheDef->getName() + ": unknown suboperand name in '" + Op + "'";
290 CodeGenInstruction::CodeGenInstruction(Record *R) : TheDef(R), Operands(R) {
511 CodeGenInstAlias::CodeGenInstAlias(Record *R, CodeGenTarget &T) : TheDef(R) {
H A DCodeGenRegisters.cpp31 : TheDef(R),
36 if (TheDef->getValue("Namespace"))
37 return TheDef->getValueAsString("Namespace");
43 return TheDef->getName();
55 std::vector<Record*> Comps = TheDef->getValueAsListOfDefs("ComposedOf");
59 throw TGError(TheDef->getLoc(), "ComposedOf must have exactly two entries");
64 throw TGError(TheDef->getLoc(), "Ambiguous ComposedOf entries");
82 : TheDef(R),
90 return TheDef->getName();
178 std::vector<Record*> SubList = TheDef
[all...]
H A DCodeGenRegisters.h37 Record *const TheDef; member in class:llvm::CodeGenSubRegIndex
90 Record *TheDef; member in struct:llvm::CodeGenRegister
173 Record *TheDef; member in class:llvm::CodeGenRegisterClass
206 Record *getDef() const { return TheDef; }
H A DAsmWriterEmitter.cpp73 << FirstInst.CGI->TheDef->getName() << ":\n";
76 << SimilarInsts[i].CGI->TheDef->getName() << ":\n";
87 FirstInst.CGI->TheDef->getName(),
93 AWI.CGI->TheDef->getName(),
136 InstrsForCase[idx] += Inst->CGI->TheDef->getName();
143 InstrsForCase.push_back(Inst->CGI->TheDef->getName());
264 (*I)->TheDef->getName() != "PHI")
386 << NumberedInstructions[i]->TheDef->getName() << "\n";
491 AsmName = Reg.TheDef->getValueAsString("AsmName");
497 Reg.TheDef
[all...]
H A DCodeGenInstruction.h128 Record *TheDef; // The actual record containing this OperandList. member in class:llvm::CGIOperandList
203 Record *TheDef; // The actual record defining this instruction. member in class:llvm::CodeGenInstruction
267 Record *TheDef; // The actual record defining this InstAlias. member in class:llvm::CodeGenInstAlias
H A DRegisterInfoEmitter.cpp39 std::string Namespace = Registers[0]->TheDef->getValueAsString("Namespace");
208 Record *Reg = Regs[i]->TheDef;
226 std::string Namespace = Regs[0]->TheDef->getValueAsString("Namespace");
275 Record *Reg = Regs[i]->TheDef;
331 Record *Reg = Regs[i]->TheDef;
339 std::string Namespace = Regs[0]->TheDef->getValueAsString("Namespace");
435 OS << getQualifiedName(Reg->TheDef);
597 OS << " /* " << Regs[i]->TheDef->getName() << " */\n";
608 OS << getQualifiedName(SubReg->second->TheDef);
904 << int(AllocatableRegs.count(Reg.TheDef)) << " },\
[all...]
H A DFixedLenDecoderEmitter.cpp284 BitsInit &Bits = getBitsField(*AllInstructions[Opcode]->TheDef, "Inst");
292 AllInstructions[Opcode]->TheDef->getValueAsBitsInit("SoftFail");
304 return AllInstructions[Opcode]->TheDef->getName();
690 getBitsField(*AllInstructions[Opcodes[i]]->TheDef, "Inst"));
796 AllInstructions[Opc]->TheDef->getValueAsListInit("Predicates");
825 AllInstructions[Opc]->TheDef->getValueAsBitsInit("SoftFail");
827 BitsInit *InstBits = AllInstructions[Opc]->TheDef->getValueAsBitsInit("Inst");
848 StringRef Name = AllInstructions[Opc]->TheDef->getName();
1317 getBitsField(*AllInstructions[Opcodes[i]]->TheDef, "Inst"));
1326 const Record &Def = *CGI.TheDef;
[all...]
H A DPseudoLoweringEmitter.cpp165 << Source.TheDef->getName() << ": {\n"
169 << Dest.TheDef->getName() << ");\n";
H A DEDEmitter.cpp354 if (!inst.TheDef->isSubClassOf("X86Inst"))
368 errs() << "Instruction name: " << inst.TheDef->getName().c_str() << "\n";
436 const std::string &name = inst.TheDef->getName();
746 if (!inst.TheDef->isSubClassOf("InstARM") &&
747 !inst.TheDef->isSubClassOf("InstThumb"))
766 errs() << "Instruction name: " << inst.TheDef->getName() << '\n';
790 const std::string &name = inst.TheDef->getName();
H A DCodeGenDAGPatterns.h724 if (Intrinsics[i].TheDef == R) return Intrinsics[i];
726 if (TgtIntrinsics[i].TheDef == R) return TgtIntrinsics[i];
740 if (Intrinsics[i].TheDef == R) return i;
742 if (TgtIntrinsics[i].TheDef == R) return i + Intrinsics.size();
H A DCodeGenTarget.cpp199 if (Regs[i]->TheDef->getValueAsString("AsmName") == Name)
268 return Rec1->TheDef->getName() < Rec2->TheDef->getName();
384 TheDef = R;
H A DCodeEmitterGen.cpp237 Record *R = CGI->TheDef;
H A DDAGISelMatcherEmitter.cpp443 OS << "TARGET_VAL(" << getQualifiedName(Reg->TheDef) << "),\n";
448 OS << getQualifiedName(Reg->TheDef) << ",\n";
H A DX86RecognizableInstr.cpp213 Rec = insn.TheDef;
284 if (insn.TheDef->getValueAsBit("isAsmParserOnly"))
H A DCodeGenDAGPatterns.cpp2480 .Analyze(Inst.TheDef);
2487 PrintWarning(Inst.TheDef->getLoc(),
2497 PrintWarning(Inst.TheDef->getLoc(),
2505 PrintWarning(Inst.TheDef->getLoc(),
2513 PrintWarning(Inst.TheDef->getLoc(),
2836 throw TGError(InstInfo.TheDef->getLoc(), "The instruction " +
2837 InstInfo.TheDef->getName() +
H A DIntrinsicEmitter.cpp690 throw "Intrinsic '" + Ints[i].TheDef->getName() +
H A DDAGISelMatcherGen.cpp823 AddMatcher(new EmitNodeMatcher(II.Namespace+"::"+II.TheDef->getName(),

Completed in 1076 milliseconds