select.ll 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ; RUN: opt < %s -cost-model -analyze -mtriple=arm64-apple-ios -mcpu=cyclone | FileCheck %s
  2. target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:32:64-v128:32:128-a0:0:32-n32-S32"
  3. ; CHECK-LABEL: select
  4. define void @select() {
  5. ; Scalar values
  6. ; CHECK: cost of 1 {{.*}} select
  7. %v1 = select i1 undef, i8 undef, i8 undef
  8. ; CHECK: cost of 1 {{.*}} select
  9. %v2 = select i1 undef, i16 undef, i16 undef
  10. ; CHECK: cost of 1 {{.*}} select
  11. %v3 = select i1 undef, i32 undef, i32 undef
  12. ; CHECK: cost of 1 {{.*}} select
  13. %v4 = select i1 undef, i64 undef, i64 undef
  14. ; CHECK: cost of 1 {{.*}} select
  15. %v5 = select i1 undef, float undef, float undef
  16. ; CHECK: cost of 1 {{.*}} select
  17. %v6 = select i1 undef, double undef, double undef
  18. ; Vector values - check for vectors that have a high cost because they end up
  19. ; scalarized.
  20. ; CHECK: cost of 320 {{.*}} select
  21. %v13b = select <16 x i1> undef, <16 x i16> undef, <16 x i16> undef
  22. ; CHECK: cost of 160 {{.*}} select
  23. %v15b = select <8 x i1> undef, <8 x i32> undef, <8 x i32> undef
  24. ; CHECK: cost of 320 {{.*}} select
  25. %v15c = select <16 x i1> undef, <16 x i32> undef, <16 x i32> undef
  26. ; CHECK: cost of 80 {{.*}} select
  27. %v16a = select <4 x i1> undef, <4 x i64> undef, <4 x i64> undef
  28. ; CHECK: cost of 160 {{.*}} select
  29. %v16b = select <8 x i1> undef, <8 x i64> undef, <8 x i64> undef
  30. ; CHECK: cost of 320 {{.*}} select
  31. %v16c = select <16 x i1> undef, <16 x i64> undef, <16 x i64> undef
  32. ret void
  33. }