Lines Matching defs:FunctionId
377 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
3785 bool AsmParser::parseCVFunctionId(int64_t &FunctionId,
3789 parseIntToken(FunctionId, "expected function id in '" + DirectiveName +
3791 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc,
3807 /// ::= .cv_func_id FunctionId
3812 int64_t FunctionId;
3814 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL())
3817 if (!getStreamer().emitCVFuncIdDirective(FunctionId))
3824 /// ::= .cv_inline_site_id FunctionId
3833 int64_t FunctionId;
3839 // FunctionId
3840 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id"))
3876 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile,
3884 /// ::= .cv_loc FunctionId FileNumber [LineNumber] [ColumnPos] [prologue_end]
3892 int64_t FunctionId, FileNumber;
3893 if (parseCVFunctionId(FunctionId, ".cv_loc") ||
3944 getStreamer().emitCVLocDirective(FunctionId, FileNumber, LineNumber,
3951 /// ::= .cv_linetable FunctionId, FnStart, FnEnd
3953 int64_t FunctionId;
3956 if (parseCVFunctionId(FunctionId, ".cv_linetable") || parseComma() ||
3968 getStreamer().emitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym);