summaryrefslogtreecommitdiffstats
path: root/lib/Target/CellSPU/SPU.h
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-10-08 07:44:52 +0000
committerDuncan Sands <baldrick@free.fr>2008-10-08 07:44:52 +0000
commit43d9c8cd565d37410a16b2cdd62cabb3aca9926e (patch)
tree465b5e347625e465e47b1cb1f39e05a49f9f98fc /lib/Target/CellSPU/SPU.h
parent4520dd2b7b20af07d5a3e4d06d964a532044eb10 (diff)
downloadexternal_llvm-43d9c8cd565d37410a16b2cdd62cabb3aca9926e.zip
external_llvm-43d9c8cd565d37410a16b2cdd62cabb3aca9926e.tar.gz
external_llvm-43d9c8cd565d37410a16b2cdd62cabb3aca9926e.tar.bz2
Use template to distinguish between function variants.
GCC 4.4.0 gives an error on the "int" declaration for example saying that it has already been declared (using the "short" one). Using templates here allow the compiler to distinguish between the function to choose. Also, "llvm/Support/DataTypes.h" was not included, leading to error messages about not knowing "uint32_t" for example. Patch by Samuel Tardieu. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57292 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU/SPU.h')
-rw-r--r--lib/Target/CellSPU/SPU.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/lib/Target/CellSPU/SPU.h b/lib/Target/CellSPU/SPU.h
index 2d765b6..776b9bf 100644
--- a/lib/Target/CellSPU/SPU.h
+++ b/lib/Target/CellSPU/SPU.h
@@ -15,6 +15,7 @@
#ifndef LLVM_TARGET_IBMCELLSPU_H
#define LLVM_TARGET_IBMCELLSPU_H
+#include "llvm/Support/DataTypes.h"
#include <iosfwd>
namespace llvm {
@@ -33,25 +34,33 @@ namespace llvm {
This predicate tests for a signed 10-bit value, returning the 10-bit value
as a short if true.
*/
- inline bool isS10Constant(short Value) {
+ template<typename T>
+ inline bool isS10Constant(T Value);
+
+ template<>
+ inline bool isS10Constant<short>(short Value) {
int SExtValue = ((int) Value << (32 - 10)) >> (32 - 10);
return ((Value > 0 && Value <= (1 << 9) - 1)
|| (Value < 0 && (short) SExtValue == Value));
}
- inline bool isS10Constant(int Value) {
+ template<>
+ inline bool isS10Constant<int>(int Value) {
return (Value >= -(1 << 9) && Value <= (1 << 9) - 1);
}
- inline bool isS10Constant(uint32_t Value) {
+ template<>
+ inline bool isS10Constant<uint32_t>(uint32_t Value) {
return (Value <= ((1 << 9) - 1));
}
- inline bool isS10Constant(int64_t Value) {
+ template<>
+ inline bool isS10Constant<int64_t>(int64_t Value) {
return (Value >= -(1 << 9) && Value <= (1 << 9) - 1);
}
- inline bool isS10Constant(uint64_t Value) {
+ template<>
+ inline bool isS10Constant<uint64_t>(uint64_t Value) {
return (Value <= ((1 << 9) - 1));
}