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

Side by Side Diff: src/ia32/codegen-ia32.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 | « src/codegen.h ('k') | src/ia32/codegen-ia32.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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 void GenerateRegExpExec(ZoneList<Expression*>* args); 629 void GenerateRegExpExec(ZoneList<Expression*>* args);
630 630
631 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); 631 void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
632 632
633 // Support for fast native caches. 633 // Support for fast native caches.
634 void GenerateGetFromCache(ZoneList<Expression*>* args); 634 void GenerateGetFromCache(ZoneList<Expression*>* args);
635 635
636 // Fast support for number to string. 636 // Fast support for number to string.
637 void GenerateNumberToString(ZoneList<Expression*>* args); 637 void GenerateNumberToString(ZoneList<Expression*>* args);
638 638
639 // Fast swapping of elements.
640 void GenerateSwapElements(ZoneList<Expression*>* args);
641
639 // Fast call for custom callbacks. 642 // Fast call for custom callbacks.
640 void GenerateCallFunction(ZoneList<Expression*>* args); 643 void GenerateCallFunction(ZoneList<Expression*>* args);
641 644
642 // Fast call to math functions. 645 // Fast call to math functions.
643 void GenerateMathPow(ZoneList<Expression*>* args); 646 void GenerateMathPow(ZoneList<Expression*>* args);
644 void GenerateMathSin(ZoneList<Expression*>* args); 647 void GenerateMathSin(ZoneList<Expression*>* args);
645 void GenerateMathCos(ZoneList<Expression*>* args); 648 void GenerateMathCos(ZoneList<Expression*>* args);
646 void GenerateMathSqrt(ZoneList<Expression*>* args); 649 void GenerateMathSqrt(ZoneList<Expression*>* args);
647 650
648 // Simple condition analysis. 651 // Simple condition analysis.
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 return ObjectBits::encode(object_.code()) | 1091 return ObjectBits::encode(object_.code()) |
1089 AddressBits::encode(addr_.code()) | 1092 AddressBits::encode(addr_.code()) |
1090 ScratchBits::encode(scratch_.code()); 1093 ScratchBits::encode(scratch_.code());
1091 } 1094 }
1092 }; 1095 };
1093 1096
1094 1097
1095 } } // namespace v8::internal 1098 } } // namespace v8::internal
1096 1099
1097 #endif // V8_IA32_CODEGEN_IA32_H_ 1100 #endif // V8_IA32_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/codegen.h ('k') | src/ia32/codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698