[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / ymm-ordering.ll
blob65ebbc667582a2b5dfb0eebe908d8f8e1c32b00c
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-linux -mattr=+avx | FileCheck %s
4 ; TODO: We If we stored ymm0 before ymm1, then we could execute 2nd load and 1st store in
5 ; parallel.
6 define void @test_01(i8* %src, i8* %dest) {
7 ; CHECK-LABEL: test_01:
8 ; CHECK:       # %bb.0: # %entry
9 ; CHECK-NEXT:    vmovups (%rdi), %ymm0
10 ; CHECK-NEXT:    vmovups 32(%rdi), %ymm1
11 ; CHECK-NEXT:    vmovups %ymm1, 32(%rsi)
12 ; CHECK-NEXT:    vmovups %ymm0, (%rsi)
13 ; CHECK-NEXT:    vzeroupper
14 ; CHECK-NEXT:    retq
15 entry:
16   %read = bitcast i8* %src to <64 x i8>*
17   %value = load <64 x i8>, <64 x i8>* %read, align 1
18   %write = bitcast i8* %dest to <64 x i8>*
19   store <64 x i8> %value, <64 x i8>* %write, align 1
20   ret void