| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 V(illegal_break_symbol, "illegal_break") \ | 202 V(illegal_break_symbol, "illegal_break") \ |
| 203 V(illegal_continue_symbol, "illegal_continue") \ | 203 V(illegal_continue_symbol, "illegal_continue") \ |
| 204 V(unknown_label_symbol, "unknown_label") \ | 204 V(unknown_label_symbol, "unknown_label") \ |
| 205 V(redeclaration_symbol, "redeclaration") \ | 205 V(redeclaration_symbol, "redeclaration") \ |
| 206 V(failure_symbol, "<failure>") \ | 206 V(failure_symbol, "<failure>") \ |
| 207 V(space_symbol, " ") \ | 207 V(space_symbol, " ") \ |
| 208 V(exec_symbol, "exec") \ | 208 V(exec_symbol, "exec") \ |
| 209 V(zero_symbol, "0") \ | 209 V(zero_symbol, "0") \ |
| 210 V(global_eval_symbol, "GlobalEval") \ | 210 V(global_eval_symbol, "GlobalEval") \ |
| 211 V(identity_hash_symbol, "v8::IdentityHash") \ | 211 V(identity_hash_symbol, "v8::IdentityHash") \ |
| 212 V(closure_symbol, "(closure)") | 212 V(closure_symbol, "(closure)") \ |
| 213 V(use_strict, "use strict") \ |
| 214 V(KeyedLoadExternalArray_symbol, "KeyedLoadExternalArray") \ |
| 215 V(KeyedStoreExternalArray_symbol, "KeyedStoreExternalArray") |
| 213 | 216 |
| 214 | 217 |
| 215 // Forward declarations. | 218 // Forward declarations. |
| 216 class GCTracer; | 219 class GCTracer; |
| 217 class HeapStats; | 220 class HeapStats; |
| 218 class Isolate; | 221 class Isolate; |
| 219 class WeakObjectRetainer; | 222 class WeakObjectRetainer; |
| 220 | 223 |
| 221 | 224 |
| 222 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, | 225 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, |
| (...skipping 1936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2159 // should be returned as in some GC situations the object has been moved. | 2162 // should be returned as in some GC situations the object has been moved. |
| 2160 virtual Object* RetainAs(Object* object) = 0; | 2163 virtual Object* RetainAs(Object* object) = 0; |
| 2161 }; | 2164 }; |
| 2162 | 2165 |
| 2163 | 2166 |
| 2164 } } // namespace v8::internal | 2167 } } // namespace v8::internal |
| 2165 | 2168 |
| 2166 #undef HEAP | 2169 #undef HEAP |
| 2167 | 2170 |
| 2168 #endif // V8_HEAP_H_ | 2171 #endif // V8_HEAP_H_ |
| OLD | NEW |