OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 9769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9780 V(kStrongRootList, "strong_root_list", "(Strong roots)") \ | 9780 V(kStrongRootList, "strong_root_list", "(Strong roots)") \ |
9781 V(kInternalizedString, "internalized_string", "(Internal string)") \ | 9781 V(kInternalizedString, "internalized_string", "(Internal string)") \ |
9782 V(kBootstrapper, "bootstrapper", "(Bootstrapper)") \ | 9782 V(kBootstrapper, "bootstrapper", "(Bootstrapper)") \ |
9783 V(kTop, "top", "(Isolate)") \ | 9783 V(kTop, "top", "(Isolate)") \ |
9784 V(kRelocatable, "relocatable", "(Relocatable)") \ | 9784 V(kRelocatable, "relocatable", "(Relocatable)") \ |
9785 V(kDebug, "debug", "(Debugger)") \ | 9785 V(kDebug, "debug", "(Debugger)") \ |
9786 V(kCompilationCache, "compilationcache", "(Compilation cache)") \ | 9786 V(kCompilationCache, "compilationcache", "(Compilation cache)") \ |
9787 V(kHandleScope, "handlescope", "(Handle scope)") \ | 9787 V(kHandleScope, "handlescope", "(Handle scope)") \ |
9788 V(kBuiltins, "builtins", "(Builtins)") \ | 9788 V(kBuiltins, "builtins", "(Builtins)") \ |
9789 V(kGlobalHandles, "globalhandles", "(Global handles)") \ | 9789 V(kGlobalHandles, "globalhandles", "(Global handles)") \ |
| 9790 V(kEternalHandles, "eternalhandles", "(Eternal handles)") \ |
9790 V(kThreadManager, "threadmanager", "(Thread manager)") \ | 9791 V(kThreadManager, "threadmanager", "(Thread manager)") \ |
9791 V(kExtensions, "Extensions", "(Extensions)") | 9792 V(kExtensions, "Extensions", "(Extensions)") |
9792 | 9793 |
9793 class VisitorSynchronization : public AllStatic { | 9794 class VisitorSynchronization : public AllStatic { |
9794 public: | 9795 public: |
9795 #define DECLARE_ENUM(enum_item, ignore1, ignore2) enum_item, | 9796 #define DECLARE_ENUM(enum_item, ignore1, ignore2) enum_item, |
9796 enum SyncTag { | 9797 enum SyncTag { |
9797 VISITOR_SYNCHRONIZATION_TAGS_LIST(DECLARE_ENUM) | 9798 VISITOR_SYNCHRONIZATION_TAGS_LIST(DECLARE_ENUM) |
9798 kNumberOfSyncTags | 9799 kNumberOfSyncTags |
9799 }; | 9800 }; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9899 } else { | 9900 } else { |
9900 value &= ~(1 << bit_position); | 9901 value &= ~(1 << bit_position); |
9901 } | 9902 } |
9902 return value; | 9903 return value; |
9903 } | 9904 } |
9904 }; | 9905 }; |
9905 | 9906 |
9906 } } // namespace v8::internal | 9907 } } // namespace v8::internal |
9907 | 9908 |
9908 #endif // V8_OBJECTS_H_ | 9909 #endif // V8_OBJECTS_H_ |
OLD | NEW |