HomeSort by: relevance | last modified time | path
    Searched defs:TheDef (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
SubtargetFeatureInfo.h 25 Record *TheDef;
30 SubtargetFeatureInfo(Record *D, uint64_t Idx) : TheDef(D), Index(Idx) {}
34 return "Feature_" + TheDef->getName().str();
40 return "Feature_" + TheDef->getName().str() + "Bit";
44 return TheDef->getValueAsBit("RecomputePerFunction");
SubtargetFeatureInfo.cpp 20 errs() << getEnumName() << " " << Index << "\n" << *TheDef;
101 StringRef CondStr = SFI.TheDef->getValueAsString("CondString");
122 const DagInit *D = SFI.TheDef->getValueAsDag("AssemblerCondDag");
125 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
127 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
139 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
145 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
RegisterBankEmitter.cpp 35 const Record &TheDef;
44 RegisterBank(const Record &TheDef)
45 : TheDef(TheDef), RCs(), RCWithLargestRegsSize(nullptr) {}
48 StringRef getName() const { return TheDef.getValueAsString("Name"); }
50 std::string getEnumeratorName() const { return (TheDef.getName() + "ID").str(); }
54 return (TheDef.getName() + "CoverageData").str();
58 StringRef getInstanceVarName() const { return TheDef.getName(); }
60 const Record &getDef() const { return TheDef; }
CodeGenInstruction.h 140 Record *TheDef; // The actual record containing this OperandList.
220 Record *TheDef; // The actual record defining this instruction.
331 Record *TheDef; // The actual record defining this InstAlias.
CodeGenIntrinsics.h 27 Record *TheDef; // The actual record defining this intrinsic.
AsmMatcherEmitter.cpp 499 /// TheDef - This is the definition of the instruction or InstAlias that this
501 Record *const TheDef;
543 : AsmVariantID(0), AsmString(CGI.AsmString), TheDef(CGI.TheDef), DefRec(&CGI),
548 : AsmVariantID(0), AsmString(Alias->AsmString), TheDef(Alias->TheDef),
551 TheDef->getValueAsBit("UseInstAsmMatchConverter")) {
559 TheDef(RHS.TheDef), DefRec(RHS.DefRec), ResOperands(RHS.ResOperands),
801 errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n"
    [all...]
CodeGenSchedule.h 40 /// sequences. TheDef is nonnull for explicit SchedWrites, but Sequence may or
41 /// may not be empty. TheDef is null for inferred sequences, and Sequence must
49 Record *TheDef;
59 : Index(0), TheDef(nullptr), IsRead(false), IsAlias(false),
62 : Index(Idx), TheDef(Def), IsAlias(false), IsVariadic(false) {
77 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false),
83 assert((!HasVariants || TheDef) && "Variant write needs record def");
88 return TheDef || !Sequence.empty();
GICombinerEmitter.cpp 142 const Record &TheDef;
193 : ID(ID), TheDef(R), MatchDag(Ctx) {}
201 StringRef getName() const { return TheDef.getName(); }
202 const Record &getDef() const { return TheDef; }
248 PrintError(TheDef.getLoc(), "One or more roots are unnecessary");
349 DagInit *Defs = TheDef.getValueAsDag("Defs");
351 if (Defs->getOperatorAsDef(TheDef.getLoc())->getName() != "defs") {
352 PrintError(TheDef.getLoc(), "Expected defs operator");
376 PrintError(TheDef.getLoc(),
379 PrintError(TheDef.getLoc()
    [all...]
CodeGenRegisters.h 64 Record *const TheDef;
152 Record *TheDef;
168 // Extract more information from TheDef. This is used to build an object
302 Record *TheDef;
348 Record *getDef() const { return TheDef; }
GlobalISelEmitter.cpp 1351 const Record &TheDef;
1360 const Record &TheDef)
1362 Operand(Operand), TheDef(TheDef) {}
1375 << MatchTable::NamedValue(("GICP_" + TheDef.getName()).str())
1779 return MatchTable::NamedValue(I->Namespace, I->TheDef->getName(),
1781 return MatchTable::NamedValue(I->Namespace, I->TheDef->getName());
1822 return MatchTable::NamedValue(I->Namespace, I->TheDef->getName(),
1824 return MatchTable::NamedValue(I->Namespace, I->TheDef->getName());
1854 return Insts[0]->TheDef->getName() < BO->Insts[0]->TheDef->getName()
    [all...]

Completed in 31 milliseconds