blob: c6208121902c9fc5e6b939f73f83cf7fa7052d8a [file] [log] [blame]
Scott Michel610589f2007-12-03 23:14:43 +00001//===-- SPU.h - Top-level interface for Cell SPU Target ----------*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Scott Michel610589f2007-12-03 23:14:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the entry points for global functions defined in the LLVM
11// Cell SPU back-end.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_IBMCELLSPU_H
16#define LLVM_TARGET_IBMCELLSPU_H
17
Chandler Carruth1ec7df12009-10-26 01:35:46 +000018#include "llvm/System/DataTypes.h"
Bill Wendling5ed22ac2009-04-29 23:29:43 +000019#include "llvm/Target/TargetMachine.h"
Scott Michel610589f2007-12-03 23:14:43 +000020
21namespace llvm {
22 class SPUTargetMachine;
23 class FunctionPass;
David Greene302008d2009-07-14 20:18:05 +000024 class formatted_raw_ostream;
Scott Michel610589f2007-12-03 23:14:43 +000025
26 FunctionPass *createSPUISelDag(SPUTargetMachine &TM);
Scott Michel610589f2007-12-03 23:14:43 +000027
Scott Michel7b5f7ed2007-12-15 00:38:50 +000028 /*--== Utility functions/predicates/etc used all over the place: --==*/
Scott Michel610589f2007-12-03 23:14:43 +000029 //! Predicate test for a signed 10-bit value
30 /*!
31 \param Value The input value to be tested
32
33 This predicate tests for a signed 10-bit value, returning the 10-bit value
34 as a short if true.
35 */
Duncan Sands43388632008-10-08 07:44:52 +000036 template<typename T>
37 inline bool isS10Constant(T Value);
38
39 template<>
40 inline bool isS10Constant<short>(short Value) {
Scott Michel610589f2007-12-03 23:14:43 +000041 int SExtValue = ((int) Value << (32 - 10)) >> (32 - 10);
42 return ((Value > 0 && Value <= (1 << 9) - 1)
Scott Michel5a6f17b2008-01-30 02:55:46 +000043 || (Value < 0 && (short) SExtValue == Value));
Scott Michel610589f2007-12-03 23:14:43 +000044 }
45
Duncan Sands43388632008-10-08 07:44:52 +000046 template<>
47 inline bool isS10Constant<int>(int Value) {
Scott Michel610589f2007-12-03 23:14:43 +000048 return (Value >= -(1 << 9) && Value <= (1 << 9) - 1);
49 }
50
Duncan Sands43388632008-10-08 07:44:52 +000051 template<>
52 inline bool isS10Constant<uint32_t>(uint32_t Value) {
Scott Michel610589f2007-12-03 23:14:43 +000053 return (Value <= ((1 << 9) - 1));
54 }
55
Duncan Sands43388632008-10-08 07:44:52 +000056 template<>
57 inline bool isS10Constant<int64_t>(int64_t Value) {
Scott Michel610589f2007-12-03 23:14:43 +000058 return (Value >= -(1 << 9) && Value <= (1 << 9) - 1);
59 }
60
Duncan Sands43388632008-10-08 07:44:52 +000061 template<>
62 inline bool isS10Constant<uint64_t>(uint64_t Value) {
Scott Michel610589f2007-12-03 23:14:43 +000063 return (Value <= ((1 << 9) - 1));
64 }
Scott Michel7b5f7ed2007-12-15 00:38:50 +000065
66 //! Predicate test for an unsigned 10-bit value
67 /*!
68 \param Value The input value to be tested
Scott Michel7b5f7ed2007-12-15 00:38:50 +000069 */
70 inline bool isU10Constant(short Value) {
71 return (Value == (Value & 0x3ff));
72 }
73
74 inline bool isU10Constant(int Value) {
75 return (Value == (Value & 0x3ff));
76 }
77
78 inline bool isU10Constant(uint32_t Value) {
79 return (Value == (Value & 0x3ff));
80 }
81
82 inline bool isU10Constant(int64_t Value) {
83 return (Value == (Value & 0x3ff));
84 }
85
86 inline bool isU10Constant(uint64_t Value) {
87 return (Value == (Value & 0x3ff));
88 }
Daniel Dunbar0b0441e2009-07-18 23:03:22 +000089
Scott Michelcb8509c2010-02-25 01:53:17 +000090 //! Predicate test for a signed 14-bit value
91 /*!
92 \param Value The input value to be tested
93 */
94 template<typename T>
95 inline bool isS14Constant(T Value);
96
97 template<>
98 inline bool isS14Constant<short>(short Value) {
99 return (Value >= -(1 << 13) && Value <= (1 << 13) - 1);
100 }
101
102 template<>
103 inline bool isS14Constant<int>(int Value) {
104 return (Value >= -(1 << 13) && Value <= (1 << 13) - 1);
105 }
106
107 template<>
108 inline bool isS14Constant<uint32_t>(uint32_t Value) {
109 return (Value <= ((1 << 13) - 1));
110 }
111
112 template<>
113 inline bool isS14Constant<int64_t>(int64_t Value) {
114 return (Value >= -(1 << 13) && Value <= (1 << 13) - 1);
115 }
116
117 template<>
118 inline bool isS14Constant<uint64_t>(uint64_t Value) {
119 return (Value <= ((1 << 13) - 1));
120 }
121
122 //! Predicate test for a signed 16-bit value
123 /*!
124 \param Value The input value to be tested
125 */
126 template<typename T>
127 inline bool isS16Constant(T Value);
128
129 template<>
130 inline bool isS16Constant<short>(short Value) {
131 return true;
132 }
133
134 template<>
135 inline bool isS16Constant<int>(int Value) {
136 return (Value >= -(1 << 15) && Value <= (1 << 15) - 1);
137 }
138
139 template<>
140 inline bool isS16Constant<uint32_t>(uint32_t Value) {
141 return (Value <= ((1 << 15) - 1));
142 }
143
144 template<>
145 inline bool isS16Constant<int64_t>(int64_t Value) {
146 return (Value >= -(1 << 15) && Value <= (1 << 15) - 1);
147 }
148
149 template<>
150 inline bool isS16Constant<uint64_t>(uint64_t Value) {
151 return (Value <= ((1 << 15) - 1));
152 }
153
Daniel Dunbar0b0441e2009-07-18 23:03:22 +0000154 extern Target TheCellSPUTarget;
155
Scott Michel610589f2007-12-03 23:14:43 +0000156}
157
158// Defines symbolic names for the SPU instructions.
159//
160#include "SPUGenInstrNames.inc"
161
162#endif /* LLVM_TARGET_IBMCELLSPU_H */