HomeSort by: relevance | last modified time | path
    Searched refs:getLoc (Results 1 - 25 of 209) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFObjectWriter.cpp 64 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G3));
67 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G2));
70 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_SABS_G2));
73 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G2_NC));
76 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_SABS_G1));
79 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G1_NC));
82 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(TLSLD_MOVW_DTPREL_G2));
85 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(TLSLD_MOVW_DTPREL_G1_NC));
88 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(TLSLE_MOVW_TPREL_G2));
91 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(TLSLE_MOVW_TPREL_G1_NC))
    [all...]
AArch64MachObjectWriter.cpp 102 Asm.getContext().reportError(Fixup.getLoc(),
182 Asm.getContext().reportError(Fixup.getLoc(),
193 Asm.getContext().reportError(Fixup.getLoc(),
200 Asm.getContext().reportError(Fixup.getLoc(), "unknown AArch64 fixup kind!");
212 Asm.getContext().reportError(Fixup.getLoc(),
244 Asm.getContext().reportError(Fixup.getLoc(),
251 Asm.getContext().reportError(Fixup.getLoc(),
265 Fixup.getLoc(),
272 Fixup.getLoc(),
280 Fixup.getLoc(), "unsupported relocation with identical base")
    [all...]
AArch64WinCOFFObjectWriter.cpp 52 Ctx.reportError(Fixup.getLoc(), "Cannot represent this expression");
70 Ctx.reportError(Fixup.getLoc(), "relocation variant " +
80 Ctx.reportError(Fixup.getLoc(), "relocation type " +
85 Ctx.reportError(Fixup.getLoc(), Twine("relocation type ") + Info.Name +
AArch64AsmBackend.cpp 158 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
169 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
171 Ctx.reportError(Fixup.getLoc(), "fixup not sufficiently aligned");
180 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
187 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
189 Ctx.reportError(Fixup.getLoc(), "fixup must be 2-byte aligned");
196 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
198 Ctx.reportError(Fixup.getLoc(), "fixup must be 4-byte aligned");
205 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
207 Ctx.reportError(Fixup.getLoc(), "fixup must be 8-byte aligned")
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 38 SourceLocation getLoc() const { return Loc; }
47 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS.getLoc());
50 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS);
53 return SM.isBeforeInTranslationUnit(LHS, RHS.getLoc());
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmParser.cpp 43 Loc = getTok().getLoc();
49 return Error(getTok().getLoc(), "expected newline");
56 return Error(getTok().getLoc(), Msg);
65 return Error(getTok().getLoc(), Msg);
86 return check(P, getTok().getLoc(), Msg);
96 return Error(getLexer().getLoc(), Msg, Range);
MCAsmParserExtension.cpp 27 SMLoc FromLoc = getLexer().getLoc();
36 SMLoc ToLoc = getLexer().getLoc();
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Source.cpp 15 SourceLocation SourceInfo::getLoc() const {
38 return getSource(F, PC).getLoc();
ByteCodeGenError.h 29 const SourceLocation &getLoc() const { return Loc; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/MCTargetDesc/
CSKYAsmBackend.cpp 68 Ctx.reportError(Fixup.getLoc(), "out of range pc-relative fixup value.");
70 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned.");
75 Ctx.reportError(Fixup.getLoc(), "out of range pc-relative fixup value.");
77 Ctx.reportError(Fixup.getLoc(), "fixup value must be 4-byte aligned.");
82 Ctx.reportError(Fixup.getLoc(), "out of range pc-relative fixup value.");
84 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned.");
89 Ctx.reportError(Fixup.getLoc(), "out of range pc-relative fixup value.");
91 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned.");
  /src/external/apache2/llvm/dist/clang/examples/Attribute/
Attribute.cpp 42 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type_str)
56 S.Diag(Attr.getLoc(), ID);
66 S.Diag(Attr.getLoc(), ID);
78 S.Diag(Attr.getLoc(), ID);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 33 if (SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), low->getLoc()))
53 if (SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
66 if (SourceMgr.isInSystemHeader(DirLoc.getLoc()))
70 SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
71 DirLoc.getLoc()));
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFObjectWriter.cpp 90 Ctx.reportFatalError(Fixup.getLoc(), "unsupported relocation on symbol");
95 Ctx.reportError(Fixup.getLoc(),
162 Ctx.reportFatalError(Fixup.getLoc(), "unsupported relocation on symbol");
167 Ctx.reportError(Fixup.getLoc(),
176 Ctx.reportError(Fixup.getLoc(),
185 Ctx.reportError(Fixup.getLoc(),
229 Ctx.reportError(Fixup.getLoc(), "invalid fixup for ARM MOVT instruction");
239 Ctx.reportError(Fixup.getLoc(), "invalid fixup for ARM MOVW instruction");
249 Ctx.reportError(Fixup.getLoc(),
260 Ctx.reportError(Fixup.getLoc(),
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Error.cpp 72 PrintNote(Rec->getLoc(), Msg);
81 PrintNote(RecVal->getLoc(), Msg);
114 PrintMessage(Rec->getLoc(), SourceMgr::DK_Error, Msg);
120 PrintMessage(RecVal->getLoc(), SourceMgr::DK_Error, Msg);
142 PrintError(Rec->getLoc(), Msg);
151 PrintError(RecVal->getLoc(), Msg);
DetailedRecordsBackend.cpp 92 SrcMgr.getFormattedLocationNoOffset(Class->getLoc().front()));
109 SrcMgr.getFormattedLocationNoOffset(Rec->getLoc().front()));
126 const auto &LocList = Rec->getLoc();
152 OS << formatv(" |{0}|", SrcMgr.getFormattedLocationNoOffset(Value->getLoc()));
191 SrcMgr.getFormattedLocationNoOffset(Value.getLoc()));
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
AsmWriterInst.cpp 94 CGI.TheDef->getLoc(),
134 CGI.TheDef->getLoc(),
143 CGI.TheDef->getLoc(),
153 PrintFatalError(CGI.TheDef->getLoc(),
160 CGI.TheDef->getLoc(),
166 PrintFatalError(CGI.TheDef->getLoc(),
CodeGenInstruction.cpp 36 PrintFatalError(R->getLoc(),
40 PrintFatalError(R->getLoc(),
48 PrintFatalError(R->getLoc(),
52 PrintFatalError(R->getLoc(),
73 PrintFatalError(R->getLoc(), "Illegal operand for the '" + R->getName() +
99 PrintFatalError(R->getLoc(),
121 PrintFatalError(R->getLoc(), "Unknown operand class '" + Rec->getName() +
127 PrintFatalError(R->getLoc(), "In instruction '" + R->getName() +
131 PrintFatalError(R->getLoc(),
161 PrintFatalError(TheDef->getLoc(), "'" + TheDef->getName()
    [all...]
SubtargetFeatureInfo.cpp 38 PrintFatalError(Pred->getLoc(), "Predicate has no name!");
125 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
127 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
139 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
145 PrintFatalError(SFI.TheDef->getLoc(), "Invalid AssemblerCondDag!");
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86WinCOFFObjectWriter.cpp 48 Ctx.reportError(Fixup.getLoc(), "Cannot represent this expression");
81 Ctx.reportError(Fixup.getLoc(), "unsupported relocation type");
103 Ctx.reportError(Fixup.getLoc(), "unsupported relocation type");
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangASTPropertiesEmitter.cpp 114 PrintFatalError(creationRule.getLoc(),
128 PrintFatalError(overrideRule.getLoc(),
142 PrintFatalError(helperRule.getLoc(),
165 PrintFatalError(kindRule.getLoc(),
315 PrintError(existingProperty.getLoc(),
318 PrintNote(property.getLoc(), "existing property");
328 PrintError(type.getLoc(),
330 if (context) PrintNote(context.getLoc(), "type used here");
338 PrintError(valueType.getLoc(),
340 if (context) PrintNote(context.getLoc(), "type used here")
    [all...]
ASTTableGen.cpp 29 PrintFatalError(getLoc(), "unexpected node declaring properties");
36 PrintFatalError(node->getLoc(),
88 //PrintFatalError(getLoc(), "unexpected generic property type");
126 PrintFatalError(node.getLoc(),
  /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/AsmParser/
CSKYAsmParser.cpp 38 SMLoc getLoc() const { return getParser().getTok().getLoc(); }
398 StartLoc = Tok.getLoc();
411 SMLoc S = getLoc();
435 Operands.push_back(CSKYOperand::createToken("(", getLoc()));
446 Error(getLoc(), "expected ','");
454 Error(getLoc(), "expected '<<'");
458 Operands.push_back(CSKYOperand::createToken("<<", getLoc()));
463 Error(getLoc(), "expected imm");
468 Error(getLoc(), "expected imm")
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLLexer.h 57 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); }
70 bool Error(const Twine &Msg) const { return Error(getLoc(), Msg); }
73 void Warning(const Twine &Msg) const { return Warning(getLoc(), Msg); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCFixup.h 115 FI.Loc = Fixup.getLoc();
126 FI.Loc = Fixup.getLoc();
201 SMLoc getLoc() const { return Loc; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 82 Ctx.reportError(Fixup.getLoc(), "out of range PC16 fixup");
92 Ctx.reportError(Fixup.getLoc(), "out of range PC19 fixup");
131 Ctx.reportError(Fixup.getLoc(), "out of range PC7 fixup");
141 Ctx.reportError(Fixup.getLoc(), "out of range PC10 fixup");
151 Ctx.reportError(Fixup.getLoc(), "out of range PC16 fixup");
160 Ctx.reportError(Fixup.getLoc(), "out of range PC18 fixup");
167 Ctx.reportError(Fixup.getLoc(), "out of range PC18 fixup");
173 Ctx.reportError(Fixup.getLoc(), "out of range PC18 fixup");
182 Ctx.reportError(Fixup.getLoc(), "out of range PC21 fixup");
191 Ctx.reportError(Fixup.getLoc(), "out of range PC26 fixup")
    [all...]

Completed in 709 milliseconds

1 2 3 4 5 6 7 8 9