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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 V(compare_ic_string, "==") \ | 284 V(compare_ic_string, "==") \ |
285 V(strict_compare_ic_string, "===") \ | 285 V(strict_compare_ic_string, "===") \ |
286 V(infinity_string, "Infinity") \ | 286 V(infinity_string, "Infinity") \ |
287 V(minus_infinity_string, "-Infinity") \ | 287 V(minus_infinity_string, "-Infinity") \ |
288 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ | 288 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ |
289 V(query_colon_string, "(?:)") \ | 289 V(query_colon_string, "(?:)") \ |
290 V(Generator_string, "Generator") \ | 290 V(Generator_string, "Generator") \ |
291 V(send_string, "send") \ | 291 V(send_string, "send") \ |
292 V(throw_string, "throw") \ | 292 V(throw_string, "throw") \ |
293 V(done_string, "done") \ | 293 V(done_string, "done") \ |
294 V(value_string, "value") | 294 V(value_string, "value") \ |
| 295 V(next_string, "next") |
295 | 296 |
296 // Forward declarations. | 297 // Forward declarations. |
297 class GCTracer; | 298 class GCTracer; |
298 class HeapStats; | 299 class HeapStats; |
299 class Isolate; | 300 class Isolate; |
300 class WeakObjectRetainer; | 301 class WeakObjectRetainer; |
301 | 302 |
302 | 303 |
303 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, | 304 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, |
304 Object** pointer); | 305 Object** pointer); |
(...skipping 2802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3107 AssertNoAllocation no_alloc; // i.e. no gc allowed. | 3108 AssertNoAllocation no_alloc; // i.e. no gc allowed. |
3108 | 3109 |
3109 private: | 3110 private: |
3110 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3111 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3111 }; | 3112 }; |
3112 #endif // DEBUG | 3113 #endif // DEBUG |
3113 | 3114 |
3114 } } // namespace v8::internal | 3115 } } // namespace v8::internal |
3115 | 3116 |
3116 #endif // V8_HEAP_H_ | 3117 #endif // V8_HEAP_H_ |
OLD | NEW |