OLD | NEW |
1 ; This is a smoke test of nop insertion. | 1 ; This is a smoke test of nop insertion. |
2 | 2 |
| 3 ; REQUIRES: allow_dump |
| 4 |
3 ; Don't use integrated-as because this currently depends on the # variant | 5 ; Don't use integrated-as because this currently depends on the # variant |
4 ; assembler comment. | 6 ; assembler comment. |
5 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=50 \ | 7 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=50 \ |
6 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \ | 8 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \ |
7 ; RUN: | FileCheck %s --check-prefix=PROB50 | 9 ; RUN: | FileCheck %s --check-prefix=PROB50 |
8 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=90 \ | 10 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=90 \ |
9 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \ | 11 ; RUN: -max-nops-per-instruction=1 -integrated-as=false \ |
10 ; RUN: | FileCheck %s --check-prefix=PROB90 | 12 ; RUN: | FileCheck %s --check-prefix=PROB90 |
11 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=50 \ | 13 ; RUN: %p2i -i %s -a -rng-seed=1 -nop-insertion -nop-insertion-percentage=50 \ |
12 ; RUN: -max-nops-per-instruction=2 -integrated-as=false \ | 14 ; RUN: -max-nops-per-instruction=2 -integrated-as=false \ |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 ; MAXNOPS2: pshufd $216, %xmm0, %xmm1 | 91 ; MAXNOPS2: pshufd $216, %xmm0, %xmm1 |
90 ; MAXNOPS2: nop # variant = 3 | 92 ; MAXNOPS2: nop # variant = 3 |
91 ; MAXNOPS2: movups %xmm1, (%esp) | 93 ; MAXNOPS2: movups %xmm1, (%esp) |
92 ; MAXNOPS2: nop # variant = 0 | 94 ; MAXNOPS2: nop # variant = 0 |
93 ; MAXNOPS2: movups (%esp), %xmm0 | 95 ; MAXNOPS2: movups (%esp), %xmm0 |
94 ; MAXNOPS2: nop # variant = 2 | 96 ; MAXNOPS2: nop # variant = 2 |
95 ; MAXNOPS2: addl $60, %esp | 97 ; MAXNOPS2: addl $60, %esp |
96 ; MAXNOPS2: nop # variant = 4 | 98 ; MAXNOPS2: nop # variant = 4 |
97 ; MAXNOPS2: ret | 99 ; MAXNOPS2: ret |
98 } | 100 } |
OLD | NEW |