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

Side by Side Diff: src/globals.h

Issue 426233002: Land the Fan (disabled) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback, rebase and "git cl format" Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « src/gdb-jit.cc ('k') | src/hydrogen.h » ('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_GLOBALS_H_ 5 #ifndef V8_GLOBALS_H_
6 #define V8_GLOBALS_H_ 6 #define V8_GLOBALS_H_
7 7
8 #include "include/v8stdint.h" 8 #include "include/v8stdint.h"
9 9
10 #include "src/base/build_config.h" 10 #include "src/base/build_config.h"
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 // 715 //
716 // The following enum specifies a flag that indicates if the binding needs a 716 // The following enum specifies a flag that indicates if the binding needs a
717 // distinct initialization step (kNeedsInitialization) or if the binding is 717 // distinct initialization step (kNeedsInitialization) or if the binding is
718 // immediately initialized upon creation (kCreatedInitialized). 718 // immediately initialized upon creation (kCreatedInitialized).
719 enum InitializationFlag { 719 enum InitializationFlag {
720 kNeedsInitialization, 720 kNeedsInitialization,
721 kCreatedInitialized 721 kCreatedInitialized
722 }; 722 };
723 723
724 724
725 enum MaybeAssignedFlag { kNotAssigned, kMaybeAssigned };
726
727
725 enum ClearExceptionFlag { 728 enum ClearExceptionFlag {
726 KEEP_EXCEPTION, 729 KEEP_EXCEPTION,
727 CLEAR_EXCEPTION 730 CLEAR_EXCEPTION
728 }; 731 };
729 732
730 733
731 enum MinusZeroMode { 734 enum MinusZeroMode {
732 TREAT_MINUS_ZERO_AS_ZERO, 735 TREAT_MINUS_ZERO_AS_ZERO,
733 FAIL_ON_MINUS_ZERO 736 FAIL_ON_MINUS_ZERO
734 }; 737 };
735 738
736 } } // namespace v8::internal 739 } } // namespace v8::internal
737 740
738 namespace i = v8::internal; 741 namespace i = v8::internal;
739 742
740 #endif // V8_GLOBALS_H_ 743 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « src/gdb-jit.cc ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698