forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GlobalISel][X86] G_LOAD/G_STORE pointer selection support.
Summary: [GlobalISel][X86] G_LOAD/G_STORE pointer selection support. Reviewers: zvi, guyblank Reviewed By: zvi, guyblank Subscribers: dberris, rovka, kristof.beyls, llvm-commits Differential Revision: https://reviews.llvm.org/D32217 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@301788 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Igor Breger
committed
May 1, 2017
1 parent
900da36
commit cf066a1
Showing
5 changed files
with
485 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py | ||
; RUN: llc -mtriple=i386-linux-gnu -global-isel < %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=SSE --check-prefix=SSE_FAST | ||
; RUN: llc -mtriple=i386-linux-gnu -regbankselect-greedy -global-isel < %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=SSE --check-prefix=SSE_GREEDY | ||
|
||
;TODO merge with x86-64 tests (many operations not suppored yet) | ||
|
||
define i8 @test_load_i8(i8 * %p1) { | ||
; ALL-LABEL: test_load_i8: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: movb (%eax), %al | ||
; ALL-NEXT: retl | ||
%r = load i8, i8* %p1 | ||
ret i8 %r | ||
} | ||
|
||
define i16 @test_load_i16(i16 * %p1) { | ||
; ALL-LABEL: test_load_i16: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: movzwl (%eax), %eax | ||
; ALL-NEXT: retl | ||
%r = load i16, i16* %p1 | ||
ret i16 %r | ||
} | ||
|
||
define i32 @test_load_i32(i32 * %p1) { | ||
; ALL-LABEL: test_load_i32: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: retl | ||
%r = load i32, i32* %p1 | ||
ret i32 %r | ||
} | ||
|
||
define i8 * @test_store_i8(i8 %val, i8 * %p1) { | ||
; ALL-LABEL: test_store_i8: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movb (%eax), %cl | ||
; ALL-NEXT: leal 8(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: movb %cl, (%eax) | ||
; ALL-NEXT: retl | ||
store i8 %val, i8* %p1 | ||
ret i8 * %p1; | ||
} | ||
|
||
define i16 * @test_store_i16(i16 %val, i16 * %p1) { | ||
; ALL-LABEL: test_store_i16: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movzwl (%eax), %ecx | ||
; ALL-NEXT: leal 8(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: movw %cx, (%eax) | ||
; ALL-NEXT: retl | ||
store i16 %val, i16* %p1 | ||
ret i16 * %p1; | ||
} | ||
|
||
define i32 * @test_store_i32(i32 %val, i32 * %p1) { | ||
; ALL-LABEL: test_store_i32: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %ecx | ||
; ALL-NEXT: leal 8(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: movl %ecx, (%eax) | ||
; ALL-NEXT: retl | ||
store i32 %val, i32* %p1 | ||
ret i32 * %p1; | ||
} | ||
|
||
define i32* @test_load_ptr(i32** %ptr1) { | ||
; ALL-LABEL: test_load_ptr: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: retl | ||
%p = load i32*, i32** %ptr1 | ||
ret i32* %p | ||
} | ||
|
||
define void @test_store_ptr(i32** %ptr1, i32* %a) { | ||
; ALL-LABEL: test_store_ptr: | ||
; ALL: # BB#0: | ||
; ALL-NEXT: leal 4(%esp), %eax | ||
; ALL-NEXT: movl (%eax), %eax | ||
; ALL-NEXT: leal 8(%esp), %ecx | ||
; ALL-NEXT: movl (%ecx), %ecx | ||
; ALL-NEXT: movl %ecx, (%eax) | ||
; ALL-NEXT: retl | ||
store i32* %a, i32** %ptr1 | ||
ret void | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.