| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 class MarkCompactCollector; | 149 class MarkCompactCollector; |
| 150 class NewSpace; | 150 class NewSpace; |
| 151 class Object; | 151 class Object; |
| 152 class MaybeObject; | 152 class MaybeObject; |
| 153 class OldSpace; | 153 class OldSpace; |
| 154 class Foreign; | 154 class Foreign; |
| 155 class Scope; | 155 class Scope; |
| 156 class ScopeInfo; | 156 class ScopeInfo; |
| 157 class Script; | 157 class Script; |
| 158 class Smi; | 158 class Smi; |
| 159 template <typename Config, class Allocator = FreeStoreAllocationPolicy> | 159 template <typename Config, class AllocationPolicy = FreeStoreAllocationPolicy> |
| 160 class SplayTree; | 160 class SplayTree; |
| 161 class String; | 161 class String; |
| 162 class Struct; | 162 class Struct; |
| 163 class Variable; | 163 class Variable; |
| 164 class RelocInfo; | 164 class RelocInfo; |
| 165 class Deserializer; | 165 class Deserializer; |
| 166 class MessageLocation; | 166 class MessageLocation; |
| 167 class ObjectGroup; | 167 class ObjectGroup; |
| 168 class TickSample; | 168 class TickSample; |
| 169 class VirtualMemory; | 169 class VirtualMemory; |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 | 553 |
| 554 enum ClearExceptionFlag { | 554 enum ClearExceptionFlag { |
| 555 KEEP_EXCEPTION, | 555 KEEP_EXCEPTION, |
| 556 CLEAR_EXCEPTION | 556 CLEAR_EXCEPTION |
| 557 }; | 557 }; |
| 558 | 558 |
| 559 | 559 |
| 560 } } // namespace v8::internal | 560 } } // namespace v8::internal |
| 561 | 561 |
| 562 #endif // V8_V8GLOBALS_H_ | 562 #endif // V8_V8GLOBALS_H_ |
| OLD | NEW |