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

Side by Side Diff: src/hydrogen.h

Issue 9692036: Implement non-generic stores for object literals. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Sven Panne. Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ast.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 bool is_store, 1070 bool is_store,
1071 bool* has_side_effects); 1071 bool* has_side_effects);
1072 1072
1073 HInstruction* BuildLoadNamed(HValue* object, 1073 HInstruction* BuildLoadNamed(HValue* object,
1074 Property* prop, 1074 Property* prop,
1075 Handle<Map> map, 1075 Handle<Map> map,
1076 Handle<String> name); 1076 Handle<String> name);
1077 HInstruction* BuildStoreNamed(HValue* object, 1077 HInstruction* BuildStoreNamed(HValue* object,
1078 HValue* value, 1078 HValue* value,
1079 Expression* expr); 1079 Expression* expr);
1080 HInstruction* BuildStoreNamed(HValue* object,
1081 HValue* value,
1082 ObjectLiteral::Property* prop);
1080 HInstruction* BuildStoreNamedField(HValue* object, 1083 HInstruction* BuildStoreNamedField(HValue* object,
1081 Handle<String> name, 1084 Handle<String> name,
1082 HValue* value, 1085 HValue* value,
1083 Handle<Map> type, 1086 Handle<Map> type,
1084 LookupResult* lookup, 1087 LookupResult* lookup,
1085 bool smi_and_map_check); 1088 bool smi_and_map_check);
1086 HInstruction* BuildStoreNamedGeneric(HValue* object, 1089 HInstruction* BuildStoreNamedGeneric(HValue* object,
1087 Handle<String> name, 1090 Handle<String> name,
1088 HValue* value); 1091 HValue* value);
1089 HInstruction* BuildStoreKeyedGeneric(HValue* object, 1092 HInstruction* BuildStoreKeyedGeneric(HValue* object,
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1341 const char* filename_; 1344 const char* filename_;
1342 HeapStringAllocator string_allocator_; 1345 HeapStringAllocator string_allocator_;
1343 StringStream trace_; 1346 StringStream trace_;
1344 int indent_; 1347 int indent_;
1345 }; 1348 };
1346 1349
1347 1350
1348 } } // namespace v8::internal 1351 } } // namespace v8::internal
1349 1352
1350 #endif // V8_HYDROGEN_H_ 1353 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698