| OLD | NEW |
| 1 ; This is a smoke test of random number generator. | 1 ; This is a smoke test of random number generator. |
| 2 ; The random number generators for different randomization passes should be | 2 ; The random number generators for different randomization passes should be |
| 3 ; decoupled. The random number used in one randomization pass should not be | 3 ; decoupled. The random number used in one randomization pass should not be |
| 4 ; influenced by the existence of other randomization passes. | 4 ; influenced by the existence of other randomization passes. |
| 5 | 5 |
| 6 ; REQUIRES: allow_dump, target_X8632 | 6 ; REQUIRES: allow_dump, target_X8632 |
| 7 | 7 |
| 8 ; Command for checking constant blinding (Need to turn off nop-insertion) | 8 ; Command for checking constant blinding (Need to turn off nop-insertion) |
| 9 ; RUN: %p2i --target x8632 -i %s --filetype=obj --disassemble --args -O2 \ | 9 ; RUN: %p2i --target x8632 -i %s --filetype=obj --disassemble --args -O2 \ |
| 10 ; RUN: -sz-seed=1 -randomize-pool-immediates=randomize \ | 10 ; RUN: -sz-seed=1 -randomize-pool-immediates=randomize \ |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 ; GLOBALVARS-LABEL: ArrayInitPartial | 247 ; GLOBALVARS-LABEL: ArrayInitPartial |
| 248 ; GLOBALVARS-LABEL: PrimitiveUninit | 248 ; GLOBALVARS-LABEL: PrimitiveUninit |
| 249 ; GLOBALVARS-LABEL: ArrayUninit | 249 ; GLOBALVARS-LABEL: ArrayUninit |
| 250 ; GLOBALVARS-LABEL: PrimitiveInitStatic | 250 ; GLOBALVARS-LABEL: PrimitiveInitStatic |
| 251 ; GLOBALVARS-LABEL: ArrayUninitConstDouble | 251 ; GLOBALVARS-LABEL: ArrayUninitConstDouble |
| 252 ; GLOBALVARS-LABEL: ArrayUninitConstInt | 252 ; GLOBALVARS-LABEL: ArrayUninitConstInt |
| 253 ; GLOBALVARS-LABEL: PrimitiveInitConst | 253 ; GLOBALVARS-LABEL: PrimitiveInitConst |
| 254 | 254 |
| 255 ; Check for pooled constant reordering | 255 ; Check for pooled constant reordering |
| 256 ; POOLEDCONSTANTS-LABEL: .rodata.cst4 | 256 ; POOLEDCONSTANTS-LABEL: .rodata.cst4 |
| 257 ; POOLEDCONSTANTS: 0000803e 0000803f 00000000 0000003f | 257 ; POOLEDCONSTANTS: 0000803e 0000803f 0000003f 00008040 |
| 258 ; POOLEDCONSTANTS: 00008040 00000040 | 258 ; POOLEDCONSTANTS: 00000040 |
| OLD | NEW |