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

Side by Side Diff: tests_lit/llvm2ice_tests/nop-insertion.ll

Issue 733643005: Subzero: Use the linear-scan register allocator for Om1 as well. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Update/fix some comments Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « tests_lit/llvm2ice_tests/ebp_args.ll ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; This is a smoke test of nop insertion. 1 ; This is a smoke test of nop insertion.
2 2
3 ; Don't use integrated-as because this currently depends on the # variant 3 ; Don't use integrated-as because this currently depends on the # variant
4 ; assembler comment. 4 ; assembler comment.
5 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=50 \ 5 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=50 \
6 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \ 6 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \
7 ; RUN: | FileCheck %s --check-prefix=PROB50 7 ; RUN: | FileCheck %s --check-prefix=PROB50
8 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=90 \ 8 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=90 \
9 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \ 9 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \
10 ; RUN: | FileCheck %s --check-prefix=PROB90 10 ; RUN: | FileCheck %s --check-prefix=PROB90
(...skipping 13 matching lines...) Expand all
24 ; PROB50: movups %xmm1, 16(%esp) 24 ; PROB50: movups %xmm1, 16(%esp)
25 ; PROB50: nop # variant = 0 25 ; PROB50: nop # variant = 0
26 ; PROB50: movups 32(%esp), %xmm0 26 ; PROB50: movups 32(%esp), %xmm0
27 ; PROB50: nop # variant = 4 27 ; PROB50: nop # variant = 4
28 ; PROB50: pshufd $49, 32(%esp), %xmm1 28 ; PROB50: pshufd $49, 32(%esp), %xmm1
29 ; PROB50: pshufd $49, 16(%esp), %xmm2 29 ; PROB50: pshufd $49, 16(%esp), %xmm2
30 ; PROB50: pmuludq 16(%esp), %xmm0 30 ; PROB50: pmuludq 16(%esp), %xmm0
31 ; PROB50: pmuludq %xmm2, %xmm1 31 ; PROB50: pmuludq %xmm2, %xmm1
32 ; PROB50: nop # variant = 0 32 ; PROB50: nop # variant = 0
33 ; PROB50: shufps $136, %xmm1, %xmm0 33 ; PROB50: shufps $136, %xmm1, %xmm0
34 ; PROB50: pshufd $216, %xmm0, %xmm1 34 ; PROB50: pshufd $216, %xmm0, %xmm0
35 ; PROB50: nop # variant = 2 35 ; PROB50: nop # variant = 2
36 ; PROB50: movups %xmm1, (%esp) 36 ; PROB50: movups %xmm0, (%esp)
37 ; PROB50: movups (%esp), %xmm0 37 ; PROB50: movups (%esp), %xmm0
38 ; PROB50: addl $60, %esp 38 ; PROB50: addl $60, %esp
39 ; PROB50: nop # variant = 0 39 ; PROB50: nop # variant = 0
40 ; PROB50: ret 40 ; PROB50: ret
41 41
42 ; PROB90-LABEL: mul_v4i32: 42 ; PROB90-LABEL: mul_v4i32:
43 ; PROB90: nop # variant = 3 43 ; PROB90: nop # variant = 3
44 ; PROB90: subl $60, %esp 44 ; PROB90: subl $60, %esp
45 ; PROB90: nop # variant = 4 45 ; PROB90: nop # variant = 4
46 ; PROB90: movups %xmm0, 32(%esp) 46 ; PROB90: movups %xmm0, 32(%esp)
47 ; PROB90: nop # variant = 3 47 ; PROB90: nop # variant = 3
48 ; PROB90: movups %xmm1, 16(%esp) 48 ; PROB90: movups %xmm1, 16(%esp)
49 ; PROB90: nop # variant = 2 49 ; PROB90: nop # variant = 2
50 ; PROB90: movups 32(%esp), %xmm0 50 ; PROB90: movups 32(%esp), %xmm0
51 ; PROB90: nop # variant = 3 51 ; PROB90: nop # variant = 3
52 ; PROB90: pshufd $49, 32(%esp), %xmm1 52 ; PROB90: pshufd $49, 32(%esp), %xmm1
53 ; PROB90: nop # variant = 4 53 ; PROB90: nop # variant = 4
54 ; PROB90: pshufd $49, 16(%esp), %xmm2 54 ; PROB90: pshufd $49, 16(%esp), %xmm2
55 ; PROB90: nop # variant = 0 55 ; PROB90: nop # variant = 0
56 ; PROB90: pmuludq 16(%esp), %xmm0 56 ; PROB90: pmuludq 16(%esp), %xmm0
57 ; PROB90: nop # variant = 2 57 ; PROB90: nop # variant = 2
58 ; PROB90: pmuludq %xmm2, %xmm1 58 ; PROB90: pmuludq %xmm2, %xmm1
59 ; PROB90: nop # variant = 3 59 ; PROB90: nop # variant = 3
60 ; PROB90: shufps $136, %xmm1, %xmm0 60 ; PROB90: shufps $136, %xmm1, %xmm0
61 ; PROB90: nop # variant = 4 61 ; PROB90: nop # variant = 4
62 ; PROB90: pshufd $216, %xmm0, %xmm1 62 ; PROB90: pshufd $216, %xmm0, %xmm0
63 ; PROB90: nop # variant = 2 63 ; PROB90: nop # variant = 2
64 ; PROB90: movups %xmm1, (%esp) 64 ; PROB90: movups %xmm0, (%esp)
65 ; PROB90: nop # variant = 4 65 ; PROB90: nop # variant = 4
66 ; PROB90: movups (%esp), %xmm0 66 ; PROB90: movups (%esp), %xmm0
67 ; PROB90: nop # variant = 2 67 ; PROB90: nop # variant = 2
68 ; PROB90: addl $60, %esp 68 ; PROB90: addl $60, %esp
69 ; PROB90: nop # variant = 3 69 ; PROB90: nop # variant = 3
70 ; PROB90: ret 70 ; PROB90: ret
71 71
72 ; MAXNOPS2-LABEL: mul_v4i32: 72 ; MAXNOPS2-LABEL: mul_v4i32:
73 ; MAXNOPS2: subl $60, %esp 73 ; MAXNOPS2: subl $60, %esp
74 ; MAXNOPS2: nop # variant = 4 74 ; MAXNOPS2: nop # variant = 4
75 ; MAXNOPS2: movups %xmm0, 32(%esp) 75 ; MAXNOPS2: movups %xmm0, 32(%esp)
76 ; MAXNOPS2: nop # variant = 0 76 ; MAXNOPS2: nop # variant = 0
77 ; MAXNOPS2: nop # variant = 4 77 ; MAXNOPS2: nop # variant = 4
78 ; MAXNOPS2: movups %xmm1, 16(%esp) 78 ; MAXNOPS2: movups %xmm1, 16(%esp)
79 ; MAXNOPS2: movups 32(%esp), %xmm0 79 ; MAXNOPS2: movups 32(%esp), %xmm0
80 ; MAXNOPS2: nop # variant = 0 80 ; MAXNOPS2: nop # variant = 0
81 ; MAXNOPS2: pshufd $49, 32(%esp), %xmm1 81 ; MAXNOPS2: pshufd $49, 32(%esp), %xmm1
82 ; MAXNOPS2: nop # variant = 2 82 ; MAXNOPS2: nop # variant = 2
83 ; MAXNOPS2: pshufd $49, 16(%esp), %xmm2 83 ; MAXNOPS2: pshufd $49, 16(%esp), %xmm2
84 ; MAXNOPS2: pmuludq 16(%esp), %xmm0 84 ; MAXNOPS2: pmuludq 16(%esp), %xmm0
85 ; MAXNOPS2: nop # variant = 0 85 ; MAXNOPS2: nop # variant = 0
86 ; MAXNOPS2: nop # variant = 3 86 ; MAXNOPS2: nop # variant = 3
87 ; MAXNOPS2: pmuludq %xmm2, %xmm1 87 ; MAXNOPS2: pmuludq %xmm2, %xmm1
88 ; MAXNOPS2: shufps $136, %xmm1, %xmm0 88 ; MAXNOPS2: shufps $136, %xmm1, %xmm0
89 ; MAXNOPS2: pshufd $216, %xmm0, %xmm1 89 ; MAXNOPS2: pshufd $216, %xmm0, %xmm0
90 ; MAXNOPS2: nop # variant = 3 90 ; MAXNOPS2: nop # variant = 3
91 ; MAXNOPS2: movups %xmm1, (%esp) 91 ; MAXNOPS2: movups %xmm0, (%esp)
92 ; MAXNOPS2: nop # variant = 0 92 ; MAXNOPS2: nop # variant = 0
93 ; MAXNOPS2: movups (%esp), %xmm0 93 ; MAXNOPS2: movups (%esp), %xmm0
94 ; MAXNOPS2: nop # variant = 2 94 ; MAXNOPS2: nop # variant = 2
95 ; MAXNOPS2: addl $60, %esp 95 ; MAXNOPS2: addl $60, %esp
96 ; MAXNOPS2: nop # variant = 4 96 ; MAXNOPS2: nop # variant = 4
97 ; MAXNOPS2: ret 97 ; MAXNOPS2: ret
98 } 98 }
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/ebp_args.ll ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698