Lines Matching refs:FunctionId
376 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
3774 bool AsmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
3778 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
3780 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
3801 int64_t FunctionId; in parseDirectiveCVFuncId() local
3803 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL()) in parseDirectiveCVFuncId()
3806 if (!getStreamer().emitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
3822 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
3829 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
3865 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
3881 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
3882 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
3933 getStreamer().emitCVLocDirective(FunctionId, FileNumber, LineNumber, in parseDirectiveCVLoc()
3942 int64_t FunctionId; in parseDirectiveCVLinetable() local
3945 if (parseCVFunctionId(FunctionId, ".cv_linetable") || parseComma() || in parseDirectiveCVLinetable()
3957 getStreamer().emitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym); in parseDirectiveCVLinetable()