Lines Matching refs:FunctionId
652 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
5063 bool MasmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
5067 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
5069 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
5090 int64_t FunctionId; in parseDirectiveCVFuncId() local
5092 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL()) in parseDirectiveCVFuncId()
5095 if (!getStreamer().emitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
5111 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
5118 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
5154 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
5170 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
5171 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
5222 getStreamer().emitCVLocDirective(FunctionId, FileNumber, LineNumber, in parseDirectiveCVLoc()
5231 int64_t FunctionId; in parseDirectiveCVLinetable() local
5234 if (parseCVFunctionId(FunctionId, ".cv_linetable") || in parseDirectiveCVLinetable()
5248 getStreamer().emitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym); in parseDirectiveCVLinetable()