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

Side by Side Diff: src/hydrogen.h

Issue 10442015: Rollback of r11638, r11636 on trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: 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
« no previous file with comments | « src/heap.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 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 bool is_store); 1086 bool is_store);
1087 HInstruction* BuildFastElementAccess(HValue* elements, 1087 HInstruction* BuildFastElementAccess(HValue* elements,
1088 HValue* checked_key, 1088 HValue* checked_key,
1089 HValue* val, 1089 HValue* val,
1090 ElementsKind elements_kind, 1090 ElementsKind elements_kind,
1091 bool is_store); 1091 bool is_store);
1092 1092
1093 HInstruction* BuildMonomorphicElementAccess(HValue* object, 1093 HInstruction* BuildMonomorphicElementAccess(HValue* object,
1094 HValue* key, 1094 HValue* key,
1095 HValue* val, 1095 HValue* val,
1096 HValue* dependency,
1097 Handle<Map> map, 1096 Handle<Map> map,
1098 bool is_store); 1097 bool is_store);
1099 HValue* HandlePolymorphicElementAccess(HValue* object, 1098 HValue* HandlePolymorphicElementAccess(HValue* object,
1100 HValue* key, 1099 HValue* key,
1101 HValue* val, 1100 HValue* val,
1102 Expression* prop, 1101 Expression* prop,
1103 int ast_id, 1102 int ast_id,
1104 int position, 1103 int position,
1105 bool is_store, 1104 bool is_store,
1106 bool* has_side_effects); 1105 bool* has_side_effects);
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 const char* filename_; 1412 const char* filename_;
1414 HeapStringAllocator string_allocator_; 1413 HeapStringAllocator string_allocator_;
1415 StringStream trace_; 1414 StringStream trace_;
1416 int indent_; 1415 int indent_;
1417 }; 1416 };
1418 1417
1419 1418
1420 } } // namespace v8::internal 1419 } } // namespace v8::internal
1421 1420
1422 #endif // V8_HYDROGEN_H_ 1421 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698