Lines Matching defs:FunctionId
669 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
5045 bool MasmParser::parseCVFunctionId(int64_t &FunctionId,
5049 parseIntToken(FunctionId, "expected function id in '" + DirectiveName +
5051 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc,
5067 /// ::= .cv_func_id FunctionId
5072 int64_t FunctionId;
5074 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL())
5077 if (!getStreamer().emitCVFuncIdDirective(FunctionId))
5084 /// ::= .cv_inline_site_id FunctionId
5093 int64_t FunctionId;
5099 // FunctionId
5100 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id"))
5136 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile,
5144 /// ::= .cv_loc FunctionId FileNumber [LineNumber] [ColumnPos] [prologue_end]
5152 int64_t FunctionId, FileNumber;
5153 if (parseCVFunctionId(FunctionId, ".cv_loc") ||
5204 getStreamer().emitCVLocDirective(FunctionId, FileNumber, LineNumber,
5211 /// ::= .cv_linetable FunctionId, FnStart, FnEnd
5213 int64_t FunctionId;
5216 if (parseCVFunctionId(FunctionId, ".cv_linetable") ||
5230 getStreamer().emitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym);