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

Side by Side Diff: src/hydrogen.h

Issue 10692187: Added Crankshaft support for setters. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Reverted accidental es5_readonly change. 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 | « no previous file | 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 1142
1143 HInstruction* BuildCallGetter(HValue* obj, 1143 HInstruction* BuildCallGetter(HValue* obj,
1144 Property* expr, 1144 Property* expr,
1145 Handle<Map> map, 1145 Handle<Map> map,
1146 Handle<Object> callback, 1146 Handle<Object> callback,
1147 Handle<JSObject> holder); 1147 Handle<JSObject> holder);
1148 HInstruction* BuildLoadNamed(HValue* object, 1148 HInstruction* BuildLoadNamed(HValue* object,
1149 Property* prop, 1149 Property* prop,
1150 Handle<Map> map, 1150 Handle<Map> map,
1151 Handle<String> name); 1151 Handle<String> name);
1152 HInstruction* BuildCallSetter(HValue* object,
1153 Handle<String> name,
1154 HValue* value,
1155 Handle<Map> map,
1156 Handle<Object> callback,
1157 Handle<JSObject> holder);
1152 HInstruction* BuildStoreNamed(HValue* object, 1158 HInstruction* BuildStoreNamed(HValue* object,
1153 HValue* value, 1159 HValue* value,
1154 Handle<Map> type, 1160 Handle<Map> type,
1155 Expression* key); 1161 Expression* key);
1156 HInstruction* BuildStoreNamedField(HValue* object, 1162 HInstruction* BuildStoreNamedField(HValue* object,
1157 Handle<String> name, 1163 Handle<String> name,
1158 HValue* value, 1164 HValue* value,
1159 Handle<Map> type, 1165 Handle<Map> type,
1160 LookupResult* lookup, 1166 LookupResult* lookup,
1161 bool smi_and_map_check); 1167 bool smi_and_map_check);
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1445 const char* filename_; 1451 const char* filename_;
1446 HeapStringAllocator string_allocator_; 1452 HeapStringAllocator string_allocator_;
1447 StringStream trace_; 1453 StringStream trace_;
1448 int indent_; 1454 int indent_;
1449 }; 1455 };
1450 1456
1451 1457
1452 } } // namespace v8::internal 1458 } } // namespace v8::internal
1453 1459
1454 #endif // V8_HYDROGEN_H_ 1460 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698