Searched refs:ErrorLoc (Results 1 - 8 of 8) sorted by relevance

/external/llvm/include/llvm/TableGen/
H A DError.h26 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
31 LLVM_ATTRIBUTE_NORETURN void PrintFatalError(ArrayRef<SMLoc> ErrorLoc,
/external/llvm/lib/TableGen/
H A DError.cpp53 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) { argument
54 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
70 void PrintFatalError(ArrayRef<SMLoc> ErrorLoc, const std::string &Msg) { argument
71 PrintError(ErrorLoc, Msg);
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp726 SMLoc ErrorLoc = IDLoc; local
731 ErrorLoc = ((SystemZOperand*)Operands[ErrorInfo])->getStartLoc();
732 if (ErrorLoc == SMLoc())
733 ErrorLoc = IDLoc;
735 return Error(ErrorLoc, "invalid operand for instruction");
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp750 SMLoc ErrorLoc = IDLoc; local
755 ErrorLoc = ((MipsOperand*) Operands[ErrorInfo])->getStartLoc();
756 if (ErrorLoc == SMLoc())
757 ErrorLoc = IDLoc;
760 return Error(ErrorLoc, "invalid operand for instruction");
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp870 SMLoc ErrorLoc = IDLoc; local
875 ErrorLoc = ((PPCOperand*)Operands[ErrorInfo])->getStartLoc();
876 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
879 return Error(ErrorLoc, "invalid operand for instruction");
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp32 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const { argument
33 ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp2080 SMLoc ErrorLoc = IDLoc; local
2082 ErrorLoc = ((AArch64Operand*)Operands[ErrorInfo])->getStartLoc();
2083 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
2086 return Error(ErrorLoc, "invalid operand for instruction");
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp7525 SMLoc ErrorLoc = IDLoc; local
7530 ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc();
7531 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
7534 return Error(ErrorLoc, "invalid operand for instruction");
7548 SMLoc ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc(); local
7549 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
7550 return Error(ErrorLoc, "immediate operand must be in the range [0,4]");
7553 SMLoc ErrorLoc local
[all...]

Completed in 174 milliseconds