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/base/platform/time.h" | 9 #include "src/base/platform/time.h" |
10 #include "src/objects.h" | 10 #include "src/objects.h" |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 F(RemPiO2, 2, 1) \ | 381 F(RemPiO2, 2, 1) \ |
382 F(MathAtan2, 2, 1) \ | 382 F(MathAtan2, 2, 1) \ |
383 F(MathExpRT, 1, 1) \ | 383 F(MathExpRT, 1, 1) \ |
384 F(MathClz32, 1, 1) \ | 384 F(MathClz32, 1, 1) \ |
385 F(MathFloor, 1, 1) \ | 385 F(MathFloor, 1, 1) \ |
386 F(MathPow, 2, 1) \ | 386 F(MathPow, 2, 1) \ |
387 F(MathPowRT, 2, 1) \ | 387 F(MathPowRT, 2, 1) \ |
388 F(RoundNumber, 1, 1) \ | 388 F(RoundNumber, 1, 1) \ |
389 F(MathSqrt, 1, 1) \ | 389 F(MathSqrt, 1, 1) \ |
390 F(MathFround, 1, 1) \ | 390 F(MathFround, 1, 1) \ |
391 F(IsMinusZero, 1, 1) \ | |
392 F(GenerateRandomNumbers, 1, 1) | 391 F(GenerateRandomNumbers, 1, 1) |
393 | 392 |
394 | 393 |
395 #define FOR_EACH_INTRINSIC_NUMBERS(F) \ | 394 #define FOR_EACH_INTRINSIC_NUMBERS(F) \ |
396 F(NumberToRadixString, 2, 1) \ | 395 F(NumberToRadixString, 2, 1) \ |
397 F(NumberToFixed, 2, 1) \ | 396 F(NumberToFixed, 2, 1) \ |
398 F(NumberToExponential, 2, 1) \ | 397 F(NumberToExponential, 2, 1) \ |
399 F(NumberToPrecision, 2, 1) \ | 398 F(NumberToPrecision, 2, 1) \ |
400 F(IsValidSmi, 1, 1) \ | 399 F(IsValidSmi, 1, 1) \ |
401 F(StringToNumber, 1, 1) \ | 400 F(StringToNumber, 1, 1) \ |
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1254 | 1253 |
1255 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1254 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1256 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1255 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1257 STATIC_ASSERT(LANGUAGE_END == 3); | 1256 STATIC_ASSERT(LANGUAGE_END == 3); |
1258 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1257 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1259 | 1258 |
1260 } // namespace internal | 1259 } // namespace internal |
1261 } // namespace v8 | 1260 } // namespace v8 |
1262 | 1261 |
1263 #endif // V8_RUNTIME_RUNTIME_H_ | 1262 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |