brintos

brintos / llvm-project-archived public Read only

0
0
Text · 889 B · 0991f11 Raw
26 lines · plain
1; RUN: llc -verify-machineinstrs -mattr=-vsx -mattr=+altivec -mcpu=pwr7 < %s | FileCheck %s2; RUN: llc -verify-machineinstrs -mattr=+vsx -mattr=+altivec -mcpu=pwr7 < %s | FileCheck -check-prefix=CHECK-VSX %s3target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64"4target triple = "powerpc64-unknown-linux-gnu"5 6define i32 @test(<16 x i8> %v) nounwind {7entry:8  %0 = bitcast <16 x i8> %v to i1289  %1 = lshr i128 %0, 9610  %2 = trunc i128 %1 to i3211  ret i32 %212}13 14; Verify that bitcast handles big-endian platforms correctly15; by checking we load the result from the correct offset16 17; CHECK: addi [[REGISTER:[0-9]+]], 1, -1618; CHECK: stvx 2, 0, [[REGISTER]]19; CHECK: lwz 3, -16(1)20; CHECK: blr21 22; CHECK-VSX: addi [[REGISTER:[0-9]+]], 1, -1623; CHECK-VSX: stxvd2x 34, 0, [[REGISTER]]24; CHECK-VSX: lwz 3, -16(1)25; CHECK-VSX: blr26