Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Side by Side Diff: src/runtime/runtime.h

Issue 2077533002: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Import tests from Raymond. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 F(LiveEditCheckAndDropActivations, 3, 1) \ 348 F(LiveEditCheckAndDropActivations, 3, 1) \
349 F(LiveEditCompareStrings, 2, 1) \ 349 F(LiveEditCompareStrings, 2, 1) \
350 F(LiveEditRestartFrame, 2, 1) 350 F(LiveEditRestartFrame, 2, 1)
351 351
352 352
353 #define FOR_EACH_INTRINSIC_MATHS(F) \ 353 #define FOR_EACH_INTRINSIC_MATHS(F) \
354 F(DoubleHi, 1, 1) \ 354 F(DoubleHi, 1, 1) \
355 F(DoubleLo, 1, 1) \ 355 F(DoubleLo, 1, 1) \
356 F(ConstructDouble, 2, 1) \ 356 F(ConstructDouble, 2, 1) \
357 F(RemPiO2, 2, 1) \ 357 F(RemPiO2, 2, 1) \
358 F(MathExpRT, 1, 1) \
359 F(MathPow, 2, 1) \ 358 F(MathPow, 2, 1) \
360 F(MathPowRT, 2, 1) \ 359 F(MathPowRT, 2, 1) \
361 F(GenerateRandomNumbers, 1, 1) 360 F(GenerateRandomNumbers, 1, 1)
362 361
363 362
364 #define FOR_EACH_INTRINSIC_NUMBERS(F) \ 363 #define FOR_EACH_INTRINSIC_NUMBERS(F) \
365 F(NumberToRadixString, 2, 1) \ 364 F(NumberToRadixString, 2, 1) \
366 F(NumberToFixed, 2, 1) \ 365 F(NumberToFixed, 2, 1) \
367 F(NumberToExponential, 2, 1) \ 366 F(NumberToExponential, 2, 1) \
368 F(NumberToPrecision, 2, 1) \ 367 F(NumberToPrecision, 2, 1) \
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1143 1142
1144 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1143 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1145 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1144 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1146 STATIC_ASSERT(LANGUAGE_END == 3); 1145 STATIC_ASSERT(LANGUAGE_END == 3);
1147 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1146 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1148 1147
1149 } // namespace internal 1148 } // namespace internal
1150 } // namespace v8 1149 } // namespace v8
1151 1150
1152 #endif // V8_RUNTIME_RUNTIME_H_ 1151 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698