HomeSort by: relevance | last modified time | path
    Searched refs:PrintError (Results 1 - 23 of 23) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Error.h 37 void PrintError(const Twine &Msg);
38 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
39 void PrintError(const char *Loc, const Twine &Msg);
40 void PrintError(const Record *Rec, const Twine &Msg);
41 void PrintError(const RecordVal *RecVal, const Twine &Msg);
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Error.cpp 101 void PrintError(const Twine &Msg) { WithColor::error() << Msg << "\n"; }
103 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
107 void PrintError(const char *Loc, const Twine &Msg) {
113 void PrintError(const Record *Rec, const Twine &Msg) {
119 void PrintError(const RecordVal *RecVal, const Twine &Msg) {
126 PrintError(Msg);
133 PrintError(ErrorLoc, Msg);
142 PrintError(Rec->getLoc(), Msg);
151 PrintError(RecVal->getLoc(), Msg);
163 PrintError(Loc, "assert condition must of type bit, bits, or int.")
    [all...]
TGLexer.cpp 71 PrintError(Loc, Msg);
119 PrintError(getLoc(),
395 PrintError(getLoc(), "Expected filename after include");
406 PrintError(getLoc(), "Could not find include file '" + Filename + "'");
438 PrintError(TokStart, "Unterminated comment!");
749 PrintError(TokStart, "double #else");
994 PrintError(CurPtr, "Unexpected character");
1036 PrintError(CurBuf.end(), "Reached EOF without matching #endif");
1037 PrintError(PrepControl.SrcPos, "The latest preprocessor control is here");
TGParser.h 173 PrintError(L, Msg);
TGParser.cpp 104 PrintError(R.getLoc(),
400 PrintError(Loop.Loc, Twine("attempting to loop over '") +
470 PrintError(Rec->getLoc(),
482 PrintError(Rec->getLoc(), Twine("record name '") +
497 PrintError(Rec->getLoc(), Twine("adding record of incompatible type '") +
2946 PrintError(SemiLoc, "A class or def body should not end with a semicolon");
3540 PrintError(SemiLoc, "A multiclass body should not end with a semicolon");
Record.cpp 1390 PrintError(CurRec->getLoc(),
1395 PrintError(CurRec->getLoc(), "!substr length must be nonnegative");
1410 PrintError(CurRec->getLoc(),
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
OptEmitter.cpp 77 PrintError(A->getLoc(), Twine("Option is equivalent to"));
78 PrintError(B->getLoc(), Twine("Other defined here"));
PseudoLoweringEmitter.cpp 94 PrintError(Rec, "In pseudo instruction '" + Rec->getName() +
141 PrintError(Rec, "In pseudo instruction '" + Rec->getName() +
148 PrintError(Rec, "In pseudo instruction '" + Rec->getName() +
158 PrintError(Rec, "In pseudo instruction '" + Rec->getName() +
166 PrintError(Rec, "In pseudo instruction '" + Rec->getName() +
205 PrintError(Rec, "In pseudo instruction '" + Rec->getName() +
GICombinerEmitter.cpp 248 PrintError(TheDef.getLoc(), "One or more roots are unnecessary");
352 PrintError(TheDef.getLoc(), "Expected defs operator");
376 PrintError(TheDef.getLoc(),
379 PrintError(TheDef.getLoc(),
382 PrintError(TheDef.getLoc(),
389 PrintError(TheDef.getLoc(), "Combine rules must have at least one root");
480 PrintError(TheDef.getLoc(),
494 PrintError(TheDef.getLoc(), "Expected match operator");
499 PrintError(TheDef.getLoc(), "Matcher is empty");
525 PrintError(TheDef.getLoc()
    [all...]
DisassemblerEmitter.cpp 120 PrintError(Target.getTargetRecord()->getLoc(), "Primary decode conflict");
CodeGenHwModes.cpp 35 PrintError(R->getLoc(), "in record " + R->getName() +
DirectiveEmitter.cpp 87 PrintError("enumClauseValue field not set in Clause" +
128 PrintError("Clause " + VerClause.getClause().getRecordName() +
280 PrintError("At least one " + Enum + " must be defined as default.");
319 PrintError("At least one val in Clause " + C.getFormattedName() +
327 PrintError("enumClauseValue field not set in Clause" +
CodeGenSchedule.cpp 250 PrintError(R->getLoc(), "STIPredicate " + Name + " multiply declared.");
454 PrintError(TIIPred->getLoc(),
467 PrintError(RCU->getLoc(),
483 PrintError(Queue->getLoc(),
494 PrintError(Queue->getLoc(),
1082 PrintError(
1118 PrintError(
1989 PrintError(Inst->TheDef->getLoc(),
2010 PrintError(Inst->TheDef->getLoc(), "'" + ProcModel.ModelName +
CodeGenDAGPatterns.cpp 2768 PrintError(TheRecord->getLoc(), "In " + TheRecord->getName() + ": " + Msg);
3595 PrintError(PatDef->getLoc(), "Pattern doesn't match hasSideEffects = " +
3602 PrintError(PatDef->getLoc(), "Pattern doesn't match mayStore = " +
3611 PrintError(PatDef->getLoc(), "Pattern doesn't match mayLoad = " +
4059 PrintError(InstInfo->TheDef->getLoc(),
4062 PrintError(InstInfo->TheDef->getLoc(),
4065 PrintError(InstInfo->TheDef->getLoc(),
4118 PrintError(PTM.getSrcRecord()->getLoc(), Twine(Msg) + " on the " +
4124 PrintError(Instr->getLoc(), "defined here");
4129 PrintError(InstInfo.InferredFrom->getLoc(), "inferred from pattern")
    [all...]
CodeGenTarget.cpp 765 PrintError(R->getLoc(),
SearchableTableEmitter.cpp 699 PrintError(TypeOfRecordVal,
AsmMatcherEmitter.cpp 1361 PrintError(Rec->getLoc(), "Invalid super class reference!");
1367 PrintError(Rec->getLoc(), "Invalid super class reference!");
2754 PrintError(ToVec[AliasWithNoPredicate]->getLoc(),
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
CFBundle.cpp 151 auto PrintError = [&](CFTypeID TypeID) {
168 PrintError(TypeID);
176 PrintError(TypeID);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
CodeExpander.cpp 67 PrintError(Loc,
GIMatchTree.cpp 246 PrintError("Leaf " + LeafI->getName() + " is unreachable");
286 PrintError("Leaf " + Leaf.getName() + " is not fully traversed");
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangASTPropertiesEmitter.cpp 315 PrintError(existingProperty.getLoc(),
328 PrintError(type.getLoc(),
338 PrintError(valueType.getLoc(),
342 PrintError(valueType.getLoc(),
347 PrintError(type.getLoc(), "unknown generic property type");
ClangAttrEmitter.cpp 3094 PrintError(Spelling->getLoc(), "Standard attributes must have "
3439 PrintError(R.getLoc(),
MveEmitter.cpp 1297 PrintError("bad DAG argument type for code generation");

Completed in 89 milliseconds