| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 V(minus_infinity_string, "-Infinity") \ | 365 V(minus_infinity_string, "-Infinity") \ |
| 366 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ | 366 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ |
| 367 V(query_colon_string, "(?:)") \ | 367 V(query_colon_string, "(?:)") \ |
| 368 V(Generator_string, "Generator") \ | 368 V(Generator_string, "Generator") \ |
| 369 V(throw_string, "throw") \ | 369 V(throw_string, "throw") \ |
| 370 V(done_string, "done") \ | 370 V(done_string, "done") \ |
| 371 V(value_string, "value") \ | 371 V(value_string, "value") \ |
| 372 V(next_string, "next") \ | 372 V(next_string, "next") \ |
| 373 V(byte_length_string, "byteLength") \ | 373 V(byte_length_string, "byteLength") \ |
| 374 V(byte_offset_string, "byteOffset") \ | 374 V(byte_offset_string, "byteOffset") \ |
| 375 V(buffer_string, "buffer") | 375 V(buffer_string, "buffer") \ |
| 376 V(intl_initialized_marker_string, "v8::intl_initialized_marker") \ |
| 377 V(intl_impl_object_string, "v8::intl_object") |
| 376 | 378 |
| 377 // Forward declarations. | 379 // Forward declarations. |
| 378 class GCTracer; | 380 class GCTracer; |
| 379 class HeapStats; | 381 class HeapStats; |
| 380 class Isolate; | 382 class Isolate; |
| 381 class WeakObjectRetainer; | 383 class WeakObjectRetainer; |
| 382 | 384 |
| 383 | 385 |
| 384 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, | 386 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, |
| 385 Object** pointer); | 387 Object** pointer); |
| (...skipping 2752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3138 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 3140 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 3139 | 3141 |
| 3140 private: | 3142 private: |
| 3141 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3143 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 3142 }; | 3144 }; |
| 3143 #endif // DEBUG | 3145 #endif // DEBUG |
| 3144 | 3146 |
| 3145 } } // namespace v8::internal | 3147 } } // namespace v8::internal |
| 3146 | 3148 |
| 3147 #endif // V8_HEAP_H_ | 3149 #endif // V8_HEAP_H_ |
| OLD | NEW |