1//===- subzero/crosstest/test_select.h - Test prototypes -----*- C++ -*----===//
2//
3//                        The Subzero Code Generator
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the function prototypes for cross testing the select
11// bitcode instruction.
12//
13//===----------------------------------------------------------------------===//
14
15#include "vectors.h"
16
17v4f32 select(v4si32 cond, v4f32 val1, v4f32 val2);
18v4si32 select(v4si32 cond, v4si32 val1, v4si32 val2);
19v4ui32 select(v4si32 cond, v4ui32 val1, v4ui32 val2);
20v8si16 select(v8si16 cond, v8si16 val1, v8si16 val2);
21v8ui16 select(v8si16 cond, v8ui16 val1, v8ui16 val2);
22v16si8 select(v16si8 cond, v16si8 val1, v16si8 val2);
23v16ui8 select(v16si8 cond, v16ui8 val1, v16ui8 val2);
24v4si32 select_i1(v4si32 cond, v4si32 val1, v4si32 val2);
25v8si16 select_i1(v8si16 cond, v8si16 val1, v8si16 val2);
26v16si8 select_i1(v16si8 cond, v16si8 val1, v16si8 val2);
27