diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /build/build-clang/llvmorg-18-init-8471-g160e8eb44961.patch | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/build-clang/llvmorg-18-init-8471-g160e8eb44961.patch')
-rw-r--r-- | build/build-clang/llvmorg-18-init-8471-g160e8eb44961.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/build/build-clang/llvmorg-18-init-8471-g160e8eb44961.patch b/build/build-clang/llvmorg-18-init-8471-g160e8eb44961.patch new file mode 100644 index 0000000000..fcd170919c --- /dev/null +++ b/build/build-clang/llvmorg-18-init-8471-g160e8eb44961.patch @@ -0,0 +1,31 @@ +From 160e8eb4496104a1d0ed77649af7e8bb679252f9 Mon Sep 17 00:00:00 2001 +From: nicole mazzuca <nicole@strega-nil.co> +Date: Fri, 13 Oct 2023 08:47:23 -0700 +Subject: [PATCH] [ASan] Recognize lea r10, [rip + XX] (#68910) + +This instruction is present in memcpy in the latest vcruntime + +This PR has been opened for @AndrewDeanMS (a teammate inside Microsoft) +who made the PR to our internal branch. + +Co-authored-by: Andrew Dean <Andrew.Dean@microsoft.com> +--- + compiler-rt/lib/interception/interception_win.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/compiler-rt/lib/interception/interception_win.cpp b/compiler-rt/lib/interception/interception_win.cpp +index d57afa3fda7b..1b681ada37b1 100644 +--- a/compiler-rt/lib/interception/interception_win.cpp ++++ b/compiler-rt/lib/interception/interception_win.cpp +@@ -624,7 +624,7 @@ static size_t GetInstructionSize(uptr address, size_t* rel_offset = nullptr) { + // mov rax, QWORD PTR [rip + XXXXXXXX] + case 0x25ff48: // 48 ff 25 XX XX XX XX : + // rex.W jmp QWORD PTR [rip + XXXXXXXX] +- ++ case 0x158D4C: // 4c 8d 15 XX XX XX XX : lea r10, [rip + XX] + // Instructions having offset relative to 'rip' need offset adjustment. + if (rel_offset) + *rel_offset = 3; +-- +2.44.0.1.g9765aa7075 + |