ART: Introduce compiler data type.

Replace most uses of the runtime's Primitive in compiler
with a new class DataType. This prepares for introducing
new types, such as Uint8, that the runtime does not need
to know about.

Test: m test-art-host-gtest
Test: testrunner.py --host
Bug: 23964345
Change-Id: Iec2ad82454eec678fffcd8279a9746b90feb9b0c
diff --git a/compiler/optimizing/parallel_move_resolver.h b/compiler/optimizing/parallel_move_resolver.h
index 4278861..e6e069f 100644
--- a/compiler/optimizing/parallel_move_resolver.h
+++ b/compiler/optimizing/parallel_move_resolver.h
@@ -19,8 +19,8 @@
 
 #include "base/arena_containers.h"
 #include "base/value_object.h"
+#include "data_type.h"
 #include "locations.h"
-#include "primitive.h"
 
 namespace art {
 
@@ -177,7 +177,7 @@
 
   void UpdateMoveSource(Location from, Location to);
 
-  void AddPendingMove(Location source, Location destination, Primitive::Type type);
+  void AddPendingMove(Location source, Location destination, DataType::Type type);
 
   void DeletePendingMove(MoveOperands* move);