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

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

Issue 917753002: new classes: implement default constructors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase to run try jobs Created 5 years, 10 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/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 // with a native call of the form %_name from within JS code. 647 // with a native call of the form %_name from within JS code.
648 // Entries have the form F(name, number of arguments, number of return values). 648 // Entries have the form F(name, number of arguments, number of return values).
649 #define INLINE_FUNCTION_LIST(F) \ 649 #define INLINE_FUNCTION_LIST(F) \
650 F(IsSmi, 1, 1) \ 650 F(IsSmi, 1, 1) \
651 F(IsNonNegativeSmi, 1, 1) \ 651 F(IsNonNegativeSmi, 1, 1) \
652 F(IsArray, 1, 1) \ 652 F(IsArray, 1, 1) \
653 F(IsRegExp, 1, 1) \ 653 F(IsRegExp, 1, 1) \
654 F(IsJSProxy, 1, 1) \ 654 F(IsJSProxy, 1, 1) \
655 F(IsConstructCall, 0, 1) \ 655 F(IsConstructCall, 0, 1) \
656 F(CallFunction, -1 /* receiver + n args + function */, 1) \ 656 F(CallFunction, -1 /* receiver + n args + function */, 1) \
657 F(DefaultConstructorCallSuper, 0, 1) \
657 F(ArgumentsLength, 0, 1) \ 658 F(ArgumentsLength, 0, 1) \
658 F(Arguments, 1, 1) \ 659 F(Arguments, 1, 1) \
659 F(ValueOf, 1, 1) \ 660 F(ValueOf, 1, 1) \
660 F(SetValueOf, 2, 1) \ 661 F(SetValueOf, 2, 1) \
661 F(DateField, 2 /* date object, field index */, 1) \ 662 F(DateField, 2 /* date object, field index */, 1) \
662 F(StringCharFromCode, 1, 1) \ 663 F(StringCharFromCode, 1, 1) \
663 F(StringCharAt, 2, 1) \ 664 F(StringCharAt, 2, 1) \
664 F(OneByteSeqStringSetChar, 3, 1) \ 665 F(OneByteSeqStringSetChar, 3, 1) \
665 F(TwoByteSeqStringSetChar, 3, 1) \ 666 F(TwoByteSeqStringSetChar, 3, 1) \
666 F(ObjectEquals, 2, 1) \ 667 F(ObjectEquals, 2, 1) \
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 897
897 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 898 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
898 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 899 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
899 STATIC_ASSERT(LANGUAGE_END == 3); 900 STATIC_ASSERT(LANGUAGE_END == 3);
900 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 901 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
901 902
902 } // namespace internal 903 } // namespace internal
903 } // namespace v8 904 } // namespace v8
904 905
905 #endif // V8_RUNTIME_RUNTIME_H_ 906 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/parser.cc ('k') | src/runtime/runtime-classes.cc » ('j') | src/x64/code-stubs-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698