| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 V(redeclaration_symbol, "redeclaration") \ | 218 V(redeclaration_symbol, "redeclaration") \ |
| 219 V(failure_symbol, "<failure>") \ | 219 V(failure_symbol, "<failure>") \ |
| 220 V(space_symbol, " ") \ | 220 V(space_symbol, " ") \ |
| 221 V(exec_symbol, "exec") \ | 221 V(exec_symbol, "exec") \ |
| 222 V(zero_symbol, "0") \ | 222 V(zero_symbol, "0") \ |
| 223 V(global_eval_symbol, "GlobalEval") \ | 223 V(global_eval_symbol, "GlobalEval") \ |
| 224 V(identity_hash_symbol, "v8::IdentityHash") \ | 224 V(identity_hash_symbol, "v8::IdentityHash") \ |
| 225 V(closure_symbol, "(closure)") \ | 225 V(closure_symbol, "(closure)") \ |
| 226 V(use_strict, "use strict") \ | 226 V(use_strict, "use strict") \ |
| 227 V(dot_symbol, ".") \ | 227 V(dot_symbol, ".") \ |
| 228 V(anonymous_function_symbol, "(anonymous function)") \ | 228 V(anonymous_function_symbol, "(anonymous function)") |
| 229 V(block_scope_symbol, ".block") | |
| 230 | 229 |
| 231 // Forward declarations. | 230 // Forward declarations. |
| 232 class GCTracer; | 231 class GCTracer; |
| 233 class HeapStats; | 232 class HeapStats; |
| 234 class Isolate; | 233 class Isolate; |
| 235 class WeakObjectRetainer; | 234 class WeakObjectRetainer; |
| 236 | 235 |
| 237 | 236 |
| 238 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, | 237 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, |
| 239 Object** pointer); | 238 Object** pointer); |
| (...skipping 2080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2320 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2319 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2321 }; | 2320 }; |
| 2322 #endif // DEBUG || LIVE_OBJECT_LIST | 2321 #endif // DEBUG || LIVE_OBJECT_LIST |
| 2323 | 2322 |
| 2324 | 2323 |
| 2325 } } // namespace v8::internal | 2324 } } // namespace v8::internal |
| 2326 | 2325 |
| 2327 #undef HEAP | 2326 #undef HEAP |
| 2328 | 2327 |
| 2329 #endif // V8_HEAP_H_ | 2328 #endif // V8_HEAP_H_ |
| OLD | NEW |