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

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

Issue 1645001: Native construction of RegExp result objects, with in-object index and input. (Closed)
Patch Set: Created 10 years, 8 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
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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 621
622 // Fast support for SubString. 622 // Fast support for SubString.
623 void GenerateSubString(ZoneList<Expression*>* args); 623 void GenerateSubString(ZoneList<Expression*>* args);
624 624
625 // Fast support for StringCompare. 625 // Fast support for StringCompare.
626 void GenerateStringCompare(ZoneList<Expression*>* args); 626 void GenerateStringCompare(ZoneList<Expression*>* args);
627 627
628 // Support for direct calls from JavaScript to native RegExp code. 628 // Support for direct calls from JavaScript to native RegExp code.
629 void GenerateRegExpExec(ZoneList<Expression*>* args); 629 void GenerateRegExpExec(ZoneList<Expression*>* args);
630 630
631 void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
632
631 // Fast support for number to string. 633 // Fast support for number to string.
632 void GenerateNumberToString(ZoneList<Expression*>* args); 634 void GenerateNumberToString(ZoneList<Expression*>* args);
633 635
634 // Fast call for custom callbacks. 636 // Fast call for custom callbacks.
635 void GenerateCallFunction(ZoneList<Expression*>* args); 637 void GenerateCallFunction(ZoneList<Expression*>* args);
636 638
637 // Fast call to math functions. 639 // Fast call to math functions.
638 void GenerateMathPow(ZoneList<Expression*>* args); 640 void GenerateMathPow(ZoneList<Expression*>* args);
639 void GenerateMathSin(ZoneList<Expression*>* args); 641 void GenerateMathSin(ZoneList<Expression*>* args);
640 void GenerateMathCos(ZoneList<Expression*>* args); 642 void GenerateMathCos(ZoneList<Expression*>* args);
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
1051 return ObjectBits::encode(object_.code()) | 1053 return ObjectBits::encode(object_.code()) |
1052 AddressBits::encode(addr_.code()) | 1054 AddressBits::encode(addr_.code()) |
1053 ScratchBits::encode(scratch_.code()); 1055 ScratchBits::encode(scratch_.code());
1054 } 1056 }
1055 }; 1057 };
1056 1058
1057 1059
1058 } } // namespace v8::internal 1060 } } // namespace v8::internal
1059 1061
1060 #endif // V8_IA32_CODEGEN_IA32_H_ 1062 #endif // V8_IA32_CODEGEN_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698