Lines Matching refs:FunctionId
671 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
5045 bool MasmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
5049 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
5051 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
5072 int64_t FunctionId; in parseDirectiveCVFuncId() local
5074 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL()) in parseDirectiveCVFuncId()
5077 if (!getStreamer().emitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
5093 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
5100 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
5136 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
5152 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
5153 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
5204 getStreamer().emitCVLocDirective(FunctionId, FileNumber, LineNumber, in parseDirectiveCVLoc()
5213 int64_t FunctionId; in parseDirectiveCVLinetable() local
5216 if (parseCVFunctionId(FunctionId, ".cv_linetable") || in parseDirectiveCVLinetable()
5230 getStreamer().emitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym); in parseDirectiveCVLinetable()