summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineCodeEmitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/MachineCodeEmitter.cpp')
-rw-r--r--lib/CodeGen/MachineCodeEmitter.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp
index d28fdeebbc..dc2d0d658b 100644
--- a/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/lib/CodeGen/MachineCodeEmitter.cpp
@@ -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 << "> ";
+ }
};
}