Adjust to changed interfaces
authorChris Lattner <sabre@nondot.org>
Sat, 20 Nov 2004 23:53:26 +0000 (23:53 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 20 Nov 2004 23:53:26 +0000 (23:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18064 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineCodeEmitter.cpp
lib/Target/SparcV9/SparcV9CodeEmitter.cpp

index fde69697642434176a085cffb66689bc199af5e3..c64366cded07ca0e41fb0c51fbde8075b0fcbbee 100644 (file)
@@ -28,11 +28,11 @@ namespace {
     void finishFunction(MachineFunction &F) {
       std::cout << "\n";
     }
-    void startFunctionStub(const Function &F, unsigned StubSize) {
-      std::cout << "\n--- Function stub for function: " << F.getName() << "\n";
+    void startFunctionStub(unsigned StubSize) {
+      std::cout << "\n--- Function stub:\n";
     }
-    void *finishFunctionStub(const Function &F) {
-      std::cout << "\n";
+    void *finishFunctionStub(const Function *F) {
+      std::cout << "\n--- End of stub for Function\n";
       return 0;
     }
     
@@ -105,11 +105,11 @@ namespace {
       MCE.emitConstantPool(MCP);
     }
 
-    void startFunctionStub(const Function &F, unsigned StubSize) {
-      MCE.startFunctionStub(F, StubSize);
+    void startFunctionStub(unsigned StubSize) {
+      MCE.startFunctionStub(StubSize);
     }
 
-    void *finishFunctionStub(const Function &F) {
+    void *finishFunctionStub(const Function *F) {
       return MCE.finishFunctionStub(F);
     }
     
index fd53d576852220f0ed88a8193a82c39f6f2b8bd3..fccc3e7cfaaea052bea9d320f00246213658c67a 100644 (file)
@@ -420,7 +420,7 @@ void JITResolver::CompilationCallback() {
 /// directly.
 ///
 uint64_t JITResolver::emitStubForFunction(Function *F) {
-  MCE.startFunctionStub(*F, 44);
+  MCE.startFunctionStub(44);
 
   DEBUG(std::cerr << "Emitting stub at addr: 0x" 
                   << std::hex << MCE.getCurrentPCValue() << "\n");
@@ -461,7 +461,7 @@ uint64_t JITResolver::emitStubForFunction(Function *F) {
   }
 
   SparcV9.emitWord(0xDEADBEEF); // marker so that we know it's really a stub
-  return (intptr_t)MCE.finishFunctionStub(*F)+4; /* 1 instr past the restore */
+  return (intptr_t)MCE.finishFunctionStub(F)+4; /* 1 instr past the restore */
 }
 
 SparcV9CodeEmitter::SparcV9CodeEmitter(TargetMachine &tm,