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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 V(compare_ic_string, "==") \ | 289 V(compare_ic_string, "==") \ |
290 V(strict_compare_ic_string, "===") \ | 290 V(strict_compare_ic_string, "===") \ |
291 V(infinity_string, "Infinity") \ | 291 V(infinity_string, "Infinity") \ |
292 V(minus_infinity_string, "-Infinity") \ | 292 V(minus_infinity_string, "-Infinity") \ |
293 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ | 293 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ |
294 V(query_colon_string, "(?:)") \ | 294 V(query_colon_string, "(?:)") \ |
295 V(Generator_string, "Generator") \ | 295 V(Generator_string, "Generator") \ |
296 V(send_string, "send") \ | 296 V(send_string, "send") \ |
297 V(throw_string, "throw") \ | 297 V(throw_string, "throw") \ |
298 V(done_string, "done") \ | 298 V(done_string, "done") \ |
299 V(value_string, "value") | 299 V(value_string, "value") \ |
| 300 V(next_string, "next") |
300 | 301 |
301 // Forward declarations. | 302 // Forward declarations. |
302 class GCTracer; | 303 class GCTracer; |
303 class HeapStats; | 304 class HeapStats; |
304 class Isolate; | 305 class Isolate; |
305 class WeakObjectRetainer; | 306 class WeakObjectRetainer; |
306 | 307 |
307 | 308 |
308 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, | 309 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, |
309 Object** pointer); | 310 Object** pointer); |
(...skipping 2748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3058 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 3059 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
3059 | 3060 |
3060 private: | 3061 private: |
3061 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3062 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3062 }; | 3063 }; |
3063 #endif // DEBUG | 3064 #endif // DEBUG |
3064 | 3065 |
3065 } } // namespace v8::internal | 3066 } } // namespace v8::internal |
3066 | 3067 |
3067 #endif // V8_HEAP_H_ | 3068 #endif // V8_HEAP_H_ |
OLD | NEW |