Re-factored RuntimeDyld.
[oota-llvm.git] / include / llvm / ExecutionEngine / RuntimeDyld.h
index 81acc0867361258144c4bdda3388148839c5d629..aabfd0341ca5a84c49e1bc78e85040b935209e81 100644 (file)
@@ -45,19 +45,9 @@ public:
   virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
                                        unsigned SectionID) = 0;
 
-  // Allocate ActualSize bytes, or more, for the named function. Return
-  // a pointer to the allocated memory and update Size to reflect how much
-  // memory was acutally allocated.
-  virtual uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) = 0;
-
-  // Mark the end of the function, including how much of the allocated
-  // memory was actually used.
-  virtual void endFunctionBody(const char *Name, uint8_t *FunctionStart,
-                               uint8_t *FunctionEnd) = 0;
-
-  
   virtual void *getPointerToNamedFunction(const std::string &Name,
                                           bool AbortOnFailure = true) = 0;
+
 };
 
 class RuntimeDyld {