| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 F(SetValueOf, 2, 1) \ | 94 F(SetValueOf, 2, 1) \ |
| 95 F(StringCharCodeAt, 2, 1) \ | 95 F(StringCharCodeAt, 2, 1) \ |
| 96 F(StringCharFromCode, 1, 1) \ | 96 F(StringCharFromCode, 1, 1) \ |
| 97 F(StringCharAt, 2, 1) \ | 97 F(StringCharAt, 2, 1) \ |
| 98 F(ObjectEquals, 2, 1) \ | 98 F(ObjectEquals, 2, 1) \ |
| 99 F(Log, 3, 1) \ | 99 F(Log, 3, 1) \ |
| 100 F(RandomHeapNumber, 0, 1) \ | 100 F(RandomHeapNumber, 0, 1) \ |
| 101 F(IsObject, 1, 1) \ | 101 F(IsObject, 1, 1) \ |
| 102 F(IsFunction, 1, 1) \ | 102 F(IsFunction, 1, 1) \ |
| 103 F(IsUndetectableObject, 1, 1) \ | 103 F(IsUndetectableObject, 1, 1) \ |
| 104 F(IsSpecObject, 1, 1) \ | 104 F(IsSpecObject, 1, 1) \ |
| 105 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ |
| 105 F(StringAdd, 2, 1) \ | 106 F(StringAdd, 2, 1) \ |
| 106 F(SubString, 3, 1) \ | 107 F(SubString, 3, 1) \ |
| 107 F(StringCompare, 2, 1) \ | 108 F(StringCompare, 2, 1) \ |
| 108 F(RegExpExec, 4, 1) \ | 109 F(RegExpExec, 4, 1) \ |
| 109 F(RegExpConstructResult, 3, 1) \ | 110 F(RegExpConstructResult, 3, 1) \ |
| 110 F(GetFromCache, 2, 1) \ | 111 F(GetFromCache, 2, 1) \ |
| 111 F(NumberToString, 1, 1) \ | 112 F(NumberToString, 1, 1) \ |
| 112 F(SwapElements, 3, 1) \ | 113 F(SwapElements, 3, 1) \ |
| 113 F(MathPow, 2, 1) \ | 114 F(MathPow, 2, 1) \ |
| 114 F(MathSin, 1, 1) \ | 115 F(MathSin, 1, 1) \ |
| (...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 StringCharFromCodeGenerator char_from_code_generator_; | 897 StringCharFromCodeGenerator char_from_code_generator_; |
| 897 | 898 |
| 898 DISALLOW_COPY_AND_ASSIGN(StringCharAtGenerator); | 899 DISALLOW_COPY_AND_ASSIGN(StringCharAtGenerator); |
| 899 }; | 900 }; |
| 900 | 901 |
| 901 | 902 |
| 902 } // namespace internal | 903 } // namespace internal |
| 903 } // namespace v8 | 904 } // namespace v8 |
| 904 | 905 |
| 905 #endif // V8_CODEGEN_H_ | 906 #endif // V8_CODEGEN_H_ |
| OLD | NEW |