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

Side by Side Diff: src/arm/codegen-arm.h

Issue 1709008: Introduce faster swapping primitives. (Closed)
Patch Set: Stub ports to x64 and ARM Created 10 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
« no previous file with comments | « no previous file | src/arm/codegen-arm.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 void GenerateRegExpExec(ZoneList<Expression*>* args); 448 void GenerateRegExpExec(ZoneList<Expression*>* args);
449 449
450 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); 450 void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
451 451
452 // Support for fast native caches. 452 // Support for fast native caches.
453 void GenerateGetFromCache(ZoneList<Expression*>* args); 453 void GenerateGetFromCache(ZoneList<Expression*>* args);
454 454
455 // Fast support for number to string. 455 // Fast support for number to string.
456 void GenerateNumberToString(ZoneList<Expression*>* args); 456 void GenerateNumberToString(ZoneList<Expression*>* args);
457 457
458 // Fast swapping of elements.
459 void GenerateSwapElements(ZoneList<Expression*>* args);
460
458 // Fast call for custom callbacks. 461 // Fast call for custom callbacks.
459 void GenerateCallFunction(ZoneList<Expression*>* args); 462 void GenerateCallFunction(ZoneList<Expression*>* args);
460 463
461 // Fast call to math functions. 464 // Fast call to math functions.
462 void GenerateMathPow(ZoneList<Expression*>* args); 465 void GenerateMathPow(ZoneList<Expression*>* args);
463 void GenerateMathSin(ZoneList<Expression*>* args); 466 void GenerateMathSin(ZoneList<Expression*>* args);
464 void GenerateMathCos(ZoneList<Expression*>* args); 467 void GenerateMathCos(ZoneList<Expression*>* args);
465 void GenerateMathSqrt(ZoneList<Expression*>* args); 468 void GenerateMathSqrt(ZoneList<Expression*>* args);
466 469
467 // Simple condition analysis. 470 // Simple condition analysis.
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 void Print() { 857 void Print() {
855 PrintF("NumberToStringStub\n"); 858 PrintF("NumberToStringStub\n");
856 } 859 }
857 #endif 860 #endif
858 }; 861 };
859 862
860 863
861 } } // namespace v8::internal 864 } } // namespace v8::internal
862 865
863 #endif // V8_ARM_CODEGEN_ARM_H_ 866 #endif // V8_ARM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698