| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 V(compare_ic_string, "==") \ | 285 V(compare_ic_string, "==") \ |
| 286 V(strict_compare_ic_string, "===") \ | 286 V(strict_compare_ic_string, "===") \ |
| 287 V(infinity_string, "Infinity") \ | 287 V(infinity_string, "Infinity") \ |
| 288 V(minus_infinity_string, "-Infinity") \ | 288 V(minus_infinity_string, "-Infinity") \ |
| 289 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ | 289 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ |
| 290 V(query_colon_string, "(?:)") \ | 290 V(query_colon_string, "(?:)") \ |
| 291 V(Generator_string, "Generator") \ | 291 V(Generator_string, "Generator") \ |
| 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 V(next_string, "next") \ |
| 296 V(byte_length_string, "byteLength") \ |
| 297 V(byte_offset_string, "byteOffset") \ |
| 298 V(buffer_string, "buffer") |
| 296 | 299 |
| 297 // Forward declarations. | 300 // Forward declarations. |
| 298 class GCTracer; | 301 class GCTracer; |
| 299 class HeapStats; | 302 class HeapStats; |
| 300 class Isolate; | 303 class Isolate; |
| 301 class WeakObjectRetainer; | 304 class WeakObjectRetainer; |
| 302 | 305 |
| 303 | 306 |
| 304 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, | 307 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, |
| 305 Object** pointer); | 308 Object** pointer); |
| (...skipping 2718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3024 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 3027 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 3025 | 3028 |
| 3026 private: | 3029 private: |
| 3027 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3030 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 3028 }; | 3031 }; |
| 3029 #endif // DEBUG | 3032 #endif // DEBUG |
| 3030 | 3033 |
| 3031 } } // namespace v8::internal | 3034 } } // namespace v8::internal |
| 3032 | 3035 |
| 3033 #endif // V8_HEAP_H_ | 3036 #endif // V8_HEAP_H_ |
| OLD | NEW |