Commit e25e6ab2 authored by verwaest@chromium.org's avatar verwaest@chromium.org

Let BuildStore/BuildLoad distinguish between keyed/named load/stores.

R=bmeurer@chromium.org

Review URL: https://chromiumcodereview.appspot.com/23537024

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16575 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent b2564755
This diff is collapsed.
...@@ -2038,21 +2038,22 @@ class HOptimizedGraphBuilder V8_FINAL ...@@ -2038,21 +2038,22 @@ class HOptimizedGraphBuilder V8_FINAL
BailoutId ast_id); BailoutId ast_id);
void PushLoad(Property* property, void PushLoad(Property* property,
HValue* object, HValue* object,
HValue* key,
int position); int position);
void BuildStoreInEffect(Expression* expression, void BuildStoreForEffect(Expression* expression,
Property* prop, Property* prop,
BailoutId ast_id, BailoutId ast_id,
BailoutId return_id, BailoutId return_id,
HValue* object, HValue* object,
HValue* value); HValue* key,
HValue* value);
void BuildStoreNamed(Expression* expression,
BailoutId id, void BuildStore(Expression* expression,
BailoutId assignment_id, Property* prop,
Property* prop, BailoutId ast_id,
HValue* object, BailoutId return_id,
HValue* value); bool is_uninitialized = false);
HInstruction* BuildStoreNamedField(HValue* object, HInstruction* BuildStoreNamedField(HValue* object,
Handle<String> name, Handle<String> name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment