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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 template <typename Config, class Allocator = FreeStoreAllocationPolicy> | 156 template <typename Config, class Allocator = FreeStoreAllocationPolicy> |
157 class SplayTree; | 157 class SplayTree; |
158 class String; | 158 class String; |
159 class Name; | 159 class Name; |
160 class Struct; | 160 class Struct; |
161 class Variable; | 161 class Variable; |
162 class RelocInfo; | 162 class RelocInfo; |
163 class Deserializer; | 163 class Deserializer; |
164 class MessageLocation; | 164 class MessageLocation; |
165 class ObjectGroup; | 165 class ObjectGroup; |
166 class TickSample; | |
167 class VirtualMemory; | 166 class VirtualMemory; |
168 class Mutex; | 167 class Mutex; |
169 | 168 |
170 typedef bool (*WeakSlotCallback)(Object** pointer); | 169 typedef bool (*WeakSlotCallback)(Object** pointer); |
171 | 170 |
172 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); | 171 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); |
173 | 172 |
174 // ----------------------------------------------------------------------------- | 173 // ----------------------------------------------------------------------------- |
175 // Miscellaneous | 174 // Miscellaneous |
176 | 175 |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 | 570 |
572 enum ClearExceptionFlag { | 571 enum ClearExceptionFlag { |
573 KEEP_EXCEPTION, | 572 KEEP_EXCEPTION, |
574 CLEAR_EXCEPTION | 573 CLEAR_EXCEPTION |
575 }; | 574 }; |
576 | 575 |
577 | 576 |
578 } } // namespace v8::internal | 577 } } // namespace v8::internal |
579 | 578 |
580 #endif // V8_V8GLOBALS_H_ | 579 #endif // V8_V8GLOBALS_H_ |
OLD | NEW |