OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/objects.h" | 9 #include "src/objects.h" |
10 #include "src/zone.h" | 10 #include "src/zone.h" |
(...skipping 134 matching lines...) Loading... |
145 \ | 145 \ |
146 /* Math */ \ | 146 /* Math */ \ |
147 F(MathAcos, 1, 1) \ | 147 F(MathAcos, 1, 1) \ |
148 F(MathAsin, 1, 1) \ | 148 F(MathAsin, 1, 1) \ |
149 F(MathAtan, 1, 1) \ | 149 F(MathAtan, 1, 1) \ |
150 F(MathFloorRT, 1, 1) \ | 150 F(MathFloorRT, 1, 1) \ |
151 F(MathAtan2, 2, 1) \ | 151 F(MathAtan2, 2, 1) \ |
152 F(MathExpRT, 1, 1) \ | 152 F(MathExpRT, 1, 1) \ |
153 F(RoundNumber, 1, 1) \ | 153 F(RoundNumber, 1, 1) \ |
154 F(MathFround, 1, 1) \ | 154 F(MathFround, 1, 1) \ |
155 F(RemPiO2, 1, 1) \ | 155 F(RemPiO2, 2, 1) \ |
156 \ | 156 \ |
157 /* Regular expressions */ \ | 157 /* Regular expressions */ \ |
158 F(RegExpInitializeAndCompile, 3, 1) \ | 158 F(RegExpInitializeAndCompile, 3, 1) \ |
159 F(RegExpExecMultiple, 4, 1) \ | 159 F(RegExpExecMultiple, 4, 1) \ |
160 \ | 160 \ |
161 /* JSON */ \ | 161 /* JSON */ \ |
162 F(ParseJson, 1, 1) \ | 162 F(ParseJson, 1, 1) \ |
163 F(BasicJSONStringify, 1, 1) \ | 163 F(BasicJSONStringify, 1, 1) \ |
164 F(QuoteJSONString, 1, 1) \ | 164 F(QuoteJSONString, 1, 1) \ |
165 \ | 165 \ |
(...skipping 721 matching lines...) Loading... |
887 | 887 |
888 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 888 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
889 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 889 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
890 STATIC_ASSERT(LANGUAGE_END == 2); | 890 STATIC_ASSERT(LANGUAGE_END == 2); |
891 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 891 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
892 | 892 |
893 } // namespace internal | 893 } // namespace internal |
894 } // namespace v8 | 894 } // namespace v8 |
895 | 895 |
896 #endif // V8_RUNTIME_RUNTIME_H_ | 896 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |