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

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

Issue 1122083002: Remove materialized objects on stack unwind. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Tweaks, do not unwind the handler's frame Created 5 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/ppc/code-stubs-ppc.cc ('k') | src/runtime/runtime-internal.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/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 F(BreakIteratorBreakType, 1, 1) 264 F(BreakIteratorBreakType, 1, 1)
265 #else 265 #else
266 #define FOR_EACH_INTRINSIC_I18N(F) 266 #define FOR_EACH_INTRINSIC_I18N(F)
267 #endif 267 #endif
268 268
269 269
270 #define FOR_EACH_INTRINSIC_INTERNAL(F) \ 270 #define FOR_EACH_INTRINSIC_INTERNAL(F) \
271 F(CheckIsBootstrapping, 0, 1) \ 271 F(CheckIsBootstrapping, 0, 1) \
272 F(Throw, 1, 1) \ 272 F(Throw, 1, 1) \
273 F(ReThrow, 1, 1) \ 273 F(ReThrow, 1, 1) \
274 F(FindExceptionHandler, 0, 1) \ 274 F(UnwindAndFindExceptionHandler, 0, 1) \
275 F(PromoteScheduledException, 0, 1) \ 275 F(PromoteScheduledException, 0, 1) \
276 F(ThrowReferenceError, 1, 1) \ 276 F(ThrowReferenceError, 1, 1) \
277 F(ThrowIteratorResultNotAnObject, 1, 1) \ 277 F(ThrowIteratorResultNotAnObject, 1, 1) \
278 F(PromiseRejectEvent, 3, 1) \ 278 F(PromiseRejectEvent, 3, 1) \
279 F(PromiseRevokeReject, 1, 1) \ 279 F(PromiseRevokeReject, 1, 1) \
280 F(PromiseHasHandlerSymbol, 0, 1) \ 280 F(PromiseHasHandlerSymbol, 0, 1) \
281 F(StackGuard, 0, 1) \ 281 F(StackGuard, 0, 1) \
282 F(Interrupt, 0, 1) \ 282 F(Interrupt, 0, 1) \
283 F(AllocateInNewSpace, 1, 1) \ 283 F(AllocateInNewSpace, 1, 1) \
284 F(AllocateInTargetSpace, 2, 1) \ 284 F(AllocateInTargetSpace, 2, 1) \
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 864
865 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 865 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
866 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 866 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
867 STATIC_ASSERT(LANGUAGE_END == 3); 867 STATIC_ASSERT(LANGUAGE_END == 3);
868 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 868 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
869 869
870 } // namespace internal 870 } // namespace internal
871 } // namespace v8 871 } // namespace v8
872 872
873 #endif // V8_RUNTIME_RUNTIME_H_ 873 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/ppc/code-stubs-ppc.cc ('k') | src/runtime/runtime-internal.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698