Create constant expression casts instead of constant instructions if possible
[oota-llvm.git] / lib / CodeGen / MachineCodeEmitter.cpp
index d28fdeebbccfbe7bd99b237ba677e8dd8060cbcc..dc2d0d658be051aba8258e0734a8a3bd1fc7b643 100644 (file)
@@ -28,9 +28,18 @@ namespace {
     void emitPCRelativeDisp(Value *V) {
       std::cout << "<disp %" << V->getName() << ": 0xXX 0xXX 0xXX 0xXX> ";
     }
-    void emitGlobalAddress(GlobalValue *V) {
+    void emitGlobalAddress(GlobalValue *V, bool isPCRelative) {
       std::cout << "<addr %" << V->getName() << ": 0xXX 0xXX 0xXX 0xXX> ";
     }
+    void emitGlobalAddress(const std::string &Name, bool isPCRelative) {
+      std::cout << "<addr %" << Name << ": 0xXX 0xXX 0xXX 0xXX> ";
+    }
+
+    void emitFunctionConstantValueAddress(unsigned ConstantNum, int Offset) {
+      std::cout << "<addr const#" << ConstantNum;
+      if (Offset) std::cout << " + " << Offset;
+      std::cout << "> ";
+    }
   };
 }