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

Side by Side Diff: src/hydrogen.h

Issue 10735023: Added Crankshaft support for JavaScript getters. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Whitespace changes. 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 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 1131
1132 HValue* HandleKeyedElementAccess(HValue* obj, 1132 HValue* HandleKeyedElementAccess(HValue* obj,
1133 HValue* key, 1133 HValue* key,
1134 HValue* val, 1134 HValue* val,
1135 Expression* expr, 1135 Expression* expr,
1136 int ast_id, 1136 int ast_id,
1137 int position, 1137 int position,
1138 bool is_store, 1138 bool is_store,
1139 bool* has_side_effects); 1139 bool* has_side_effects);
1140 1140
1141 HInstruction* BuildCallGetter(HValue* obj,
1142 Property* expr,
1143 Handle<Map> map,
1144 Handle<Object> callback,
1145 Handle<JSObject> holder);
1141 HInstruction* BuildLoadNamed(HValue* object, 1146 HInstruction* BuildLoadNamed(HValue* object,
1142 Property* prop, 1147 Property* prop,
1143 Handle<Map> map, 1148 Handle<Map> map,
1144 Handle<String> name); 1149 Handle<String> name);
1145 HInstruction* BuildStoreNamed(HValue* object, 1150 HInstruction* BuildStoreNamed(HValue* object,
1146 HValue* value, 1151 HValue* value,
1147 Expression* expr); 1152 Expression* expr);
1148 HInstruction* BuildStoreNamed(HValue* object, 1153 HInstruction* BuildStoreNamed(HValue* object,
1149 HValue* value, 1154 HValue* value,
1150 ObjectLiteral::Property* prop); 1155 ObjectLiteral::Property* prop);
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 const char* filename_; 1445 const char* filename_;
1441 HeapStringAllocator string_allocator_; 1446 HeapStringAllocator string_allocator_;
1442 StringStream trace_; 1447 StringStream trace_;
1443 int indent_; 1448 int indent_;
1444 }; 1449 };
1445 1450
1446 1451
1447 } } // namespace v8::internal 1452 } } // namespace v8::internal
1448 1453
1449 #endif // V8_HYDROGEN_H_ 1454 #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