brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · 51c0339 Raw
38 lines · plain
1; RUN: llc -mtriple=hexagon < %s | FileCheck %s2 3; Check that this testcase compiles successfully.4; Because l2fetch has mayLoad/mayStore flags on it, the packetizer5; was tricked into thinking that it's a store. The v65-specific6; code dealing with mem_shuff allowed it to be packetized together7; with the load.8 9; CHECK: l2fetch10 11target triple = "hexagon"12 13@g0 = external global [32768 x i8], align 814@g1 = external local_unnamed_addr global [15 x ptr], align 815 16; Function Attrs: nounwind17define void @f0() local_unnamed_addr #0 {18b0:19  %ext = sext i8 ptrtoint (ptr getelementptr inbounds ([32768 x i8], ptr @g0, i32 0, i32 10000) to i8) to i3220  %and = and i32 %ext, -6553621  %ptr = inttoptr i32 %and to ptr22  store ptr %ptr, ptr getelementptr inbounds ([15 x ptr], ptr @g1, i32 0, i32 1), align 423  store ptr %ptr, ptr getelementptr inbounds ([15 x ptr], ptr @g1, i32 0, i32 6), align 824  tail call void @f1()25  %v0 = load ptr, ptr @g1, align 826  tail call void @llvm.hexagon.Y5.l2fetch(ptr %v0, i64 -9223372036854775808)27  ret void28}29 30; Function Attrs: nounwind31declare void @llvm.hexagon.Y5.l2fetch(ptr, i64) #132 33; Function Attrs: nounwind34declare void @f1() #135 36attributes #0 = { nounwind "target-cpu"="hexagonv65" }37attributes #1 = { nounwind }38