[compiler-rt] r282904 - [compiler-rt] Fix interception of crt atoll on win10 CRT.
Etienne Bergeron via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 30 12:37:11 PDT 2016
Author: etienneb
Date: Fri Sep 30 14:37:11 2016
New Revision: 282904
URL: http://llvm.org/viewvc/llvm-project?rev=282904&view=rev
Log:
[compiler-rt] Fix interception of crt atoll on win10 CRT.
Summary:
The check-asan-dynamic tests were broken on win10 because the interception
library was not able to hook on some functions.
credits: thanks sebastian marchand to help debugging this on win10.
Reviewers: rnk
Subscribers: chrisha, llvm-commits, dberris
Differential Revision: https://reviews.llvm.org/D25120
Modified:
compiler-rt/trunk/lib/interception/interception_win.cc
Modified: compiler-rt/trunk/lib/interception/interception_win.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/interception/interception_win.cc?rev=282904&r1=282903&r2=282904&view=diff
==============================================================================
--- compiler-rt/trunk/lib/interception/interception_win.cc (original)
+++ compiler-rt/trunk/lib/interception/interception_win.cc Fri Sep 30 14:37:11 2016
@@ -498,6 +498,7 @@ static size_t GetInstructionSize(uptr ad
case 0xd9f748: // 48 f7 d9 : neg rcx
case 0xd12b48: // 48 2b d1 : sub rdx, rcx
case 0x07c1f6: // f6 c1 07 : test cl, 0x7
+ case 0xc98548: // 48 85 C9 : test rcx, rcx
case 0xc0854d: // 4d 85 c0 : test r8, r8
case 0xc2b60f: // 0f b6 c2 : movzx eax, dl
case 0xc03345: // 45 33 c0 : xor r8d, r8d
More information about the llvm-commits
mailing list