| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 F(RegExpExec, 4, 1) \ | 109 F(RegExpExec, 4, 1) \ |
| 110 F(RegExpConstructResult, 3, 1) \ | 110 F(RegExpConstructResult, 3, 1) \ |
| 111 F(RegExpCloneResult, 1, 1) \ | 111 F(RegExpCloneResult, 1, 1) \ |
| 112 F(GetFromCache, 2, 1) \ | 112 F(GetFromCache, 2, 1) \ |
| 113 F(NumberToString, 1, 1) \ | 113 F(NumberToString, 1, 1) \ |
| 114 F(SwapElements, 3, 1) \ | 114 F(SwapElements, 3, 1) \ |
| 115 F(MathPow, 2, 1) \ | 115 F(MathPow, 2, 1) \ |
| 116 F(MathSin, 1, 1) \ | 116 F(MathSin, 1, 1) \ |
| 117 F(MathCos, 1, 1) \ | 117 F(MathCos, 1, 1) \ |
| 118 F(MathSqrt, 1, 1) \ | 118 F(MathSqrt, 1, 1) \ |
| 119 F(IsRegExpEquivalent, 2, 1) | 119 F(IsRegExpEquivalent, 2, 1) \ |
| 120 F(HasCachedArrayIndex, 1, 1) \ |
| 121 F(GetCachedArrayIndex, 1, 1) |
| 120 | 122 |
| 121 | 123 |
| 122 #if V8_TARGET_ARCH_IA32 | 124 #if V8_TARGET_ARCH_IA32 |
| 123 #include "ia32/codegen-ia32.h" | 125 #include "ia32/codegen-ia32.h" |
| 124 #elif V8_TARGET_ARCH_X64 | 126 #elif V8_TARGET_ARCH_X64 |
| 125 #include "x64/codegen-x64.h" | 127 #include "x64/codegen-x64.h" |
| 126 #elif V8_TARGET_ARCH_ARM | 128 #elif V8_TARGET_ARCH_ARM |
| 127 #include "arm/codegen-arm.h" | 129 #include "arm/codegen-arm.h" |
| 128 #elif V8_TARGET_ARCH_MIPS | 130 #elif V8_TARGET_ARCH_MIPS |
| 129 #include "mips/codegen-mips.h" | 131 #include "mips/codegen-mips.h" |
| (...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 StringCharFromCodeGenerator char_from_code_generator_; | 902 StringCharFromCodeGenerator char_from_code_generator_; |
| 901 | 903 |
| 902 DISALLOW_COPY_AND_ASSIGN(StringCharAtGenerator); | 904 DISALLOW_COPY_AND_ASSIGN(StringCharAtGenerator); |
| 903 }; | 905 }; |
| 904 | 906 |
| 905 | 907 |
| 906 } // namespace internal | 908 } // namespace internal |
| 907 } // namespace v8 | 909 } // namespace v8 |
| 908 | 910 |
| 909 #endif // V8_CODEGEN_H_ | 911 #endif // V8_CODEGEN_H_ |
| OLD | NEW |