Chromium Code Reviews| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 228 V(failure_symbol, "<failure>") \ | 228 V(failure_symbol, "<failure>") \ |
| 229 V(space_symbol, " ") \ | 229 V(space_symbol, " ") \ |
| 230 V(exec_symbol, "exec") \ | 230 V(exec_symbol, "exec") \ |
| 231 V(zero_symbol, "0") \ | 231 V(zero_symbol, "0") \ |
| 232 V(global_eval_symbol, "GlobalEval") \ | 232 V(global_eval_symbol, "GlobalEval") \ |
| 233 V(identity_hash_symbol, "v8::IdentityHash") \ | 233 V(identity_hash_symbol, "v8::IdentityHash") \ |
| 234 V(closure_symbol, "(closure)") \ | 234 V(closure_symbol, "(closure)") \ |
| 235 V(use_strict, "use strict") \ | 235 V(use_strict, "use strict") \ |
| 236 V(dot_symbol, ".") \ | 236 V(dot_symbol, ".") \ |
| 237 V(anonymous_function_symbol, "(anonymous function)") \ | 237 V(anonymous_function_symbol, "(anonymous function)") \ |
| 238 V(compare_ic_symbol, "compare_ic") \ | |
|
Kevin Millikin (Chromium)
2011/12/08 13:38:15
Maybe choose a symbol that isn't a valid identifie
Rico
2011/12/08 15:54:56
Done.
| |
| 238 V(infinity_symbol, "Infinity") \ | 239 V(infinity_symbol, "Infinity") \ |
| 239 V(minus_infinity_symbol, "-Infinity") | 240 V(minus_infinity_symbol, "-Infinity") |
| 240 | 241 |
| 241 // Forward declarations. | 242 // Forward declarations. |
| 242 class GCTracer; | 243 class GCTracer; |
| 243 class HeapStats; | 244 class HeapStats; |
| 244 class Isolate; | 245 class Isolate; |
| 245 class WeakObjectRetainer; | 246 class WeakObjectRetainer; |
| 246 | 247 |
| 247 | 248 |
| (...skipping 2281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2529 | 2530 |
| 2530 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2531 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2531 }; | 2532 }; |
| 2532 #endif // DEBUG || LIVE_OBJECT_LIST | 2533 #endif // DEBUG || LIVE_OBJECT_LIST |
| 2533 | 2534 |
| 2534 } } // namespace v8::internal | 2535 } } // namespace v8::internal |
| 2535 | 2536 |
| 2536 #undef HEAP | 2537 #undef HEAP |
| 2537 | 2538 |
| 2538 #endif // V8_HEAP_H_ | 2539 #endif // V8_HEAP_H_ |
| OLD | NEW |