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

Side by Side Diff: src/hydrogen.h

Issue 10704127: Revert "Removed one copy-n-paste clone of HGraphBuilder::BuildStoreNamed." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 5 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.h ('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 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after
1142 Property* expr, 1142 Property* expr,
1143 Handle<Map> map, 1143 Handle<Map> map,
1144 Handle<Object> callback, 1144 Handle<Object> callback,
1145 Handle<JSObject> holder); 1145 Handle<JSObject> holder);
1146 HInstruction* BuildLoadNamed(HValue* object, 1146 HInstruction* BuildLoadNamed(HValue* object,
1147 Property* prop, 1147 Property* prop,
1148 Handle<Map> map, 1148 Handle<Map> map,
1149 Handle<String> name); 1149 Handle<String> name);
1150 HInstruction* BuildStoreNamed(HValue* object, 1150 HInstruction* BuildStoreNamed(HValue* object,
1151 HValue* value, 1151 HValue* value,
1152 Handle<Map> type, 1152 Expression* expr);
1153 Expression* key); 1153 HInstruction* BuildStoreNamed(HValue* object,
1154 HValue* value,
1155 ObjectLiteral::Property* prop);
1154 HInstruction* BuildStoreNamedField(HValue* object, 1156 HInstruction* BuildStoreNamedField(HValue* object,
1155 Handle<String> name, 1157 Handle<String> name,
1156 HValue* value, 1158 HValue* value,
1157 Handle<Map> type, 1159 Handle<Map> type,
1158 LookupResult* lookup, 1160 LookupResult* lookup,
1159 bool smi_and_map_check); 1161 bool smi_and_map_check);
1160 HInstruction* BuildStoreNamedGeneric(HValue* object, 1162 HInstruction* BuildStoreNamedGeneric(HValue* object,
1161 Handle<String> name, 1163 Handle<String> name,
1162 HValue* value); 1164 HValue* value);
1163 HInstruction* BuildStoreKeyedGeneric(HValue* object, 1165 HInstruction* BuildStoreKeyedGeneric(HValue* object,
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 const char* filename_; 1445 const char* filename_;
1444 HeapStringAllocator string_allocator_; 1446 HeapStringAllocator string_allocator_;
1445 StringStream trace_; 1447 StringStream trace_;
1446 int indent_; 1448 int indent_;
1447 }; 1449 };
1448 1450
1449 1451
1450 } } // namespace v8::internal 1452 } } // namespace v8::internal
1451 1453
1452 #endif // V8_HYDROGEN_H_ 1454 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698