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

Unified Diff: src/code-stubs.cc

Issue 1688163004: [runtime] Kill %Arguments and %ArgumentsLength. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@StringFromCharCode
Patch Set: Created 4 years, 10 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/code-stubs.h ('k') | src/compiler/linkage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 8e974424ca168fd4a80501f132898cc10267396c..5a730d37bcdacc038ef82b62c9584b4a71e95a9a 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -822,9 +822,6 @@ void StoreFastElementStub::GenerateAheadOfTime(Isolate* isolate) {
void ArgumentsAccessStub::Generate(MacroAssembler* masm) {
switch (type()) {
- case READ_ELEMENT:
- GenerateReadElement(masm);
- break;
case NEW_SLOPPY_FAST:
GenerateNewSloppyFast(masm);
break;
@@ -838,9 +835,6 @@ void ArgumentsAccessStub::Generate(MacroAssembler* masm) {
void ArgumentsAccessStub::PrintName(std::ostream& os) const { // NOLINT
os << "ArgumentsAccessStub_";
switch (type()) {
- case READ_ELEMENT:
- os << "ReadElement";
- break;
case NEW_SLOPPY_FAST:
os << "NewSloppyFast";
break;
« no previous file with comments | « src/code-stubs.h ('k') | src/compiler/linkage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698