1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
; RUN: llvm-as %s -o %t.bc
; RUN: llvm-spirv %t.bc -o %t.spv
; RUN: llvm-spirv -r %t.spv -o %t_recover.bc
; RUN: llvm-dis %t_recover.bc -o - | FileCheck %s
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024"
target triple = "spir64-unknown-unknown"
; CHECK: spir_func i1 @TestIsConstantInt32_False
; CHECK: ret i1 false
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantInt32_False(i32 %x) local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.i32(i32 %x)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantInt32_True
; CHECK: ret i1 true
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantInt32_True() local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.i32(i32 1)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantInt64_False
; CHECK: ret i1 false
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantInt64_False(i64 %x) local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.i64(i64 %x)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantInt64_True
; CHECK: ret i1 true
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantInt64_True() local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.i64(i64 1)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantF32_False
; CHECK: ret i1 false
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantF32_False(float %x) local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.f32(float %x)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantF32_True
; CHECK: ret i1 true
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantF32_True() local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.f32(float 0.5)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantF64_False
; CHECK: ret i1 false
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantF64_False(double %x) local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.f64(double %x)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantF64_True
; CHECK: ret i1 true
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantF64_True() local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.f64(double 0.5)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantVec_False
; CHECK: ret i1 false
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantVec_False(<4 x float> %x) local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.v4f32(<4 x float> %x)
ret i1 %0
}
; CHECK: spir_func i1 @TestIsConstantVec_True
; CHECK: ret i1 true
; Function Attrs: nounwind readnone
define spir_func i1 @TestIsConstantVec_True() local_unnamed_addr #0 {
entry:
%0 = tail call i1 @llvm.is.constant.v4f32(<4 x float> <float 0.5, float 0.5, float 0.5, float 0.5>)
ret i1 %0
}
; Function Attrs: nounwind readnone
declare i1 @llvm.is.constant.i32(i32) #1
; Function Attrs: nounwind readnone
declare i1 @llvm.is.constant.i64(i64) #1
; Function Attrs: nounwind readnone
declare i1 @llvm.is.constant.f32(float) #1
; Function Attrs: nounwind readnone
declare i1 @llvm.is.constant.f64(double) #1
; Function Attrs: nounwind readnone
declare i1 @llvm.is.constant.v4f32(<4 x float>) #1
attributes #0 = { nounwind readnone "correctly-rounded-divide-sqrt-fp-math"="false" "denorms-are-zero"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #1 = { nounwind readnone speculatable willreturn }
!llvm.module.flags = !{!0}
!opencl.ocl.version = !{!1}
!opencl.spir.version = !{!2}
!0 = !{i32 1, !"wchar_size", i32 4}
!1 = !{i32 1, i32 0}
!2 = !{i32 1, i32 2}
|