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

  /external/llvm/include/llvm/TableGen/
Error.h 26 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
31 LLVM_ATTRIBUTE_NORETURN void PrintFatalError(ArrayRef<SMLoc> ErrorLoc,
  /external/llvm/lib/TableGen/
Error.cpp 53 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
54 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
70 void PrintFatalError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
71 PrintError(ErrorLoc, Msg);
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 410 SMLoc ErrorLoc = IDLoc;
415 ErrorLoc = ((SparcOperand &)*Operands[ErrorInfo]).getStartLoc();
416 if (ErrorLoc == SMLoc())
417 ErrorLoc = IDLoc;
420 return Error(ErrorLoc, "invalid operand for instruction");
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 711 SMLoc ErrorLoc = IDLoc;
716 ErrorLoc = ((SystemZOperand &)*Operands[ErrorInfo]).getStartLoc();
717 if (ErrorLoc == SMLoc())
718 ErrorLoc = IDLoc;
720 return Error(ErrorLoc, "invalid operand for instruction");
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 32 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const {
33 ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 941 SMLoc ErrorLoc = IDLoc;
946 ErrorLoc = ((PPCOperand &)*Operands[ErrorInfo]).getStartLoc();
947 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
950 return Error(ErrorLoc, "invalid operand for instruction");
    [all...]

Completed in 1519 milliseconds