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

Side by Side Diff: tests_lit/llvm2ice_tests/arith-opt.ll

Issue 1127003003: Lower a few basic ARM binops for i{8,16,32,64}. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: added condition and target to test Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « tests_lit/llvm2ice_tests/arith.ll ('k') | tests_lit/llvm2ice_tests/function_aligned.ll » ('j') | 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 very early test that just checks the representation of i32 1 ; This is a very early test that just checks the representation of i32
2 ; arithmetic instructions. No assembly tests are done. 2 ; arithmetic instructions. No assembly tests are done.
3 3
4 ; REQUIRES: allow_dump 4 ; REQUIRES: allow_dump
5 5
6 ; RUN: %p2i -i %s --filetype=asm --args --verbose inst -threads=0 | FileCheck %s 6 ; RUN: %p2i -i %s --filetype=asm --args --verbose inst -threads=0 | FileCheck %s
7 7
8 ; TODO(jvoung): Enable test when it does not llvm::report_fatal_error.
9 ; The test runner wrappers don't handle error expected errors
10 ; so we can't just "not" the command.
11 ; RUIN: %if --need=target_ARM32 --command %p2i -i %s --filetype=asm \
12 ; RUIN: --args --verbose inst -threads=0 --target arm32 \
13 ; RUIN: | %if --need=target_ARM32 --command FileCheck %s --check-prefix ARM32
14
15 define i32 @Add(i32 %a, i32 %b) { 8 define i32 @Add(i32 %a, i32 %b) {
16 ; CHECK: define i32 @Add 9 ; CHECK: define i32 @Add
17 entry: 10 entry:
18 %add = add i32 %b, %a 11 %add = add i32 %b, %a
19 ; CHECK: add 12 ; CHECK: add
20 tail call void @Use(i32 %add) 13 tail call void @Use(i32 %add)
21 ; CHECK: call Use 14 ; CHECK: call Use
22 ret i32 %add 15 ret i32 %add
23 } 16 }
24 17
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 111
119 ; Check for a valid addressing mode in the x86-32 mul instruction when 112 ; Check for a valid addressing mode in the x86-32 mul instruction when
120 ; the second source operand is an immediate. 113 ; the second source operand is an immediate.
121 define i64 @MulImm() { 114 define i64 @MulImm() {
122 entry: 115 entry:
123 %mul = mul i64 3, 4 116 %mul = mul i64 3, 4
124 ret i64 %mul 117 ret i64 %mul
125 } 118 }
126 ; CHECK-LABEL: MulImm 119 ; CHECK-LABEL: MulImm
127 ; CHECK-NOT: mul {{[0-9]+}} 120 ; CHECK-NOT: mul {{[0-9]+}}
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/arith.ll ('k') | tests_lit/llvm2ice_tests/function_aligned.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698