Home
last modified time | relevance | path

Searched refs:InstCount (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInstCount.cpp35 class InstCount : public InstVisitor<InstCount> { class
36 friend class InstVisitor<InstCount>;
60 InstCount().visit(F); in run()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkSizeDiff.cpp55 int64_t InstCount = 0; member
68 int64_t InstCount[2] = {0, 0}; member
72 int64_t getInstDiff() const { return InstCount[1] - InstCount[0]; } in getInstDiff()
76 int64_t getInstCountA() const { return InstCount[0]; } in getInstCountA()
80 int64_t getInstCountB() const { return InstCount[1]; } in getInstCountB()
95 InstCount[0] = A.InstCount; in FunctionDiff()
96 InstCount[1] = B.InstCount; in FunctionDiff()
264 FuncNameToSizeInfo[Remark.FunctionName].InstCount = *MaybeInstCount; in processRemark()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64LowerHomogeneousPrologEpilog.cpp402 int InstCount = RegCount / 2; in shouldUseFrameHelper() local
411 InstCount--; in shouldUseFrameHelper()
437 InstCount++; in shouldUseFrameHelper()
442 return InstCount >= FrameHelperSizeThreshold; in shouldUseFrameHelper()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h834 unsigned InstCount;
884 InstCount(NumInsts), FunFlags(FunFlags), EntryCount(EntryCount),
917 unsigned instCount() const { return InstCount; }
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7309 unsigned InstCount = Record[2]; in parseEntireSummary() local
7357 Flags, InstCount, getDecodedFFlags(RawFunFlags), /*EntryCount=*/0, in parseEntireSummary()
7461 unsigned InstCount = Record[3]; in parseEntireSummary() local
7503 Flags, InstCount, getDecodedFFlags(RawFunFlags), EntryCount, in parseEntireSummary()
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp8928 unsigned InstCount; in parseFunctionSummary() local
8943 parseToken(lltok::colon, "expected ':' here") || parseUInt32(InstCount)) in parseFunctionSummary()
8986 GVFlags, InstCount, FFlags, /*EntryCount=*/0, std::move(Refs), in parseFunctionSummary()
/freebsd-14.2/lib/clang/libllvm/
H A DMakefile99 SRCS_MIN+= Analysis/InstCount.cpp