Searched defs:ErrorLoc (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/TableGen/
H A DError.cpp50 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) { argument
51 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp31 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const { argument
32 ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp339 SMLoc ErrorLoc = IDLoc; local
344 ErrorLoc = ((MBlazeOperand*)Operands[ErrorInfo])->getStartLoc();
345 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
348 return Error(ErrorLoc, "invalid operand for instruction");
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp296 SMLoc ErrorLoc = IDLoc; local
301 ErrorLoc = ((MipsOperand*)Operands[ErrorInfo])->getStartLoc();
302 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
305 return Error(ErrorLoc, "invalid operand for instruction");
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp7518 SMLoc ErrorLoc = IDLoc; local
7523 ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc();
7524 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
7527 return Error(ErrorLoc, "invalid operand for instruction");
7541 SMLoc ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc(); local
7542 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
7543 return Error(ErrorLoc, "immediate operand must be in the range [0,15]");

Completed in 131 milliseconds