Home
last modified time | relevance | path

Searched refs:FnSize (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYFrameLowering.cpp276 unsigned FnSize = 0; in EstimateFunctionSizeInBytes() local
279 FnSize += TII.getInstSizeInBytes(MI); in EstimateFunctionSizeInBytes()
281 FnSize += MF.getConstantPool()->getConstants().size() * 4; in EstimateFunctionSizeInBytes()
282 return FnSize; in EstimateFunctionSizeInBytes()
447 unsigned FnSize = EstimateFunctionSizeInBytes(MF, *TII); in determineCalleeSaves() local
450 if (FnSize >= ((1 << (16 - 1)) * 2)) in determineCalleeSaves()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp164 size_t FnSize) { in FunctionDescToIntelJITFormat() argument
171 Result.method_size = FnSize; in FunctionDescToIntelJITFormat()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFrameLowering.cpp1182 unsigned FnSize = 0; in estimateFunctionSizeInBytes() local
1203 FnSize += TII.getInstSizeInBytes(MI); in estimateFunctionSizeInBytes()
1206 FnSize += 2 + 8 + 2 + 2; in estimateFunctionSizeInBytes()
1208 FnSize += 4 + 8 + 4 + 4; in estimateFunctionSizeInBytes()
1212 FnSize += TII.getInstSizeInBytes(MI); in estimateFunctionSizeInBytes()
1215 return FnSize; in estimateFunctionSizeInBytes()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLegacyPassManager.cpp106 unsigned FnSize = MaybeChangedFn.getInstructionCount(); in emitInstrCountChangedRemark() local
113 std::pair<unsigned, unsigned>(0, FnSize); in emitInstrCountChangedRemark()
118 It->second.second = FnSize; in emitInstrCountChangedRemark()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp2074 unsigned FnSize = 0; in EstimateFunctionSizeInBytes() local
2077 FnSize += TII.getInstSizeInBytes(MI); in EstimateFunctionSizeInBytes()
2081 FnSize += Table.MBBs.size() * 4; in EstimateFunctionSizeInBytes()
2082 FnSize += MF.getConstantPool()->getConstants().size() * 4; in EstimateFunctionSizeInBytes()
2083 return FnSize; in EstimateFunctionSizeInBytes()
2412 unsigned FnSize = EstimateFunctionSizeInBytes(MF, TII); in determineCalleeSaves() local
2415 if (FnSize >= (1 << 11)) { in determineCalleeSaves()