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

Unified Diff: src/hydrogen.h

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 | « src/code-stubs-hydrogen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen.h
diff --git a/src/hydrogen.h b/src/hydrogen.h
index f4f3752c83002d418e7534d65b349a991f3fb83a..3981f93038c74cb293a1f47b0e3946bb358ac6ab 100644
--- a/src/hydrogen.h
+++ b/src/hydrogen.h
@@ -950,8 +950,8 @@ class HGraphBuilder {
KeyedAccessStoreMode store_mode,
Representation checked_index_representation = Representation::None());
- HInstruction* BuildStoreMap(HValue* object, HValue* map, BailoutId id);
- HInstruction* BuildStoreMap(HValue* object, Handle<Map> map, BailoutId id);
+ HInstruction* BuildStoreMap(HValue* object, HValue* map);
+ HInstruction* BuildStoreMap(HValue* object, Handle<Map> map);
class CheckBuilder {
public:
@@ -1099,7 +1099,6 @@ class HGraphBuilder {
HValue* boilerplate,
AllocationSiteMode mode,
ElementsKind kind,
- BailoutId id,
int length);
private:
@@ -1509,23 +1508,20 @@ class HOptimizedGraphBuilder: public HGraphBuilder, public AstVisitor {
Handle<JSObject> boilerplate_object,
Handle<JSObject> original_boilerplate_object,
int size,
- AllocationSiteMode mode,
- BailoutId id);
+ AllocationSiteMode mode);
void BuildEmitDeepCopy(Handle<JSObject> boilerplat_object,
Handle<JSObject> object,
HInstruction* result,
int* offset,
- AllocationSiteMode mode,
- BailoutId id);
+ AllocationSiteMode mode);
MUST_USE_RESULT HValue* BuildCopyObjectHeader(
Handle<JSObject> boilerplat_object,
HInstruction* target,
int object_offset,
int elements_offset,
- int elements_size,
- BailoutId id);
+ int elements_size);
void AddCheckPrototypeMaps(Handle<JSObject> holder,
Handle<Map> receiver_map);
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698