Home
last modified time | relevance | path

Searched refs:HotCold (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h287 uint8_t HotCold);
291 LibFunc NewFunc, uint8_t HotCold);
295 LibFunc NewFunc, uint8_t HotCold);
300 uint8_t HotCold);
303 LibFunc NewFunc, uint8_t HotCold);
307 LibFunc NewFunc, uint8_t HotCold);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1726 uint8_t HotCold; in optimizeNew() local
1728 HotCold = ColdNewHintValue; in optimizeNew()
1731 HotCold = NotColdNewHintValue; in optimizeNew()
1733 HotCold = HotNewHintValue; in optimizeNew()
1748 LibFunc_Znwm12__hot_cold_t, HotCold); in optimizeNew()
1751 if (HotCold != NotColdNewHintValue) in optimizeNew()
1753 LibFunc_Znwm12__hot_cold_t, HotCold); in optimizeNew()
1758 LibFunc_Znam12__hot_cold_t, HotCold); in optimizeNew()
1761 if (HotCold != NotColdNewHintValue) in optimizeNew()
1763 LibFunc_Znam12__hot_cold_t, HotCold); in optimizeNew()
[all …]
H A DBuildLibCalls.cpp2112 uint8_t HotCold) { in emitHotColdSizeReturningNew() argument
2125 CallInst *CI = B.CreateCall(Func, {Num, B.getInt8(HotCold)}, "sized_ptr"); in emitHotColdSizeReturningNew()
2137 uint8_t HotCold) { in emitHotColdSizeReturningNewAligned() argument
2151 B.CreateCall(Func, {Num, Align, B.getInt8(HotCold)}, "sized_ptr"); in emitHotColdSizeReturningNewAligned()
2161 uint8_t HotCold) { in emitHotColdNew() argument
2170 CallInst *CI = B.CreateCall(Func, {Num, B.getInt8(HotCold)}, Name); in emitHotColdNew()
2181 LibFunc NewFunc, uint8_t HotCold) { in emitHotColdNewNoThrow() argument
2190 CallInst *CI = B.CreateCall(Func, {Num, NoThrow, B.getInt8(HotCold)}, Name); in emitHotColdNewNoThrow()
2201 LibFunc NewFunc, uint8_t HotCold) { in emitHotColdNewAligned() argument
2210 CallInst *CI = B.CreateCall(Func, {Num, Align, B.getInt8(HotCold)}, Name); in emitHotColdNewAligned()
[all …]