Lines Matching refs:IDLoc
1710 SMLoc IDLoc = ID.getLoc(); in parseStatement() local
1715 return parseCppHashLineFilenameComment(IDLoc, in parseStatement()
1724 return Error(IDLoc, "unexpected token at start of statement"); in parseStatement()
1733 return Error(IDLoc, "unexpected token at start of statement"); in parseStatement()
1758 return Error(IDLoc, "unexpected token at start of statement"); in parseStatement()
1782 return parseDirectiveIf(IDLoc, DirKind); in parseStatement()
1784 return parseDirectiveIfb(IDLoc, true); in parseStatement()
1786 return parseDirectiveIfb(IDLoc, false); in parseStatement()
1788 return parseDirectiveIfc(IDLoc, true); in parseStatement()
1790 return parseDirectiveIfeqs(IDLoc, true); in parseStatement()
1792 return parseDirectiveIfc(IDLoc, false); in parseStatement()
1794 return parseDirectiveIfeqs(IDLoc, false); in parseStatement()
1796 return parseDirectiveIfdef(IDLoc, true); in parseStatement()
1799 return parseDirectiveIfdef(IDLoc, false); in parseStatement()
1801 return parseDirectiveElseIf(IDLoc); in parseStatement()
1803 return parseDirectiveElse(IDLoc); in parseStatement()
1805 return parseDirectiveEndIf(IDLoc); in parseStatement()
1830 return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label"); in parseStatement()
1841 SI->LookupInlineAsmLabel(IDVal, getSourceManager(), IDLoc, true); in parseStatement()
1844 Info.AsmRewrites->emplace_back(AOK_Label, IDLoc, IDVal.size(), in parseStatement()
1871 Out.emitLabel(Sym, IDLoc); in parseStatement()
1877 IDLoc); in parseStatement()
1899 return handleMacroEntry(M, IDLoc); in parseStatement()
1940 return (*Handler.second)(Handler.first, IDVal, IDLoc); in parseStatement()
2052 return parseDirectiveRept(IDLoc, IDVal); in parseStatement()
2054 return parseDirectiveIrp(IDLoc); in parseStatement()
2056 return parseDirectiveIrpc(IDLoc); in parseStatement()
2058 return parseDirectiveEndr(IDLoc); in parseStatement()
2073 return parseDirectiveFile(IDLoc); in parseStatement()
2111 return parseDirectiveCFIDefCfa(IDLoc); in parseStatement()
2117 return parseDirectiveCFIDefCfaRegister(IDLoc); in parseStatement()
2119 return parseDirectiveCFIOffset(IDLoc); in parseStatement()
2121 return parseDirectiveCFIRelOffset(IDLoc); in parseStatement()
2131 return parseDirectiveCFISameValue(IDLoc); in parseStatement()
2133 return parseDirectiveCFIRestore(IDLoc); in parseStatement()
2137 return parseDirectiveCFIReturnColumn(IDLoc); in parseStatement()
2141 return parseDirectiveCFIUndefined(IDLoc); in parseStatement()
2143 return parseDirectiveCFIRegister(IDLoc); in parseStatement()
2150 return parseDirectiveMacro(IDLoc); in parseStatement()
2160 return parseDirectivePurgeMacro(IDLoc); in parseStatement()
2162 return parseDirectiveEnd(IDLoc); in parseStatement()
2164 return parseDirectiveError(IDLoc, false); in parseStatement()
2166 return parseDirectiveError(IDLoc, true); in parseStatement()
2168 return parseDirectiveWarning(IDLoc); in parseStatement()
2170 return parseDirectiveReloc(IDLoc); in parseStatement()
2200 return parseDirectivePrint(IDLoc); in parseStatement()
2207 return Error(IDLoc, "unknown directive"); in parseStatement()
2213 return parseDirectiveMSEmit(IDLoc, Info, IDVal.size()); in parseStatement()
2217 return parseDirectiveMSAlign(IDLoc, Info); in parseStatement()
2220 Info.AsmRewrites->emplace_back(AOK_EVEN, IDLoc, 4); in parseStatement()
2243 printMessage(IDLoc, SourceMgr::DK_Note, OS.str()); in parseStatement()
2257 Line = SrcMgr.FindLineNumber(IDLoc, CurBuffer); in parseStatement()
2285 IDLoc, Info.Opcode, Info.ParsedOperands, Out, ErrorInfo, in parseStatement()
2673 SMLoc IDLoc = Lexer.getLoc(); in parseMacroArguments() local
2678 return Error(IDLoc, "invalid argument identifier for formal argument"); in parseMacroArguments()
2690 return Error(IDLoc, "cannot mix positional and keyword arguments"); in parseMacroArguments()
2731 return Error(IDLoc, "parameter named '" + FA.Name + in parseMacroArguments()
4911 SMLoc IDLoc = getLexer().getLoc(); in parseDirectiveComm() local
4968 return Error(IDLoc, "invalid symbol redefinition"); in parseDirectiveComm()
5719 bool AsmParser::parseDirectiveMSEmit(SMLoc IDLoc, ParseStatementInfo &Info, in parseDirectiveMSEmit() argument
5732 Info.AsmRewrites->emplace_back(AOK_Emit, IDLoc, Len); in parseDirectiveMSEmit()
5736 bool AsmParser::parseDirectiveMSAlign(SMLoc IDLoc, ParseStatementInfo &Info) { in parseDirectiveMSAlign() argument
5748 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue)); in parseDirectiveMSAlign()