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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 class DebugInfo; | 118 class DebugInfo; |
119 class Descriptor; | 119 class Descriptor; |
120 class DescriptorArray; | 120 class DescriptorArray; |
121 class TransitionArray; | 121 class TransitionArray; |
122 class ExternalReference; | 122 class ExternalReference; |
123 class FixedArray; | 123 class FixedArray; |
124 class FunctionTemplateInfo; | 124 class FunctionTemplateInfo; |
125 class MemoryChunk; | 125 class MemoryChunk; |
126 class SeededNumberDictionary; | 126 class SeededNumberDictionary; |
127 class UnseededNumberDictionary; | 127 class UnseededNumberDictionary; |
128 class StringDictionary; | 128 class NameDictionary; |
129 template <typename T> class Handle; | 129 template <typename T> class Handle; |
130 class Heap; | 130 class Heap; |
131 class HeapObject; | 131 class HeapObject; |
132 class IC; | 132 class IC; |
133 class InterceptorInfo; | 133 class InterceptorInfo; |
| 134 class JSReceiver; |
134 class JSArray; | 135 class JSArray; |
135 class JSFunction; | 136 class JSFunction; |
136 class JSObject; | 137 class JSObject; |
137 class LargeObjectSpace; | 138 class LargeObjectSpace; |
138 class LookupResult; | 139 class LookupResult; |
139 class MacroAssembler; | 140 class MacroAssembler; |
140 class Map; | 141 class Map; |
141 class MapSpace; | 142 class MapSpace; |
142 class MarkCompactCollector; | 143 class MarkCompactCollector; |
143 class NewSpace; | 144 class NewSpace; |
144 class Object; | 145 class Object; |
145 class MaybeObject; | 146 class MaybeObject; |
146 class OldSpace; | 147 class OldSpace; |
147 class Foreign; | 148 class Foreign; |
148 class Scope; | 149 class Scope; |
149 class ScopeInfo; | 150 class ScopeInfo; |
150 class Script; | 151 class Script; |
151 class Smi; | 152 class Smi; |
152 template <typename Config, class Allocator = FreeStoreAllocationPolicy> | 153 template <typename Config, class Allocator = FreeStoreAllocationPolicy> |
153 class SplayTree; | 154 class SplayTree; |
154 class String; | 155 class String; |
| 156 class Name; |
155 class Struct; | 157 class Struct; |
156 class Variable; | 158 class Variable; |
157 class RelocInfo; | 159 class RelocInfo; |
158 class Deserializer; | 160 class Deserializer; |
159 class MessageLocation; | 161 class MessageLocation; |
160 class ObjectGroup; | 162 class ObjectGroup; |
161 class TickSample; | 163 class TickSample; |
162 class VirtualMemory; | 164 class VirtualMemory; |
163 class Mutex; | 165 class Mutex; |
164 | 166 |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 | 569 |
568 enum ClearExceptionFlag { | 570 enum ClearExceptionFlag { |
569 KEEP_EXCEPTION, | 571 KEEP_EXCEPTION, |
570 CLEAR_EXCEPTION | 572 CLEAR_EXCEPTION |
571 }; | 573 }; |
572 | 574 |
573 | 575 |
574 } } // namespace v8::internal | 576 } } // namespace v8::internal |
575 | 577 |
576 #endif // V8_V8GLOBALS_H_ | 578 #endif // V8_V8GLOBALS_H_ |
OLD | NEW |