aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorRoman Lebedev <lebedev.ri@gmail.com>2022-12-13 21:19:24 +0300
committerRoman Lebedev <lebedev.ri@gmail.com>2022-12-13 21:21:07 +0300
commitc499e7a8a74e85d35b135d1b4c249503603827aa (patch)
tree4cdff660f20f0c03fee00b682bb598edaf1a3cbd /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent64d46e141cfeaa1e6f4f68b8d526f1f712bba42b (diff)
downloadllvm-c499e7a8a74e85d35b135d1b4c249503603827aa.zip
llvm-c499e7a8a74e85d35b135d1b4c249503603827aa.tar.gz
llvm-c499e7a8a74e85d35b135d1b4c249503603827aa.tar.bz2
[NFC][MC] `MCInst`: `Operands` small size optimization: store 10, not 8, inline `MCOperand`
This improves the torture test of ``` ./bin/llvm-exegesis -mcpu=znver3 -mode=inverse_throughput --opcode-index=-1 --benchmarks-file=/dev/null --dump-object-to-disk=0 --measurements-print-progress --skip-measurements ``` from ~2m16s to ~2min07s, and has the following effect on memory: ``` heaptrack stats: allocations: 100828624 -> 77362343 (-23.2%) leaked allocations: 1128 temporary allocations: 24911300 -> 1576308 (-93.7%) !!! peak heap memory consumption: 78.2MB after 02.121s -> 76.4MB after 01.985s (-2.3%) peak RSS (including heaptrack overhead): 193.4MB -> 192.6MB (-0.4%) ``` The reasoning is that having more Operands than the SSO is costly, because we go to global allocator, but having larger SSO is fine, even if it's not always needed, because MCInst is hopefully pool-allocated. I'm not sure who is the code owner of this component. Reviewed By: craig.topper Differential Revision: https://reviews.llvm.org/D139882
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
0 files changed, 0 insertions, 0 deletions