[compiler-rt] [sanitizer][asan][msvc] Teach GetInstructionSize about many instructions that appear in MSVC generated code. (PR #69490)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 19 06:42:53 PDT 2024
================
@@ -540,6 +548,9 @@ static size_t GetInstructionSize(uptr address, size_t* rel_offset = nullptr) {
}
switch (0x00FFFFFF & *(u32*)address) {
+ case 0xF8E484: // 83 E4 F8 : and esp, 0xFFFFFFF8
----------------
zmodem wrote:
0xF8E484 -> 0xF8E483
https://github.com/llvm/llvm-project/pull/69490
More information about the llvm-commits
mailing list