Lines Matching refs:IDLoc

197                                              SMLoc IDLoc);
1796 SMLoc IDLoc = ID.getLoc(); in parseStatement() local
1801 return parseCppHashLineFilenameComment(IDLoc, in parseStatement()
1810 return Error(IDLoc, "unexpected token at start of statement"); in parseStatement()
1819 return Error(IDLoc, "unexpected token at start of statement"); in parseStatement()
1844 return Error(IDLoc, "unexpected token at start of statement"); in parseStatement()
1867 return parseDirectiveIf(IDLoc, DirKind); in parseStatement()
1869 return parseDirectiveIfb(IDLoc, true); in parseStatement()
1871 return parseDirectiveIfb(IDLoc, false); in parseStatement()
1873 return parseDirectiveIfc(IDLoc, true); in parseStatement()
1875 return parseDirectiveIfeqs(IDLoc, true); in parseStatement()
1877 return parseDirectiveIfc(IDLoc, false); in parseStatement()
1879 return parseDirectiveIfeqs(IDLoc, false); in parseStatement()
1881 return parseDirectiveIfdef(IDLoc, true); in parseStatement()
1884 return parseDirectiveIfdef(IDLoc, false); in parseStatement()
1886 return parseDirectiveElseIf(IDLoc); in parseStatement()
1888 return parseDirectiveElse(IDLoc); in parseStatement()
1890 return parseDirectiveEndIf(IDLoc); in parseStatement()
1915 return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label"); in parseStatement()
1926 SI->LookupInlineAsmLabel(IDVal, getSourceManager(), IDLoc, true); in parseStatement()
1929 Info.AsmRewrites->emplace_back(AOK_Label, IDLoc, IDVal.size(), in parseStatement()
1959 Out.emitLabel(Sym, IDLoc); in parseStatement()
1965 IDLoc); in parseStatement()
1987 return handleMacroEntry(M, IDLoc); in parseStatement()
2028 return (*Handler.second)(Handler.first, IDVal, IDLoc); in parseStatement()
2142 return parseDirectiveRept(IDLoc, IDVal); in parseStatement()
2144 return parseDirectiveIrp(IDLoc); in parseStatement()
2146 return parseDirectiveIrpc(IDLoc); in parseStatement()
2148 return parseDirectiveEndr(IDLoc); in parseStatement()
2163 return parseDirectiveFile(IDLoc); in parseStatement()
2201 return parseDirectiveCFIDefCfa(IDLoc); in parseStatement()
2207 return parseDirectiveCFIDefCfaRegister(IDLoc); in parseStatement()
2209 return parseDirectiveCFILLVMDefAspaceCfa(IDLoc); in parseStatement()
2211 return parseDirectiveCFIOffset(IDLoc); in parseStatement()
2213 return parseDirectiveCFIRelOffset(IDLoc); in parseStatement()
2223 return parseDirectiveCFISameValue(IDLoc); in parseStatement()
2225 return parseDirectiveCFIRestore(IDLoc); in parseStatement()
2229 return parseDirectiveCFIReturnColumn(IDLoc); in parseStatement()
2233 return parseDirectiveCFIUndefined(IDLoc); in parseStatement()
2235 return parseDirectiveCFIRegister(IDLoc); in parseStatement()
2242 return parseDirectiveMacro(IDLoc); in parseStatement()
2252 return parseDirectivePurgeMacro(IDLoc); in parseStatement()
2254 return parseDirectiveEnd(IDLoc); in parseStatement()
2256 return parseDirectiveError(IDLoc, false); in parseStatement()
2258 return parseDirectiveError(IDLoc, true); in parseStatement()
2260 return parseDirectiveWarning(IDLoc); in parseStatement()
2262 return parseDirectiveReloc(IDLoc); in parseStatement()
2292 return parseDirectivePrint(IDLoc); in parseStatement()
2303 return Error(IDLoc, "unknown directive"); in parseStatement()
2309 return parseDirectiveMSEmit(IDLoc, Info, IDVal.size()); in parseStatement()
2313 return parseDirectiveMSAlign(IDLoc, Info); in parseStatement()
2316 Info.AsmRewrites->emplace_back(AOK_EVEN, IDLoc, 4); in parseStatement()
2320 return parseAndMatchAndEmitTargetInstruction(Info, IDVal, ID, IDLoc); in parseStatement()
2326 SMLoc IDLoc) { in parseAndMatchAndEmitTargetInstruction() argument
2346 printMessage(IDLoc, SourceMgr::DK_Note, OS.str()); in parseAndMatchAndEmitTargetInstruction()
2360 Line = SrcMgr.FindLineNumber(IDLoc, CurBuffer); in parseAndMatchAndEmitTargetInstruction()
2388 IDLoc, Info.Opcode, Info.ParsedOperands, Out, ErrorInfo, in parseAndMatchAndEmitTargetInstruction()
2775 SMLoc IDLoc = Lexer.getLoc(); in parseMacroArguments() local
2780 return Error(IDLoc, "invalid argument identifier for formal argument"); in parseMacroArguments()
2792 return Error(IDLoc, "cannot mix positional and keyword arguments"); in parseMacroArguments()
2833 return Error(IDLoc, "parameter named '" + FA.Name + in parseMacroArguments()
5007 SMLoc IDLoc = getLexer().getLoc(); in parseDirectiveComm() local
5054 return Error(IDLoc, "invalid symbol redefinition"); in parseDirectiveComm()
5792 bool AsmParser::parseDirectiveMSEmit(SMLoc IDLoc, ParseStatementInfo &Info, in parseDirectiveMSEmit() argument
5805 Info.AsmRewrites->emplace_back(AOK_Emit, IDLoc, Len); in parseDirectiveMSEmit()
5809 bool AsmParser::parseDirectiveMSAlign(SMLoc IDLoc, ParseStatementInfo &Info) { in parseDirectiveMSAlign() argument
5821 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue)); in parseDirectiveMSAlign()