Index: src/runtime/runtime-internal.cc |
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc |
index a2933e5bedd2ae0f5b6312433d757e4a8bccd2dc..68bb751e20c7f482d23f4ad44cc4dbd11e21575d 100644 |
--- a/src/runtime/runtime-internal.cc |
+++ b/src/runtime/runtime-internal.cc |
@@ -386,30 +386,6 @@ RUNTIME_FUNCTION(Runtime_HarmonyToString) { |
} |
-RUNTIME_FUNCTION(Runtime_GetTypeFeedbackVector) { |
- SealHandleScope shs(isolate); |
- DCHECK(args.length() == 1); |
- CONVERT_ARG_CHECKED(JSFunction, function, 0); |
- return function->shared()->feedback_vector(); |
-} |
- |
- |
-RUNTIME_FUNCTION(Runtime_GetCallerJSFunction) { |
- SealHandleScope shs(isolate); |
- StackFrameIterator it(isolate); |
- RUNTIME_ASSERT(it.frame()->type() == StackFrame::STUB); |
- it.Advance(); |
- RUNTIME_ASSERT(it.frame()->type() == StackFrame::JAVA_SCRIPT); |
- return JavaScriptFrame::cast(it.frame())->function(); |
-} |
- |
- |
-RUNTIME_FUNCTION(Runtime_GetCodeStubExportsObject) { |
- HandleScope shs(isolate); |
- return isolate->heap()->code_stub_exports_object(); |
-} |
- |
- |
namespace { |
Handle<String> RenderCallSite(Isolate* isolate, Handle<Object> object) { |