Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1330)

Unified Diff: tests_lit/asan_tests/instrumentlocals.ll

Issue 2194853003: Subzero: Implemented codegen for poisoning and unpoisoning stack redzones (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Added missing REQUIRES directive Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests_lit/asan_tests/errors.ll ('k') | tests_lit/asan_tests/multiple_returns.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/asan_tests/instrumentlocals.ll
diff --git a/tests_lit/asan_tests/instrumentlocals.ll b/tests_lit/asan_tests/instrumentlocals.ll
index 2cdbe17db4052dce6dccdd4026b58830a72b31f5..38688feaf2eb80368d148891ae8d3e0791fc1e2e 100644
--- a/tests_lit/asan_tests/instrumentlocals.ll
+++ b/tests_lit/asan_tests/instrumentlocals.ll
@@ -3,7 +3,7 @@
; REQUIRES: allow_dump
; RUN: %p2i -i %s --args -verbose=inst -threads=0 -fsanitize-address \
-; RUN: | FileCheck --check-prefix=DUMP %s
+; RUN: -allow-externally-defined-symbols | FileCheck --check-prefix=DUMP %s
; Function with local variables to be instrumented
define internal void @func() {
@@ -12,34 +12,63 @@ define internal void @func() {
%local3 = alloca i8, i32 13, align 2
%local4 = alloca i8, i32 75, align 4
%local5 = alloca i8, i32 64, align 8
+ %i1 = ptrtoint i8* %local1 to i32
+ %i2 = ptrtoint i8* %local2 to i32
+ %i3 = ptrtoint i8* %local3 to i32
+ %i4 = ptrtoint i8* %local4 to i32
+ %i5 = ptrtoint i8* %local5 to i32
+ call void @foo(i32 %i1)
+ call void @foo(i32 %i2)
+ call void @foo(i32 %i3)
+ call void @foo(i32 %i4)
+ call void @foo(i32 %i5)
ret void
}
+declare external void @foo(i32)
+
; DUMP-LABEL: ================ Instrumented CFG ================
; DUMP-NEXT: define internal void @func() {
; DUMP-NEXT: __0:
-; DUMP-NEXT: %local1 = alloca i8, i32 64, align 8
-; DUMP-NEXT: %local2 = alloca i8, i32 64, align 8
-; DUMP-NEXT: %local3 = alloca i8, i32 64, align 8
-; DUMP-NEXT: %local4 = alloca i8, i32 128, align 8
-; DUMP-NEXT: %local5 = alloca i8, i32 96, align 8
-; DUMP-NEXT: %__$rz[[RZ0:[0-9]+]] = alloca i8, i32 32, align 8
-; DUMP-NEXT: call void @__asan_poison(i32 %__$rz[[RZ0]], i32 32, i32 -1)
-; DUMP-NEXT: %__$rz[[RZ1:[0-9]+]] = add i32 %local1, 4
-; DUMP-NEXT: call void @__asan_poison(i32 %__$rz[[RZ1]], i32 60, i32 -1)
-; DUMP-NEXT: %__$rz[[RZ2:[0-9]+]] = add i32 %local2, 32
-; DUMP-NEXT: call void @__asan_poison(i32 %__$rz[[RZ2]], i32 32, i32 -1)
-; DUMP-NEXT: %__$rz[[RZ3:[0-9]+]] = add i32 %local3, 13
-; DUMP-NEXT: call void @__asan_poison(i32 %__$rz[[RZ3]], i32 51, i32 -1)
-; DUMP-NEXT: %__$rz[[RZ4:[0-9]+]] = add i32 %local4, 75
-; DUMP-NEXT: call void @__asan_poison(i32 %__$rz[[RZ4]], i32 53, i32 -1)
-; DUMP-NEXT: %__$rz[[RZ5:[0-9]+]] = add i32 %local5, 64
-; DUMP-NEXT: call void @__asan_poison(i32 %__$rz[[RZ5]], i32 32, i32 -1)
-; DUMP-NEXT: call void @__asan_unpoison(i32 %__$rz[[RZ1]], i32 60)
-; DUMP-NEXT: call void @__asan_unpoison(i32 %__$rz[[RZ2]], i32 32)
-; DUMP-NEXT: call void @__asan_unpoison(i32 %__$rz[[RZ3]], i32 51)
-; DUMP-NEXT: call void @__asan_unpoison(i32 %__$rz[[RZ4]], i32 53)
-; DUMP-NEXT: call void @__asan_unpoison(i32 %__$rz[[RZ5]], i32 32)
-; DUMP-NEXT: call void @__asan_unpoison(i32 %__$rz[[RZ0]], i32 32)
-; DUMP-NEXT: ret void
+; DUMP-NEXT: %__$rz0 = alloca i8, i32 32, align 8
+; DUMP-NEXT: %local1 = alloca i8, i32 64, align 8
+; DUMP-NEXT: %local2 = alloca i8, i32 64, align 8
+; DUMP-NEXT: %local3 = alloca i8, i32 64, align 8
+; DUMP-NEXT: %local4 = alloca i8, i32 128, align 8
+; DUMP-NEXT: %local5 = alloca i8, i32 96, align 8
+; DUMP-NEXT: %shadowIndex = lshr i32 %__$rz0, 3
+; DUMP-NEXT: %firstShadowLoc = add i32 %shadowIndex, 536870912
+; DUMP-NEXT: %__8 = add i32 %firstShadowLoc, 0
+; DUMP-NEXT: store i32 -1, i32* %__8, align 1
+; DUMP-NEXT: %__9 = add i32 %firstShadowLoc, 4
+; DUMP-NEXT: store i32 -252, i32* %__9, align 1
+; DUMP-NEXT: %__10 = add i32 %firstShadowLoc, 8
+; DUMP-NEXT: store i32 -1, i32* %__10, align 1
+; DUMP-NEXT: %__11 = add i32 %firstShadowLoc, 16
+; DUMP-NEXT: store i32 -1, i32* %__11, align 1
+; DUMP-NEXT: %__12 = add i32 %firstShadowLoc, 20
+; DUMP-NEXT: store i32 -64256, i32* %__12, align 1
+; DUMP-NEXT: %__13 = add i32 %firstShadowLoc, 24
+; DUMP-NEXT: store i32 -1, i32* %__13, align 1
+; DUMP-NEXT: %__14 = add i32 %firstShadowLoc, 36
+; DUMP-NEXT: store i32 -64768, i32* %__14, align 1
+; DUMP-NEXT: %__15 = add i32 %firstShadowLoc, 40
+; DUMP-NEXT: store i32 -1, i32* %__15, align 1
+; DUMP-NEXT: %__16 = add i32 %firstShadowLoc, 52
+; DUMP-NEXT: store i32 -1, i32* %__16, align 1
+; DUMP-NEXT: call void @foo(i32 %local1)
+; DUMP-NEXT: call void @foo(i32 %local2)
+; DUMP-NEXT: call void @foo(i32 %local3)
+; DUMP-NEXT: call void @foo(i32 %local4)
+; DUMP-NEXT: call void @foo(i32 %local5)
+; DUMP-NEXT: store i32 0, i32* %__8, align 1
+; DUMP-NEXT: store i32 0, i32* %__9, align 1
+; DUMP-NEXT: store i32 0, i32* %__10, align 1
+; DUMP-NEXT: store i32 0, i32* %__11, align 1
+; DUMP-NEXT: store i32 0, i32* %__12, align 1
+; DUMP-NEXT: store i32 0, i32* %__13, align 1
+; DUMP-NEXT: store i32 0, i32* %__14, align 1
+; DUMP-NEXT: store i32 0, i32* %__15, align 1
+; DUMP-NEXT: store i32 0, i32* %__16, align 1
+; DUMP-NEXT: ret void
; DUMP-NEXT: }
« no previous file with comments | « tests_lit/asan_tests/errors.ll ('k') | tests_lit/asan_tests/multiple_returns.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698