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

Side by Side Diff: src/hydrogen.h

Issue 108503004: HStoreKeyed for Smis optimized for x64 + related redundant moves of elements removed (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebasing Created 7 years 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 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 HValue* BuildCheckMap(HValue* obj, Handle<Map> map); 1265 HValue* BuildCheckMap(HValue* obj, Handle<Map> map);
1266 HValue* BuildCheckString(HValue* string); 1266 HValue* BuildCheckString(HValue* string);
1267 HValue* BuildWrapReceiver(HValue* object, HValue* function); 1267 HValue* BuildWrapReceiver(HValue* object, HValue* function);
1268 1268
1269 // Building common constructs 1269 // Building common constructs
1270 HValue* BuildCheckForCapacityGrow(HValue* object, 1270 HValue* BuildCheckForCapacityGrow(HValue* object,
1271 HValue* elements, 1271 HValue* elements,
1272 ElementsKind kind, 1272 ElementsKind kind,
1273 HValue* length, 1273 HValue* length,
1274 HValue* key, 1274 HValue* key,
1275 bool is_js_array); 1275 bool is_js_array,
1276 bool is_store);
1276 1277
1277 HValue* BuildCopyElementsOnWrite(HValue* object, 1278 HValue* BuildCopyElementsOnWrite(HValue* object,
1278 HValue* elements, 1279 HValue* elements,
1279 ElementsKind kind, 1280 ElementsKind kind,
1280 HValue* length); 1281 HValue* length);
1281 1282
1282 void BuildTransitionElementsKind(HValue* object, 1283 void BuildTransitionElementsKind(HValue* object,
1283 HValue* map, 1284 HValue* map,
1284 ElementsKind from_kind, 1285 ElementsKind from_kind,
1285 ElementsKind to_kind, 1286 ElementsKind to_kind,
(...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after
2639 } 2640 }
2640 2641
2641 private: 2642 private:
2642 HGraphBuilder* builder_; 2643 HGraphBuilder* builder_;
2643 }; 2644 };
2644 2645
2645 2646
2646 } } // namespace v8::internal 2647 } } // namespace v8::internal
2647 2648
2648 #endif // V8_HYDROGEN_H_ 2649 #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