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

Unified Diff: src/code-stubs-hydrogen.cc

Issue 14222007: Remove unnecessary BailoutIds. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 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 | « no previous file | src/hydrogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs-hydrogen.cc
diff --git a/src/code-stubs-hydrogen.cc b/src/code-stubs-hydrogen.cc
index 18dfcac11f510975bcf10c0effd500317149b9bc..02c0091889d092e05010c3756120d2513c5637af 100644
--- a/src/code-stubs-hydrogen.cc
+++ b/src/code-stubs-hydrogen.cc
@@ -217,7 +217,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() {
boilerplate,
alloc_site_mode,
FAST_ELEMENTS,
- BailoutId::StubEntry(),
0/*copy-on-write*/));
if_fixed_cow.BeginElse();
@@ -227,7 +226,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() {
boilerplate,
alloc_site_mode,
FAST_ELEMENTS,
- BailoutId::StubEntry(),
length));
if_fixed.BeginElse();
@@ -235,7 +233,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() {
boilerplate,
alloc_site_mode,
FAST_DOUBLE_ELEMENTS,
- BailoutId::StubEntry(),
length));
} else {
ElementsKind elements_kind = casted_stub()->ComputeElementsKind();
@@ -243,7 +240,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() {
boilerplate,
alloc_site_mode,
elements_kind,
- BailoutId::StubEntry(),
length));
}
« no previous file with comments | « no previous file | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698