| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | SMLoc.h | 48 class SMRange { 52 SMRange() = default; 53 SMRange(NoneType) {} in SMRange() function 54 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) { in SMRange() function
|
| D | SourceMgr.h | 190 ArrayRef<SMRange> Ranges = {}, 196 ArrayRef<SMRange> Ranges = {}, 213 ArrayRef<SMRange> Ranges = {}, 227 SMRange Range; 232 SMFixIt(SMRange R, const Twine &Replacement); 235 : SMFixIt(SMRange(Loc, Loc), Replacement) {} in SMFixIt() 238 SMRange getRange() const { return Range; } in getRange()
|
| D | YAMLParser.h | 108 void printError(const SMRange &Range, const Twine &Msg, 165 SMRange getSourceRange() const { return SourceRange; } in getSourceRange() 166 void setSourceRange(SMRange SR) { SourceRange = SR; } in setSourceRange() 182 SMRange SourceRange; 221 SourceRange = SMRange(Start, End); in ScalarNode() 264 SourceRange = SMRange(Start, End); in BlockScalarNode()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/ |
| D | MCAsmParser.h | 133 SMRange Range; 213 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 218 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 225 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 231 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 256 bool TokError(const Twine &Msg, SMRange Range = None);
|
| D | MCAsmParserExtension.h | 74 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | SourceMgr.cpp | 263 const Twine &Msg, ArrayRef<SMRange> Ranges, in GetMessage() 296 SMRange R = Ranges[i]; in GetMessage() 343 ArrayRef<SMRange> Ranges, ArrayRef<SMFixIt> FixIts, in PrintMessage() 349 const Twine &Msg, ArrayRef<SMRange> Ranges, in PrintMessage() 358 SMFixIt::SMFixIt(SMRange R, const Twine &Replacement) in SMFixIt() 394 SMRange R = Fixit.getRange(); in buildFixItLine()
|
| D | YAMLTraits.cpp | 204 const SMRange &ReportLoc = NN.second.second; in endMapping() 381 void Input::setError(const SMRange &range, const Twine &message) { in setError() 395 void Input::reportWarning(const SMRange &range, const Twine &message) { in reportWarning()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/FileCheck/ |
| D | FileCheckImpl.h | 539 SMRange Range; 544 ErrorDiagnostic(SMDiagnostic &&Diag, SMRange Range) in ErrorDiagnostic() 555 SMRange getRange() const { return Range; } in getRange() 558 SMRange Range = None) { 566 return get(SM, Start, ErrMsg, SMRange(Start, End)); in get() 760 SMRange MatchRange, FileCheckDiag::MatchType MatchTy,
|
| D | FileCheck.cpp | 1354 SMRange Range, in printSubstitutions() 1380 SMRange(Range.Start, Range.Start), OS.str()); in printSubstitutions() 1395 SMRange Range; in printVariableDefs() 1404 VC.Range = SMRange(Start, End); in printVariableDefs() 1416 VC.Range = SMRange(Start, End); in printVariableDefs() 1438 static SMRange ProcessMatchResult(FileCheckDiag::MatchType MatchTy, in ProcessMatchResult() 1446 SMRange Range(Start, End); in ProcessMatchResult() 1494 SMRange MatchRange = in printFuzzyMatch() 1606 SMRange InputRange, StringRef Note) in FileCheckDiag() 2069 SMRange MatchRange = ProcessMatchResult(MatchTy, SM, Loc, Pat.getCheckTy(), in printMatch() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| D | MCAsmParser.cpp | 95 bool MCAsmParser::TokError(const Twine &Msg, SMRange Range) { in TokError() 99 bool MCAsmParser::Error(SMLoc L, const Twine &Msg, SMRange Range) { in Error()
|
| D | MCAsmLexer.cpp | 35 SMRange AsmToken::getLocRange() const { in getLocRange() 36 return SMRange(getLoc(), getEndLoc()); in getLocRange()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
| D | MIRParser.cpp | 90 bool error(const SMDiagnostic &Error, SMRange SourceRange); 163 SMRange SourceRange); 168 SMRange SourceRange); 206 bool MIRParserImpl::error(const SMDiagnostic &Error, SMRange SourceRange) { in error() 524 SMRange SrcRange; in initializeMachineFunction() 957 SMRange SourceRange) { in diagFromMIStringDiag() 973 SMRange SourceRange) { in diagFromBlockStringDiag()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyTargetMachine.h | 59 SMRange &SourceRange) const override;
|
| D | WebAssemblyTargetMachine.cpp | 534 SMDiagnostic &Error, SMRange &SourceRange) const { in parseMachineFunctionInfo()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Target/ |
| D | TargetMachine.h | 52 class SMRange; variable 154 SMRange &SourceRange) const { in parseMachineFunctionInfo()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64TargetMachine.h | 58 SMRange &SourceRange) const override;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/FileCheck/ |
| D | FileCheck.h | 168 SMLoc CheckLoc, MatchType MatchTy, SMRange InputRange,
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | AMDGPUTargetMachine.h | 121 SMRange &SourceRange) const override;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/ |
| D | MCAsmMacro.h | 87 SMRange getLocRange() const;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/ |
| D | MIParser.h | 242 SMRange SourceRange, SMDiagnostic &Error);
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/ |
| D | DetailedRecordsBackend.cpp | 158 ArrayRef<std::pair<Record *, SMRange>> Superclasses = Rec->getSuperClasses(); in printSuperclasses()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
| D | X86AsmParser.cpp | 1066 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None, in Error() 1391 SMRange(StartLoc, EndLoc)); in MatchRegisterByName() 1458 return Error(StartLoc, "invalid register name", SMRange(StartLoc, EndLoc)); in MatchRegisterByName() 1495 SMRange(StartLoc, EndLoc)); in ParseRegister() 1553 SMRange(StartLoc, EndLoc)); in ParseRegister() 2052 SMRange(IdentLoc, IDEnd)); in ParseIntelExpression() 2447 return Error(OpLoc, "expression has unknown type", SMRange(Start, End)); in ParseMasmOperator() 2662 SMRange(Loc, EndLoc)); in ParseATTOperand() 2665 SMRange(Loc, EndLoc)); in ParseATTOperand() 2921 SMRange(BaseLoc, EndLoc)); in ParseMemOperand() [all …]
|
| D | X86Operand.h | 95 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } in getLocRange()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | MIRYamlMapping.h | 36 SMRange SourceRange; 102 SMRange SourceRange; 393 SMRange SourceRange;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
| D | AMDGPUAsmParser.cpp | 873 SMRange getLocRange() const { in getLocRange() 874 return SMRange(StartLoc, EndLoc); in getLocRange() 1186 bool OutOfRangeError(SMRange Range); 1205 SMRange VGPRRange, unsigned NextFreeSGPR, 1206 SMRange SGPRRange, unsigned &VGPRBlocks, 4468 SMRange TargetRange = SMRange(TargetStart, getTok().getLoc()); in ParseDirectiveAMDGCNTarget() 4479 bool AMDGPUAsmParser::OutOfRangeError(SMRange Range) { in OutOfRangeError() 4486 SMRange VGPRRange, unsigned NextFreeSGPR, SMRange SGPRRange, in calculateGPRBlocks() 4540 SMRange VGPRRange; in ParseDirectiveAMDHSAKernel() 4543 SMRange SGPRRange; in ParseDirectiveAMDHSAKernel() [all …]
|