| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 void GenerateRegExpExec(ZoneList<Expression*>* args); | 583 void GenerateRegExpExec(ZoneList<Expression*>* args); |
| 584 | 584 |
| 585 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); | 585 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); |
| 586 | 586 |
| 587 // Support for fast native caches. | 587 // Support for fast native caches. |
| 588 void GenerateGetFromCache(ZoneList<Expression*>* args); | 588 void GenerateGetFromCache(ZoneList<Expression*>* args); |
| 589 | 589 |
| 590 // Fast support for number to string. | 590 // Fast support for number to string. |
| 591 void GenerateNumberToString(ZoneList<Expression*>* args); | 591 void GenerateNumberToString(ZoneList<Expression*>* args); |
| 592 | 592 |
| 593 // Fast swapping of elements. |
| 594 void GenerateSwapElements(ZoneList<Expression*>* args); |
| 595 |
| 593 // Fast call for custom callbacks. | 596 // Fast call for custom callbacks. |
| 594 void GenerateCallFunction(ZoneList<Expression*>* args); | 597 void GenerateCallFunction(ZoneList<Expression*>* args); |
| 595 | 598 |
| 596 // Fast call to math functions. | 599 // Fast call to math functions. |
| 597 void GenerateMathPow(ZoneList<Expression*>* args); | 600 void GenerateMathPow(ZoneList<Expression*>* args); |
| 598 void GenerateMathSin(ZoneList<Expression*>* args); | 601 void GenerateMathSin(ZoneList<Expression*>* args); |
| 599 void GenerateMathCos(ZoneList<Expression*>* args); | 602 void GenerateMathCos(ZoneList<Expression*>* args); |
| 600 void GenerateMathSqrt(ZoneList<Expression*>* args); | 603 void GenerateMathSqrt(ZoneList<Expression*>* args); |
| 601 | 604 |
| 602 // Simple condition analysis. | 605 // Simple condition analysis. |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 void Print() { | 953 void Print() { |
| 951 PrintF("NumberToStringStub\n"); | 954 PrintF("NumberToStringStub\n"); |
| 952 } | 955 } |
| 953 #endif | 956 #endif |
| 954 }; | 957 }; |
| 955 | 958 |
| 956 | 959 |
| 957 } } // namespace v8::internal | 960 } } // namespace v8::internal |
| 958 | 961 |
| 959 #endif // V8_X64_CODEGEN_X64_H_ | 962 #endif // V8_X64_CODEGEN_X64_H_ |
| OLD | NEW |