[all-commits] [llvm/llvm-project] a6a526: [IR] Add AllocaInst::getAllocationSize() (NFC)
Nikita Popov via All-commits
all-commits at lists.llvm.org
Fri Jan 6 06:36:32 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: a6a526ec5465d712db11fdbf5ed5fce8da0722cf
https://github.com/llvm/llvm-project/commit/a6a526ec5465d712db11fdbf5ed5fce8da0722cf
Author: Nikita Popov <npopov at redhat.com>
Date: 2023-01-06 (Fri, 06 Jan 2023)
Changed paths:
M llvm/include/llvm/IR/Instructions.h
M llvm/lib/Analysis/StackLifetime.cpp
M llvm/lib/IR/Instructions.cpp
M llvm/lib/Target/AArch64/AArch64StackTagging.cpp
M llvm/lib/Transforms/Coroutines/CoroFrame.cpp
M llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
M llvm/lib/Transforms/Utils/MemoryOpRemark.cpp
M llvm/lib/Transforms/Utils/MemoryTaggingSupport.cpp
Log Message:
-----------
[IR] Add AllocaInst::getAllocationSize() (NFC)
When fetching allocation sizes, we almost always want to have the
size in bytes, but we were only providing an InBits API. Also add
the corresponding byte-based conjugate to save some *8 and /8
juggling everywhere.
More information about the All-commits
mailing list