| 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 class SplayTree; | 156 class SplayTree; |
| 157 class String; | 157 class String; |
| 158 class Name; | 158 class Name; |
| 159 class Struct; | 159 class Struct; |
| 160 class Variable; | 160 class Variable; |
| 161 class RelocInfo; | 161 class RelocInfo; |
| 162 class Deserializer; | 162 class Deserializer; |
| 163 class MessageLocation; | 163 class MessageLocation; |
| 164 class VirtualMemory; | 164 class VirtualMemory; |
| 165 class Mutex; | 165 class Mutex; |
| 166 class RecursiveMutex; |
| 166 | 167 |
| 167 typedef bool (*WeakSlotCallback)(Object** pointer); | 168 typedef bool (*WeakSlotCallback)(Object** pointer); |
| 168 | 169 |
| 169 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); | 170 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); |
| 170 | 171 |
| 171 // ----------------------------------------------------------------------------- | 172 // ----------------------------------------------------------------------------- |
| 172 // Miscellaneous | 173 // Miscellaneous |
| 173 | 174 |
| 174 // NOTE: SpaceIterator depends on AllocationSpace enumeration values being | 175 // NOTE: SpaceIterator depends on AllocationSpace enumeration values being |
| 175 // consecutive. | 176 // consecutive. |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 | 560 |
| 560 enum ClearExceptionFlag { | 561 enum ClearExceptionFlag { |
| 561 KEEP_EXCEPTION, | 562 KEEP_EXCEPTION, |
| 562 CLEAR_EXCEPTION | 563 CLEAR_EXCEPTION |
| 563 }; | 564 }; |
| 564 | 565 |
| 565 | 566 |
| 566 } } // namespace v8::internal | 567 } } // namespace v8::internal |
| 567 | 568 |
| 568 #endif // V8_V8GLOBALS_H_ | 569 #endif // V8_V8GLOBALS_H_ |
| OLD | NEW |