mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 06:18:56 -04:00

unsigned long long builtin_unpack_vector_int128 (vector int128_t, int); vector int128_t builtin_pack_vector_int128 (unsigned long long, unsigned long long); Builtins should behave the same way as in GCC. Patch By: wuzish (Zixuan Wu) Differential Revision: https://reviews.llvm.org/D52074 llvm-svn: 342614
42 lines
1.7 KiB
C
42 lines
1.7 KiB
C
// REQUIRES: powerpc-registered-target
|
|
// RUN: not %clang_cc1 -triple powerpc64-unknown-unknown \
|
|
// RUN: -target-cpu pwr6 -emit-llvm %s -o - 2>&1 \
|
|
// RUN: | FileCheck %s
|
|
|
|
// RUN: not %clang_cc1 -triple powerpc-unknown-unknown -emit-llvm %s -o - 2>&1 \
|
|
// RUN: -target-cpu pwr7 | FileCheck %s -check-prefix=CHECK-32
|
|
|
|
vector signed __int128 vslll = {33};
|
|
|
|
void call_p7_builtins(void)
|
|
{
|
|
int a = __builtin_divwe(33, 11);
|
|
unsigned int b = __builtin_divweu(33U, 11U);
|
|
unsigned long long d = __builtin_divde(33ULL, 11ULL);
|
|
unsigned long long e = __builtin_divdeu(33ULL, 11ULL);
|
|
unsigned long long f = __builtin_bpermd(33ULL, 11ULL);
|
|
__builtin_pack_vector_int128(33ULL, 11ULL);
|
|
__builtin_unpack_vector_int128(vslll, 1);
|
|
}
|
|
|
|
// CHECK: error: this builtin is only valid on POWER7 or later CPUs
|
|
// CHECK: __builtin_divwe
|
|
// CHECK: error: this builtin is only valid on POWER7 or later CPUs
|
|
// CHECK: __builtin_divweu
|
|
// CHECK: error: this builtin is only valid on POWER7 or later CPUs
|
|
// CHECK: __builtin_divde
|
|
// CHECK: error: this builtin is only valid on POWER7 or later CPUs
|
|
// CHECK: __builtin_divdeu
|
|
// CHECK: error: this builtin is only valid on POWER7 or later CPUs
|
|
// CHECK: __builtin_bpermd
|
|
// CHECK: error: this builtin is only valid on POWER7 or later CPUs
|
|
// CHECK: __builtin_pack_vector_int128
|
|
// CHECK: error: this builtin is only valid on POWER7 or later CPUs
|
|
// CHECK: __builtin_unpack_vector_int128
|
|
// CHECK-32: error: this builtin is only available on 64-bit targets
|
|
// CHECK-32: __builtin_divde
|
|
// CHECK-32: error: this builtin is only available on 64-bit targets
|
|
// CHECK-32: __builtin_divdeu
|
|
// CHECK-32: error: this builtin is only available on 64-bit targets
|
|
// CHECK-32: __builtin_bpermd
|