diff options
Diffstat (limited to 'test/CodeGen/Hexagon')
-rw-r--r-- | test/CodeGen/Hexagon/convertdptoint.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/convertdptoll.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/convertsptoint.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/convertsptoll.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/dadd.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/dmul.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/doubleconvert-ieee-rnd-near.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/dsub.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/fadd.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/fmul.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/fsub.ll | 8 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/hasfp-crash1.ll | 82 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/hasfp-crash2.ll | 83 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/hvx-nontemporal.ll | 28 | ||||
-rw-r--r-- | test/CodeGen/Hexagon/target-flag-ext.mir | 24 |
15 files changed, 255 insertions, 38 deletions
diff --git a/test/CodeGen/Hexagon/convertdptoint.ll b/test/CodeGen/Hexagon/convertdptoint.ll index a09c2fd14b120..adf76e5dc82eb 100644 --- a/test/CodeGen/Hexagon/convertdptoint.ll +++ b/test/CodeGen/Hexagon/convertdptoint.ll @@ -12,10 +12,10 @@ entry: %b = alloca double, align 8 %c = alloca double, align 8 store i32 0, i32* %retval - store double 1.540000e+01, double* %a, align 8 - store double 9.100000e+00, double* %b, align 8 - %0 = load double, double* %a, align 8 - %1 = load double, double* %b, align 8 + store volatile double 1.540000e+01, double* %a, align 8 + store volatile double 9.100000e+00, double* %b, align 8 + %0 = load volatile double, double* %a, align 8 + %1 = load volatile double, double* %b, align 8 %add = fadd double %0, %1 store double %add, double* %c, align 8 %2 = load double, double* %c, align 8 diff --git a/test/CodeGen/Hexagon/convertdptoll.ll b/test/CodeGen/Hexagon/convertdptoll.ll index f46d46cf76b18..6b5bf56a248bc 100644 --- a/test/CodeGen/Hexagon/convertdptoll.ll +++ b/test/CodeGen/Hexagon/convertdptoll.ll @@ -17,8 +17,8 @@ entry: %0 = load double, double* %a, align 8 %1 = load double, double* %b, align 8 %add = fadd double %0, %1 - store double %add, double* %c, align 8 - %2 = load double, double* %c, align 8 + store volatile double %add, double* %c, align 8 + %2 = load volatile double, double* %c, align 8 %conv = fptosi double %2 to i64 store i64 %conv, i64* %i, align 8 %3 = load i64, i64* %i, align 8 diff --git a/test/CodeGen/Hexagon/convertsptoint.ll b/test/CodeGen/Hexagon/convertsptoint.ll index 7593e57d852f4..939b3b06a8c79 100644 --- a/test/CodeGen/Hexagon/convertsptoint.ll +++ b/test/CodeGen/Hexagon/convertsptoint.ll @@ -17,8 +17,8 @@ entry: %0 = load float, float* %a, align 4 %1 = load float, float* %b, align 4 %add = fadd float %0, %1 - store float %add, float* %c, align 4 - %2 = load float, float* %c, align 4 + store volatile float %add, float* %c, align 4 + %2 = load volatile float, float* %c, align 4 %conv = fptosi float %2 to i32 store i32 %conv, i32* %i, align 4 %3 = load i32, i32* %i, align 4 diff --git a/test/CodeGen/Hexagon/convertsptoll.ll b/test/CodeGen/Hexagon/convertsptoll.ll index d8432cbc812bc..f540397ccf5e5 100644 --- a/test/CodeGen/Hexagon/convertsptoll.ll +++ b/test/CodeGen/Hexagon/convertsptoll.ll @@ -17,8 +17,8 @@ entry: %0 = load float, float* %a, align 4 %1 = load float, float* %b, align 4 %add = fadd float %0, %1 - store float %add, float* %c, align 4 - %2 = load float, float* %c, align 4 + store volatile float %add, float* %c, align 4 + %2 = load volatile float, float* %c, align 4 %conv = fptosi float %2 to i64 store i64 %conv, i64* %i, align 8 %3 = load i64, i64* %i, align 8 diff --git a/test/CodeGen/Hexagon/dadd.ll b/test/CodeGen/Hexagon/dadd.ll index 5fcd705bab232..3068f499d12df 100644 --- a/test/CodeGen/Hexagon/dadd.ll +++ b/test/CodeGen/Hexagon/dadd.ll @@ -9,10 +9,10 @@ entry: %a = alloca double, align 8 %b = alloca double, align 8 %c = alloca double, align 8 - store double 1.540000e+01, double* %a, align 8 - store double 9.100000e+00, double* %b, align 8 - %0 = load double, double* %a, align 8 - %1 = load double, double* %b, align 8 + store volatile double 1.540000e+01, double* %a, align 8 + store volatile double 9.100000e+00, double* %b, align 8 + %0 = load volatile double, double* %a, align 8 + %1 = load volatile double, double* %b, align 8 %add = fadd double %0, %1 store double %add, double* %c, align 8 ret i32 0 diff --git a/test/CodeGen/Hexagon/dmul.ll b/test/CodeGen/Hexagon/dmul.ll index 1b79e0aa7d701..a6cf62b0c0aae 100644 --- a/test/CodeGen/Hexagon/dmul.ll +++ b/test/CodeGen/Hexagon/dmul.ll @@ -8,10 +8,10 @@ entry: %a = alloca double, align 8 %b = alloca double, align 8 %c = alloca double, align 8 - store double 1.540000e+01, double* %a, align 8 - store double 9.100000e+00, double* %b, align 8 - %0 = load double, double* %b, align 8 - %1 = load double, double* %a, align 8 + store volatile double 1.540000e+01, double* %a, align 8 + store volatile double 9.100000e+00, double* %b, align 8 + %0 = load volatile double, double* %b, align 8 + %1 = load volatile double, double* %a, align 8 %mul = fmul double %0, %1 store double %mul, double* %c, align 8 ret i32 0 diff --git a/test/CodeGen/Hexagon/doubleconvert-ieee-rnd-near.ll b/test/CodeGen/Hexagon/doubleconvert-ieee-rnd-near.ll index 6bf8224904ec0..ccc287c5f2bcb 100644 --- a/test/CodeGen/Hexagon/doubleconvert-ieee-rnd-near.ll +++ b/test/CodeGen/Hexagon/doubleconvert-ieee-rnd-near.ll @@ -12,10 +12,10 @@ entry: %b = alloca double, align 8 %c = alloca double, align 8 store i32 0, i32* %retval - store double 1.540000e+01, double* %a, align 8 - store double 9.100000e+00, double* %b, align 8 - %0 = load double, double* %a, align 8 - %1 = load double, double* %b, align 8 + store volatile double 1.540000e+01, double* %a, align 8 + store volatile double 9.100000e+00, double* %b, align 8 + %0 = load volatile double, double* %a, align 8 + %1 = load volatile double, double* %b, align 8 %add = fadd double %0, %1 store double %add, double* %c, align 8 %2 = load double, double* %c, align 8 diff --git a/test/CodeGen/Hexagon/dsub.ll b/test/CodeGen/Hexagon/dsub.ll index 8b37301d84fbd..d7e44b307cf8d 100644 --- a/test/CodeGen/Hexagon/dsub.ll +++ b/test/CodeGen/Hexagon/dsub.ll @@ -8,10 +8,10 @@ entry: %a = alloca double, align 8 %b = alloca double, align 8 %c = alloca double, align 8 - store double 1.540000e+01, double* %a, align 8 - store double 9.100000e+00, double* %b, align 8 - %0 = load double, double* %b, align 8 - %1 = load double, double* %a, align 8 + store volatile double 1.540000e+01, double* %a, align 8 + store volatile double 9.100000e+00, double* %b, align 8 + %0 = load volatile double, double* %b, align 8 + %1 = load volatile double, double* %a, align 8 %sub = fsub double %0, %1 store double %sub, double* %c, align 8 ret i32 0 diff --git a/test/CodeGen/Hexagon/fadd.ll b/test/CodeGen/Hexagon/fadd.ll index 0418c1724f5bd..65c6182dcc77f 100644 --- a/test/CodeGen/Hexagon/fadd.ll +++ b/test/CodeGen/Hexagon/fadd.ll @@ -8,10 +8,10 @@ entry: %a = alloca float, align 4 %b = alloca float, align 4 %c = alloca float, align 4 - store float 0x402ECCCCC0000000, float* %a, align 4 - store float 0x4022333340000000, float* %b, align 4 - %0 = load float, float* %a, align 4 - %1 = load float, float* %b, align 4 + store volatile float 0x402ECCCCC0000000, float* %a, align 4 + store volatile float 0x4022333340000000, float* %b, align 4 + %0 = load volatile float, float* %a, align 4 + %1 = load volatile float, float* %b, align 4 %add = fadd float %0, %1 store float %add, float* %c, align 4 ret i32 0 diff --git a/test/CodeGen/Hexagon/fmul.ll b/test/CodeGen/Hexagon/fmul.ll index 552f98ec7a53a..e20e293c0a137 100644 --- a/test/CodeGen/Hexagon/fmul.ll +++ b/test/CodeGen/Hexagon/fmul.ll @@ -9,10 +9,10 @@ entry: %a = alloca float, align 4 %b = alloca float, align 4 %c = alloca float, align 4 - store float 0x402ECCCCC0000000, float* %a, align 4 - store float 0x4022333340000000, float* %b, align 4 - %0 = load float, float* %b, align 4 - %1 = load float, float* %a, align 4 + store volatile float 0x402ECCCCC0000000, float* %a, align 4 + store volatile float 0x4022333340000000, float* %b, align 4 + %0 = load volatile float, float* %b, align 4 + %1 = load volatile float, float* %a, align 4 %mul = fmul float %0, %1 store float %mul, float* %c, align 4 ret i32 0 diff --git a/test/CodeGen/Hexagon/fsub.ll b/test/CodeGen/Hexagon/fsub.ll index d7b0e2f65b33c..e9a1fa3d192bc 100644 --- a/test/CodeGen/Hexagon/fsub.ll +++ b/test/CodeGen/Hexagon/fsub.ll @@ -8,10 +8,10 @@ entry: %a = alloca float, align 4 %b = alloca float, align 4 %c = alloca float, align 4 - store float 0x402ECCCCC0000000, float* %a, align 4 - store float 0x4022333340000000, float* %b, align 4 - %0 = load float, float* %b, align 4 - %1 = load float, float* %a, align 4 + store volatile float 0x402ECCCCC0000000, float* %a, align 4 + store volatile float 0x4022333340000000, float* %b, align 4 + %0 = load volatile float, float* %b, align 4 + %1 = load volatile float, float* %a, align 4 %sub = fsub float %0, %1 store float %sub, float* %c, align 4 ret i32 0 diff --git a/test/CodeGen/Hexagon/hasfp-crash1.ll b/test/CodeGen/Hexagon/hasfp-crash1.ll new file mode 100644 index 0000000000000..1154a7117a70a --- /dev/null +++ b/test/CodeGen/Hexagon/hasfp-crash1.ll @@ -0,0 +1,82 @@ +; RUN: llc -march=hexagon < %s | FileCheck %s +; +; Check that this testcase does not crash. +; CHECK: jumpr r31 + +target triple = "hexagon" + +; Function Attrs: nounwind +declare i32 @foo0(i32*, i32, i64, i32, i8 zeroext, i8 zeroext, i32) local_unnamed_addr #0 + +; Function Attrs: nounwind +define i32 @foo1(i32* %a0, i32 %a1, i32 %a2, i32 %a3, i8 zeroext %a4, i8 zeroext %a5, i32 %a6) local_unnamed_addr #0 !dbg !33 { +entry: + tail call void @llvm.dbg.value(metadata i32 %a6, i64 0, metadata !51, metadata !52), !dbg !53 + ret i32 undef, !dbg !54 +} + +; Function Attrs: nounwind readnone speculatable +declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #1 + +attributes #0 = { nounwind "disable-tail-calls"="true" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "stack-protector-buffer-size"="8" "target-cpu"="hexagonv5" "target-features"="-hvx-double,-long-calls" } +attributes #1 = { nounwind readnone speculatable } + +!llvm.dbg.cu = !{!0} +!llvm.module.flags = !{!26, !27} +!llvm.linker.options = !{!29, !30, !31, !32, !29, !30, !31, !32} + +!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "Clang", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !22) +!1 = !DIFile(filename: "foo.i", directory: "/path") +!2 = !{!3, !16} +!3 = !DICompositeType(tag: DW_TAG_enumeration_type, file: !4, line: 122, size: 8, elements: !5) +!4 = !DIFile(filename: "foo.h", directory: "/path") +!5 = !{!6, !7, !8, !9, !10, !11, !12, !13, !14, !15} +!6 = !DIEnumerator(name: "E0", value: 7) +!7 = !DIEnumerator(name: "E1", value: 6) +!8 = !DIEnumerator(name: "E2", value: 5) +!9 = !DIEnumerator(name: "E3", value: 0) +!10 = !DIEnumerator(name: "E4", value: 1) +!11 = !DIEnumerator(name: "E5", value: 7) +!12 = !DIEnumerator(name: "E6", value: 5) +!13 = !DIEnumerator(name: "E7", value: 4) +!14 = !DIEnumerator(name: "E8", value: 4) +!15 = !DIEnumerator(name: "E9", value: 10) +!16 = !DICompositeType(tag: DW_TAG_enumeration_type, file: !4, line: 136, size: 8, elements: !17) +!17 = !{!18, !19, !20, !21} +!18 = !DIEnumerator(name: "F0", value: 1) +!19 = !DIEnumerator(name: "F1", value: 2) +!20 = !DIEnumerator(name: "F2", value: 4) +!21 = !DIEnumerator(name: "F3", value: 7) +!22 = !{!23, !24, !25} +!23 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned) +!24 = !DIBasicType(name: "long long unsigned int", size: 64, encoding: DW_ATE_unsigned) +!25 = !DIDerivedType(tag: DW_TAG_typedef, name: "t0_t", file: !4, line: 38, baseType: !24) +!26 = !{i32 2, !"Debug Info Version", i32 3} +!27 = !{i32 6, !"Linker Options", !28} +!28 = !{!29, !30, !31, !32} +!29 = !{!"foo0", !".text"} +!30 = !{!"foo1", !".text"} +!31 = !{!"foo2", !".text"} +!32 = !{!"foo3", !".text"} +!33 = distinct !DISubprogram(name: "foo1", scope: !34, file: !34, line: 84, type: !35, isLocal: false, isDefinition: true, scopeLine: 85, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !44) +!34 = !DIFile(filename: "foo.c", directory: "/path") +!35 = !DISubroutineType(types: !36) +!36 = !{!37, !38, !39, !40, !41, !42, !43, !37} +!37 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) +!38 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !23, size: 32) +!39 = !DIDerivedType(tag: DW_TAG_typedef, name: "t1_t", file: !4, line: 35, baseType: !23) +!40 = !DIDerivedType(tag: DW_TAG_typedef, name: "t2_t", file: !4, line: 36, baseType: !23) +!41 = !DIDerivedType(tag: DW_TAG_typedef, name: "t3_t", file: !4, line: 43, baseType: !23) +!42 = !DIDerivedType(tag: DW_TAG_typedef, name: "t4_t", file: !4, line: 133, baseType: !3) +!43 = !DIDerivedType(tag: DW_TAG_typedef, name: "t5_t", file: !4, line: 141, baseType: !16) +!44 = !{!45, !46, !47, !48, !49, !50, !51} +!45 = !DILocalVariable(name: "a0", arg: 1, scope: !33, file: !34, line: 84, type: !38) +!46 = !DILocalVariable(name: "a1", arg: 2, scope: !33, file: !34, line: 84, type: !39) +!47 = !DILocalVariable(name: "a2", arg: 3, scope: !33, file: !34, line: 84, type: !40) +!48 = !DILocalVariable(name: "a3", arg: 4, scope: !33, file: !34, line: 84, type: !41) +!49 = !DILocalVariable(name: "a4", arg: 5, scope: !33, file: !34, line: 84, type: !42) +!50 = !DILocalVariable(name: "a5", arg: 6, scope: !33, file: !34, line: 84, type: !43) +!51 = !DILocalVariable(name: "a6", arg: 7, scope: !33, file: !34, line: 84, type: !37) +!52 = !DIExpression() +!53 = !DILocation(line: 84, column: 169, scope: !33) +!54 = !DILocation(line: 86, column: 5, scope: !33) diff --git a/test/CodeGen/Hexagon/hasfp-crash2.ll b/test/CodeGen/Hexagon/hasfp-crash2.ll new file mode 100644 index 0000000000000..c8b49948ce74e --- /dev/null +++ b/test/CodeGen/Hexagon/hasfp-crash2.ll @@ -0,0 +1,83 @@ +; RUN: llc -march=hexagon < %s | FileCheck %s +; +; Check that this testcase does not crash. +; CHECK: call foo0 + +target triple = "hexagon" + +; Function Attrs: nounwind +declare void @foo0() local_unnamed_addr #0 + +; Function Attrs: nounwind +define void @foo1() local_unnamed_addr #0 !dbg !33 { +entry: + tail call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !51, metadata !52), !dbg !53 + tail call void @foo0(), !dbg !54 + ret void +} + +; Function Attrs: nounwind readnone speculatable +declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #1 + +attributes #0 = { nounwind "disable-tail-calls"="true" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "stack-protector-buffer-size"="8" "target-cpu"="hexagonv5" "target-features"="-hvx-double,-long-calls" } +attributes #1 = { nounwind readnone speculatable } + +!llvm.dbg.cu = !{!0} +!llvm.module.flags = !{!26, !27} +!llvm.linker.options = !{!29, !30, !31, !32, !29, !30, !31, !32, !29, !30, !31, !32, !29, !30, !31, !32, !29, !30, !31, !32, !29, !30, !31, !32} + +!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "Clang", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !22) +!1 = !DIFile(filename: "foo.i", directory: "/path") +!2 = !{!3, !16} +!3 = !DICompositeType(tag: DW_TAG_enumeration_type, file: !4, line: 122, size: 8, elements: !5) +!4 = !DIFile(filename: "foo.h", directory: "/path") +!5 = !{!6, !7, !8, !9, !10, !11, !12, !13, !14, !15} +!6 = !DIEnumerator(name: "E0", value: 7) +!7 = !DIEnumerator(name: "E1", value: 6) +!8 = !DIEnumerator(name: "E2", value: 5) +!9 = !DIEnumerator(name: "E3", value: 0) +!10 = !DIEnumerator(name: "E4", value: 1) +!11 = !DIEnumerator(name: "E5", value: 7) +!12 = !DIEnumerator(name: "E6", value: 5) +!13 = !DIEnumerator(name: "E7", value: 4) +!14 = !DIEnumerator(name: "E8", value: 4) +!15 = !DIEnumerator(name: "E9", value: 10) +!16 = !DICompositeType(tag: DW_TAG_enumeration_type, file: !4, line: 136, size: 8, elements: !17) +!17 = !{!18, !19, !20, !21} +!18 = !DIEnumerator(name: "F0", value: 1) +!19 = !DIEnumerator(name: "F1", value: 2) +!20 = !DIEnumerator(name: "F2", value: 4) +!21 = !DIEnumerator(name: "F3", value: 7) +!22 = !{!23, !24, !25} +!23 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned) +!24 = !DIBasicType(name: "long long unsigned int", size: 64, encoding: DW_ATE_unsigned) +!25 = !DIDerivedType(tag: DW_TAG_typedef, name: "t0_t", file: !4, line: 38, baseType: !24) +!26 = !{i32 2, !"Debug Info Version", i32 3} +!27 = !{i32 6, !"Linker Options", !28} +!28 = !{!29, !30, !31, !32} +!29 = !{!"foo0", !".text"} +!30 = !{!"foo1", !".text"} +!31 = !{!"foo2", !".text"} +!32 = !{!"foo3", !".text"} +!33 = distinct !DISubprogram(name: "foo1", scope: !34, file: !34, line: 84, type: !35, isLocal: false, isDefinition: true, scopeLine: 85, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !44) +!34 = !DIFile(filename: "foo.c", directory: "/path") +!35 = !DISubroutineType(types: !36) +!36 = !{!37, !38, !39, !40, !41, !42, !43, !37} +!37 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) +!38 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !23, size: 32) +!39 = !DIDerivedType(tag: DW_TAG_typedef, name: "t1_t", file: !4, line: 35, baseType: !23) +!40 = !DIDerivedType(tag: DW_TAG_typedef, name: "t2_t", file: !4, line: 36, baseType: !23) +!41 = !DIDerivedType(tag: DW_TAG_typedef, name: "t3_t", file: !4, line: 43, baseType: !23) +!42 = !DIDerivedType(tag: DW_TAG_typedef, name: "t4_t", file: !4, line: 133, baseType: !3) +!43 = !DIDerivedType(tag: DW_TAG_typedef, name: "t5_t", file: !4, line: 141, baseType: !16) +!44 = !{!45, !46, !47, !48, !49, !50, !51} +!45 = !DILocalVariable(name: "a0", arg: 1, scope: !33, file: !34, line: 84, type: !38) +!46 = !DILocalVariable(name: "a1", arg: 2, scope: !33, file: !34, line: 84, type: !39) +!47 = !DILocalVariable(name: "a2", arg: 3, scope: !33, file: !34, line: 84, type: !40) +!48 = !DILocalVariable(name: "a3", arg: 4, scope: !33, file: !34, line: 84, type: !41) +!49 = !DILocalVariable(name: "a4", arg: 5, scope: !33, file: !34, line: 84, type: !42) +!50 = !DILocalVariable(name: "a5", arg: 6, scope: !33, file: !34, line: 84, type: !43) +!51 = !DILocalVariable(name: "a6", arg: 7, scope: !33, file: !34, line: 84, type: !37) +!52 = !DIExpression() +!53 = !DILocation(line: 84, column: 169, scope: !33) +!54 = !DILocation(line: 86, column: 12, scope: !33) diff --git a/test/CodeGen/Hexagon/hvx-nontemporal.ll b/test/CodeGen/Hexagon/hvx-nontemporal.ll new file mode 100644 index 0000000000000..98c5ef4809b08 --- /dev/null +++ b/test/CodeGen/Hexagon/hvx-nontemporal.ll @@ -0,0 +1,28 @@ +; RUN: llc -march=hexagon < %s | FileCheck %s +target triple = "hexagon" + +; Function Attrs: norecurse nounwind +define void @test(<32 x i32>* nocapture readonly %x, <32 x i32>* nocapture readnone %y, <32 x i32>* nocapture %a, <32 x i32>* nocapture %b) #0 { +entry: +; CHECK: v0 = vmem(r0+#7):nt + %add.ptr = getelementptr inbounds <32 x i32>, <32 x i32>* %x, i32 7 + %0 = load <32 x i32>, <32 x i32>* %add.ptr, align 128, !tbaa !1, !nontemporal !4 + +; CHECK: v1.cur = vmem(r2+#0):nt + %1 = load <32 x i32>, <32 x i32>* %a, align 128, !tbaa !1, !nontemporal !4 + +; CHECK: vmem(r3+#3):nt = v1 + %add.ptr2 = getelementptr inbounds <32 x i32>, <32 x i32>* %b, i32 3 + store <32 x i32> %1, <32 x i32>* %add.ptr2, align 128, !tbaa !1, !nontemporal !4 + +; CHECK: vmem(r2+#0):nt = v0 + store <32 x i32> %0, <32 x i32>* %a, align 128, !tbaa !1, !nontemporal !4 + ret void +} + +attributes #0 = { norecurse nounwind "target-cpu"="hexagonv60" "target-features"="+hvx,+hvx-double" } + +!1 = !{!2, !2, i64 0} +!2 = !{!"omnipotent char", !3, i64 0} +!3 = !{!"Simple C/C++ TBAA"} +!4 = !{i32 1} diff --git a/test/CodeGen/Hexagon/target-flag-ext.mir b/test/CodeGen/Hexagon/target-flag-ext.mir new file mode 100644 index 0000000000000..49e0d2870e00f --- /dev/null +++ b/test/CodeGen/Hexagon/target-flag-ext.mir @@ -0,0 +1,24 @@ +# RUN: llc -march=hexagon -run-pass hexagon-packetizer -o - %s | FileCheck %s +--- +name: fred +tracksRegLiveness: true + +body: | + bb.0: + ; Check that all these instructions go in the same packet. This is to + ; make sure that a target flag (other than HMOTF_ConstExtend) on an + ; operand will not be interpreted as a constant-extender flag. + ; The combination used below (pcrel + 0) does not technically make sense, + ; but combinations that do make sense require constant extending, so + ; testing this is not possible otherwise. + + ; CHECK: BUNDLE + ; CHECK-DAG: %r0 = A2_tfrsi + ; CHECK-DAG: %r1 = A2_tfrsi + ; CHECK-DAG: %r2 = A2_tfrsi + ; CHECK: } + %r0 = A2_tfrsi target-flags (hexagon-pcrel) 0 + %r1 = A2_tfrsi target-flags (hexagon-pcrel) 0 + %r2 = A2_tfrsi target-flags (hexagon-pcrel) 0 +... + |