value.hpp -> immediate.hpp value is going to be a real "Value" (as compiler values)
authorBenjamin Segovia <segovia.benjamin@gmail.com>
Thu, 15 Mar 2012 14:34:25 +0000 (14:34 +0000)
committerKeith Packard <keithp@keithp.com>
Fri, 10 Aug 2012 23:15:40 +0000 (16:15 -0700)
backend/kernels/loop.cl
backend/src/ir/context.hpp
backend/src/ir/function.hpp
backend/src/ir/immediate.hpp [moved from backend/src/ir/value.hpp with 100% similarity]
backend/src/ir/instruction.hpp

index 552a066..bba0705 100644 (file)
@@ -7,4 +7,3 @@ __kernel void add(__global int *dst, unsigned int x, struct big b)
   for (int i = 0; i < x; ++i) dst[i]++;
 }
 
-
index f66b20a..95920ec 100644 (file)
@@ -27,7 +27,7 @@
 #include "ir/instruction.hpp"
 #include "ir/function.hpp"
 #include "ir/register.hpp"
-#include "ir/value.hpp"
+#include "ir/immediate.hpp"
 #include "ir/unit.hpp"
 #include "sys/vector.hpp"
 #include <tuple>
index a884047..e253499 100644 (file)
@@ -24,7 +24,7 @@
 #ifndef __GBE_IR_FUNCTION_HPP__
 #define __GBE_IR_FUNCTION_HPP__
 
-#include "ir/value.hpp"
+#include "ir/immediate.hpp"
 #include "ir/register.hpp"
 #include "ir/instruction.hpp"
 #include "ir/profile.hpp"
index 4548bdc..7bde4c1 100644 (file)
@@ -25,7 +25,7 @@
 #define __GBE_IR_INSTRUCTION_HPP__
 
 #include "ir/register.hpp"
-#include "ir/value.hpp"
+#include "ir/immediate.hpp"
 #include "ir/type.hpp"
 #include "sys/platform.hpp"