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 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 void GenerateSwapElements(ZoneList<Expression*>* args); | 698 void GenerateSwapElements(ZoneList<Expression*>* args); |
699 | 699 |
700 // Fast call for custom callbacks. | 700 // Fast call for custom callbacks. |
701 void GenerateCallFunction(ZoneList<Expression*>* args); | 701 void GenerateCallFunction(ZoneList<Expression*>* args); |
702 | 702 |
703 // Fast call to math functions. | 703 // Fast call to math functions. |
704 void GenerateMathPow(ZoneList<Expression*>* args); | 704 void GenerateMathPow(ZoneList<Expression*>* args); |
705 void GenerateMathSin(ZoneList<Expression*>* args); | 705 void GenerateMathSin(ZoneList<Expression*>* args); |
706 void GenerateMathCos(ZoneList<Expression*>* args); | 706 void GenerateMathCos(ZoneList<Expression*>* args); |
707 void GenerateMathSqrt(ZoneList<Expression*>* args); | 707 void GenerateMathSqrt(ZoneList<Expression*>* args); |
| 708 void GenerateMathLog(ZoneList<Expression*>* args); |
708 | 709 |
709 // Check whether two RegExps are equivalent | 710 // Check whether two RegExps are equivalent. |
710 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); | 711 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); |
711 | 712 |
712 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); | 713 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); |
713 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); | 714 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); |
714 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args); | 715 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args); |
715 | 716 |
716 // Simple condition analysis. | 717 // Simple condition analysis. |
717 enum ConditionAnalysis { | 718 enum ConditionAnalysis { |
718 ALWAYS_TRUE, | 719 ALWAYS_TRUE, |
719 ALWAYS_FALSE, | 720 ALWAYS_FALSE, |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 | 786 |
786 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc | 787 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc |
787 | 788 |
788 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 789 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
789 }; | 790 }; |
790 | 791 |
791 | 792 |
792 } } // namespace v8::internal | 793 } } // namespace v8::internal |
793 | 794 |
794 #endif // V8_IA32_CODEGEN_IA32_H_ | 795 #endif // V8_IA32_CODEGEN_IA32_H_ |
OLD | NEW |