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

Unified Diff: src/builtins/builtins.cc

Issue 2165633003: Revert of [Interpreter] Collect type feedback for 'new' in the bytecode handler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months 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/builtins/builtins.h ('k') | src/builtins/ia32/builtins-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins.cc
diff --git a/src/builtins/builtins.cc b/src/builtins/builtins.cc
index 538c36d38c8a27efaea750b9f0006068c2d7d795..ac8419798efc2cb62e826b913f29d49486e88126 100644
--- a/src/builtins/builtins.cc
+++ b/src/builtins/builtins.cc
@@ -4733,18 +4733,6 @@
return Handle<Code>::null();
}
-Handle<Code> Builtins::InterpreterPushArgsAndConstruct(
- CallableType function_type) {
- switch (function_type) {
- case CallableType::kJSFunction:
- return InterpreterPushArgsAndConstructFunction();
- case CallableType::kAny:
- return InterpreterPushArgsAndConstruct();
- }
- UNREACHABLE();
- return Handle<Code>::null();
-}
-
namespace {
class RelocatableArguments : public BuiltinArguments, public Relocatable {
@@ -5850,16 +5838,6 @@
CallableType::kJSFunction);
}
-void Builtins::Generate_InterpreterPushArgsAndConstruct(MacroAssembler* masm) {
- return Generate_InterpreterPushArgsAndConstructImpl(masm, CallableType::kAny);
-}
-
-void Builtins::Generate_InterpreterPushArgsAndConstructFunction(
- MacroAssembler* masm) {
- return Generate_InterpreterPushArgsAndConstructImpl(
- masm, CallableType::kJSFunction);
-}
-
void Builtins::Generate_MathMax(MacroAssembler* masm) {
Generate_MathMaxMin(masm, MathMaxMinKind::kMax);
}
« no previous file with comments | « src/builtins/builtins.h ('k') | src/builtins/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698