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

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

Issue 1928203002: [es8] More spec compliant syntactic tail calls implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Some STC tests ported for PTC Created 4 years, 7 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
« no previous file with comments | « src/parsing/preparser.cc ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 F(NeverOptimizeFunction, 1, 1) \ 863 F(NeverOptimizeFunction, 1, 1) \
864 F(GetOptimizationStatus, -1, 1) \ 864 F(GetOptimizationStatus, -1, 1) \
865 F(UnblockConcurrentRecompilation, 0, 1) \ 865 F(UnblockConcurrentRecompilation, 0, 1) \
866 F(GetOptimizationCount, 1, 1) \ 866 F(GetOptimizationCount, 1, 1) \
867 F(GetUndetectable, 0, 1) \ 867 F(GetUndetectable, 0, 1) \
868 F(ClearFunctionTypeFeedback, 1, 1) \ 868 F(ClearFunctionTypeFeedback, 1, 1) \
869 F(NotifyContextDisposed, 0, 1) \ 869 F(NotifyContextDisposed, 0, 1) \
870 F(SetAllocationTimeout, -1 /* 2 || 3 */, 1) \ 870 F(SetAllocationTimeout, -1 /* 2 || 3 */, 1) \
871 F(DebugPrint, 1, 1) \ 871 F(DebugPrint, 1, 1) \
872 F(DebugTrace, 0, 1) \ 872 F(DebugTrace, 0, 1) \
873 F(GetExceptionDetails, 1, 1) \
873 F(GlobalPrint, 1, 1) \ 874 F(GlobalPrint, 1, 1) \
874 F(SystemBreak, 0, 1) \ 875 F(SystemBreak, 0, 1) \
875 F(SetFlags, 1, 1) \ 876 F(SetFlags, 1, 1) \
876 F(Abort, 1, 1) \ 877 F(Abort, 1, 1) \
877 F(AbortJS, 1, 1) \ 878 F(AbortJS, 1, 1) \
878 F(NativeScriptsCount, 0, 1) \ 879 F(NativeScriptsCount, 0, 1) \
879 F(GetV8Version, 0, 1) \ 880 F(GetV8Version, 0, 1) \
880 F(DisassembleFunction, 1, 1) \ 881 F(DisassembleFunction, 1, 1) \
881 F(TraceEnter, 0, 1) \ 882 F(TraceEnter, 0, 1) \
882 F(TraceExit, 1, 1) \ 883 F(TraceExit, 1, 1) \
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 1160
1160 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1161 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1161 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1162 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1162 STATIC_ASSERT(LANGUAGE_END == 3); 1163 STATIC_ASSERT(LANGUAGE_END == 3);
1163 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1164 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1164 1165
1165 } // namespace internal 1166 } // namespace internal
1166 } // namespace v8 1167 } // namespace v8
1167 1168
1168 #endif // V8_RUNTIME_RUNTIME_H_ 1169 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/parsing/preparser.cc ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698