OLD | NEW |
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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 | 575 |
576 // Fast support for SubString. | 576 // Fast support for SubString. |
577 void GenerateSubString(ZoneList<Expression*>* args); | 577 void GenerateSubString(ZoneList<Expression*>* args); |
578 | 578 |
579 // Fast support for StringCompare. | 579 // Fast support for StringCompare. |
580 void GenerateStringCompare(ZoneList<Expression*>* args); | 580 void GenerateStringCompare(ZoneList<Expression*>* args); |
581 | 581 |
582 // Support for direct calls from JavaScript to native RegExp code. | 582 // Support for direct calls from JavaScript to native RegExp code. |
583 void GenerateRegExpExec(ZoneList<Expression*>* args); | 583 void GenerateRegExpExec(ZoneList<Expression*>* args); |
584 | 584 |
| 585 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); |
| 586 |
585 // Fast support for number to string. | 587 // Fast support for number to string. |
586 void GenerateNumberToString(ZoneList<Expression*>* args); | 588 void GenerateNumberToString(ZoneList<Expression*>* args); |
587 | 589 |
588 // Fast call for custom callbacks. | 590 // Fast call for custom callbacks. |
589 void GenerateCallFunction(ZoneList<Expression*>* args); | 591 void GenerateCallFunction(ZoneList<Expression*>* args); |
590 | 592 |
591 // Fast call to math functions. | 593 // Fast call to math functions. |
592 void GenerateMathPow(ZoneList<Expression*>* args); | 594 void GenerateMathPow(ZoneList<Expression*>* args); |
593 void GenerateMathSin(ZoneList<Expression*>* args); | 595 void GenerateMathSin(ZoneList<Expression*>* args); |
594 void GenerateMathCos(ZoneList<Expression*>* args); | 596 void GenerateMathCos(ZoneList<Expression*>* args); |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 void Print() { | 945 void Print() { |
944 PrintF("NumberToStringStub\n"); | 946 PrintF("NumberToStringStub\n"); |
945 } | 947 } |
946 #endif | 948 #endif |
947 }; | 949 }; |
948 | 950 |
949 | 951 |
950 } } // namespace v8::internal | 952 } } // namespace v8::internal |
951 | 953 |
952 #endif // V8_X64_CODEGEN_X64_H_ | 954 #endif // V8_X64_CODEGEN_X64_H_ |
OLD | NEW |