| 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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 void GenerateMathPow(ZoneList<Expression*>* args); | 703 void GenerateMathPow(ZoneList<Expression*>* args); |
| 704 void GenerateMathSin(ZoneList<Expression*>* args); | 704 void GenerateMathSin(ZoneList<Expression*>* args); |
| 705 void GenerateMathCos(ZoneList<Expression*>* args); | 705 void GenerateMathCos(ZoneList<Expression*>* args); |
| 706 void GenerateMathSqrt(ZoneList<Expression*>* args); | 706 void GenerateMathSqrt(ZoneList<Expression*>* args); |
| 707 | 707 |
| 708 // Check whether two RegExps are equivalent | 708 // Check whether two RegExps are equivalent |
| 709 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); | 709 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); |
| 710 | 710 |
| 711 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); | 711 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); |
| 712 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); | 712 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); |
| 713 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args); |
| 713 | 714 |
| 714 // Simple condition analysis. | 715 // Simple condition analysis. |
| 715 enum ConditionAnalysis { | 716 enum ConditionAnalysis { |
| 716 ALWAYS_TRUE, | 717 ALWAYS_TRUE, |
| 717 ALWAYS_FALSE, | 718 ALWAYS_FALSE, |
| 718 DONT_KNOW | 719 DONT_KNOW |
| 719 }; | 720 }; |
| 720 ConditionAnalysis AnalyzeCondition(Expression* cond); | 721 ConditionAnalysis AnalyzeCondition(Expression* cond); |
| 721 | 722 |
| 722 // Methods used to indicate which source code is generated for. Source | 723 // Methods used to indicate which source code is generated for. Source |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 | 784 |
| 784 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc | 785 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc |
| 785 | 786 |
| 786 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 787 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 787 }; | 788 }; |
| 788 | 789 |
| 789 | 790 |
| 790 } } // namespace v8::internal | 791 } } // namespace v8::internal |
| 791 | 792 |
| 792 #endif // V8_IA32_CODEGEN_IA32_H_ | 793 #endif // V8_IA32_CODEGEN_IA32_H_ |
| OLD | NEW |