Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: src/runtime/runtime-internal.cc

Issue 1475953002: [stubs] A new approach to TF stubs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Win64 build Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/runtime/runtime.h ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « src/runtime/runtime.h ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698