Lines Matching refs:FunctionId
671 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
5046 bool MasmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
5050 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
5052 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
5073 int64_t FunctionId; in parseDirectiveCVFuncId() local
5075 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL()) in parseDirectiveCVFuncId()
5078 if (!getStreamer().emitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
5094 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
5101 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
5137 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
5153 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
5154 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
5205 getStreamer().emitCVLocDirective(FunctionId, FileNumber, LineNumber, in parseDirectiveCVLoc()
5214 int64_t FunctionId; in parseDirectiveCVLinetable() local
5217 if (parseCVFunctionId(FunctionId, ".cv_linetable") || in parseDirectiveCVLinetable()
5231 getStreamer().emitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym); in parseDirectiveCVLinetable()