Lines Matching refs:FunctionId
377 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
3785 bool AsmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
3789 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
3791 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
3812 int64_t FunctionId; in parseDirectiveCVFuncId() local
3814 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL()) in parseDirectiveCVFuncId()
3817 if (!getStreamer().emitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
3833 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
3840 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
3876 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
3892 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
3893 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
3944 getStreamer().emitCVLocDirective(FunctionId, FileNumber, LineNumber, in parseDirectiveCVLoc()
3953 int64_t FunctionId; in parseDirectiveCVLinetable() local
3956 if (parseCVFunctionId(FunctionId, ".cv_linetable") || parseComma() || in parseDirectiveCVLinetable()
3968 getStreamer().emitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym); in parseDirectiveCVLinetable()