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

Side by Side Diff: src/hydrogen.h

Issue 10170030: Implement tracking and optimizations of packed arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Platforms ports and review feedback Created 8 years, 7 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
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 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 bool is_store); 1085 bool is_store);
1086 HInstruction* BuildFastElementAccess(HValue* elements, 1086 HInstruction* BuildFastElementAccess(HValue* elements,
1087 HValue* checked_key, 1087 HValue* checked_key,
1088 HValue* val, 1088 HValue* val,
1089 ElementsKind elements_kind, 1089 ElementsKind elements_kind,
1090 bool is_store); 1090 bool is_store);
1091 1091
1092 HInstruction* BuildMonomorphicElementAccess(HValue* object, 1092 HInstruction* BuildMonomorphicElementAccess(HValue* object,
1093 HValue* key, 1093 HValue* key,
1094 HValue* val, 1094 HValue* val,
1095 HValue* dependency,
1095 Handle<Map> map, 1096 Handle<Map> map,
1096 bool is_store); 1097 bool is_store);
1097 HValue* HandlePolymorphicElementAccess(HValue* object, 1098 HValue* HandlePolymorphicElementAccess(HValue* object,
1098 HValue* key, 1099 HValue* key,
1099 HValue* val, 1100 HValue* val,
1100 Expression* prop, 1101 Expression* prop,
1101 int ast_id, 1102 int ast_id,
1102 int position, 1103 int position,
1103 bool is_store, 1104 bool is_store,
1104 bool* has_side_effects); 1105 bool* has_side_effects);
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 const char* filename_; 1412 const char* filename_;
1412 HeapStringAllocator string_allocator_; 1413 HeapStringAllocator string_allocator_;
1413 StringStream trace_; 1414 StringStream trace_;
1414 int indent_; 1415 int indent_;
1415 }; 1416 };
1416 1417
1417 1418
1418 } } // namespace v8::internal 1419 } } // namespace v8::internal
1419 1420
1420 #endif // V8_HYDROGEN_H_ 1421 #endif // V8_HYDROGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698