| 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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 F(NumberToRadixString, 2, 1) \ | 367 F(NumberToRadixString, 2, 1) \ |
| 368 F(NumberToFixed, 2, 1) \ | 368 F(NumberToFixed, 2, 1) \ |
| 369 F(NumberToExponential, 2, 1) \ | 369 F(NumberToExponential, 2, 1) \ |
| 370 F(NumberToPrecision, 2, 1) \ | 370 F(NumberToPrecision, 2, 1) \ |
| 371 F(IsValidSmi, 1, 1) \ | 371 F(IsValidSmi, 1, 1) \ |
| 372 F(StringToNumber, 1, 1) \ | 372 F(StringToNumber, 1, 1) \ |
| 373 F(StringParseInt, 2, 1) \ | 373 F(StringParseInt, 2, 1) \ |
| 374 F(StringParseFloat, 1, 1) \ | 374 F(StringParseFloat, 1, 1) \ |
| 375 F(NumberToString, 1, 1) \ | 375 F(NumberToString, 1, 1) \ |
| 376 F(NumberToStringSkipCache, 1, 1) \ | 376 F(NumberToStringSkipCache, 1, 1) \ |
| 377 F(NumberToIntegerMapMinusZero, 1, 1) \ | |
| 378 F(NumberToSmi, 1, 1) \ | 377 F(NumberToSmi, 1, 1) \ |
| 379 F(SmiLexicographicCompare, 2, 1) \ | 378 F(SmiLexicographicCompare, 2, 1) \ |
| 380 F(MaxSmi, 0, 1) \ | 379 F(MaxSmi, 0, 1) \ |
| 381 F(IsSmi, 1, 1) \ | 380 F(IsSmi, 1, 1) \ |
| 382 F(GetRootNaN, 0, 1) \ | 381 F(GetRootNaN, 0, 1) \ |
| 383 F(GetHoleNaNUpper, 0, 1) \ | 382 F(GetHoleNaNUpper, 0, 1) \ |
| 384 F(GetHoleNaNLower, 0, 1) | 383 F(GetHoleNaNLower, 0, 1) |
| 385 | 384 |
| 386 #define FOR_EACH_INTRINSIC_OBJECT(F) \ | 385 #define FOR_EACH_INTRINSIC_OBJECT(F) \ |
| 387 F(GetPrototype, 1, 1) \ | 386 F(GetPrototype, 1, 1) \ |
| (...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 | 1153 |
| 1155 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1154 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1156 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1155 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1157 STATIC_ASSERT(LANGUAGE_END == 3); | 1156 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1158 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1157 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1159 | 1158 |
| 1160 } // namespace internal | 1159 } // namespace internal |
| 1161 } // namespace v8 | 1160 } // namespace v8 |
| 1162 | 1161 |
| 1163 #endif // V8_RUNTIME_RUNTIME_H_ | 1162 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |