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

Unified Diff: src/hydrogen.h

Issue 1370303004: Distinction between FeedbackVectorICSlot and FeedbackVectorSlot eliminated. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed release builds Created 5 years, 3 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/heap/heap-inl.h ('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 59dec0950dcdb51ed26fdd372cde6c5fcdde4003..7e12827b9b9d9868da5f91091f95c96d3b636da1 100644
--- a/src/hydrogen.h
+++ b/src/hydrogen.h
@@ -2483,15 +2483,15 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
const char* failure_reason);
void HandleGlobalVariableAssignment(Variable* var, HValue* value,
- FeedbackVectorICSlot ic_slot,
+ FeedbackVectorSlot slot,
BailoutId ast_id);
void HandlePropertyAssignment(Assignment* expr);
void HandleCompoundAssignment(Assignment* expr);
void HandlePolymorphicNamedFieldAccess(
- PropertyAccessType access_type, Expression* expr,
- FeedbackVectorICSlot slot, BailoutId ast_id, BailoutId return_id,
- HValue* object, HValue* value, SmallMapList* types, Handle<String> name);
+ PropertyAccessType access_type, Expression* expr, FeedbackVectorSlot slot,
+ BailoutId ast_id, BailoutId return_id, HValue* object, HValue* value,
+ SmallMapList* types, Handle<String> name);
HValue* BuildAllocateExternalElements(
ExternalArrayType array_type,
@@ -2740,7 +2740,7 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
HValue* BuildNamedAccess(PropertyAccessType access, BailoutId ast_id,
BailoutId reutrn_id, Expression* expr,
- FeedbackVectorICSlot slot, HValue* object,
+ FeedbackVectorSlot slot, HValue* object,
Handle<String> name, HValue* value,
bool is_uninitialized = false);
@@ -2777,7 +2777,7 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
HInstruction* BuildIncrement(bool returns_original_input,
CountOperation* expr);
HInstruction* BuildKeyedGeneric(PropertyAccessType access_type,
- Expression* expr, FeedbackVectorICSlot slot,
+ Expression* expr, FeedbackVectorSlot slot,
HValue* object, HValue* key, HValue* value);
HInstruction* TryBuildConsolidatedElementLoad(HValue* object,
@@ -2796,18 +2796,18 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
KeyedAccessStoreMode store_mode);
HValue* HandlePolymorphicElementAccess(
- Expression* expr, FeedbackVectorICSlot slot, HValue* object, HValue* key,
+ Expression* expr, FeedbackVectorSlot slot, HValue* object, HValue* key,
HValue* val, SmallMapList* maps, PropertyAccessType access_type,
KeyedAccessStoreMode store_mode, bool* has_side_effects);
HValue* HandleKeyedElementAccess(HValue* obj, HValue* key, HValue* val,
- Expression* expr, FeedbackVectorICSlot slot,
+ Expression* expr, FeedbackVectorSlot slot,
BailoutId ast_id, BailoutId return_id,
PropertyAccessType access_type,
bool* has_side_effects);
HInstruction* BuildNamedGeneric(PropertyAccessType access, Expression* expr,
- FeedbackVectorICSlot slot, HValue* object,
+ FeedbackVectorSlot slot, HValue* object,
Handle<Name> name, HValue* value,
bool is_uninitialized = false);
@@ -2820,12 +2820,12 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
HValue* key);
void BuildStoreForEffect(Expression* expression, Property* prop,
- FeedbackVectorICSlot slot, BailoutId ast_id,
+ FeedbackVectorSlot slot, BailoutId ast_id,
BailoutId return_id, HValue* object, HValue* key,
HValue* value);
void BuildStore(Expression* expression, Property* prop,
- FeedbackVectorICSlot slot, BailoutId ast_id,
+ FeedbackVectorSlot slot, BailoutId ast_id,
BailoutId return_id, bool is_uninitialized = false);
HInstruction* BuildLoadNamedField(PropertyAccessInfo* info,
« no previous file with comments | « src/heap/heap-inl.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698