| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 | 397 |
| 398 // Fast support for StringCompare. | 398 // Fast support for StringCompare. |
| 399 void GenerateStringCompare(ZoneList<Expression*>* args); | 399 void GenerateStringCompare(ZoneList<Expression*>* args); |
| 400 | 400 |
| 401 // Support for direct calls from JavaScript to native RegExp code. | 401 // Support for direct calls from JavaScript to native RegExp code. |
| 402 void GenerateRegExpExec(ZoneList<Expression*>* args); | 402 void GenerateRegExpExec(ZoneList<Expression*>* args); |
| 403 | 403 |
| 404 // Fast support for number to string. | 404 // Fast support for number to string. |
| 405 void GenerateNumberToString(ZoneList<Expression*>* args); | 405 void GenerateNumberToString(ZoneList<Expression*>* args); |
| 406 | 406 |
| 407 // Fast call for custom callbacks. |
| 408 void GenerateCallFunction(ZoneList<Expression*>* args); |
| 409 |
| 407 // Fast call to math functions. | 410 // Fast call to math functions. |
| 408 void GenerateMathPow(ZoneList<Expression*>* args); | 411 void GenerateMathPow(ZoneList<Expression*>* args); |
| 409 void GenerateMathSin(ZoneList<Expression*>* args); | 412 void GenerateMathSin(ZoneList<Expression*>* args); |
| 410 void GenerateMathCos(ZoneList<Expression*>* args); | 413 void GenerateMathCos(ZoneList<Expression*>* args); |
| 411 void GenerateMathSqrt(ZoneList<Expression*>* args); | 414 void GenerateMathSqrt(ZoneList<Expression*>* args); |
| 412 | 415 |
| 413 // Simple condition analysis. | 416 // Simple condition analysis. |
| 414 enum ConditionAnalysis { | 417 enum ConditionAnalysis { |
| 415 ALWAYS_TRUE, | 418 ALWAYS_TRUE, |
| 416 ALWAYS_FALSE, | 419 ALWAYS_FALSE, |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 void Print() { | 735 void Print() { |
| 733 PrintF("NumberToStringStub\n"); | 736 PrintF("NumberToStringStub\n"); |
| 734 } | 737 } |
| 735 #endif | 738 #endif |
| 736 }; | 739 }; |
| 737 | 740 |
| 738 | 741 |
| 739 } } // namespace v8::internal | 742 } } // namespace v8::internal |
| 740 | 743 |
| 741 #endif // V8_ARM_CODEGEN_ARM_H_ | 744 #endif // V8_ARM_CODEGEN_ARM_H_ |
| OLD | NEW |