Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: src/heap.h

Issue 230383002: Version 3.24.35.30 (rollback of r20375) (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.24
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/i18n.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 V(minus_infinity_string, "-Infinity") \ 349 V(minus_infinity_string, "-Infinity") \
350 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ 350 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \
351 V(query_colon_string, "(?:)") \ 351 V(query_colon_string, "(?:)") \
352 V(Generator_string, "Generator") \ 352 V(Generator_string, "Generator") \
353 V(throw_string, "throw") \ 353 V(throw_string, "throw") \
354 V(done_string, "done") \ 354 V(done_string, "done") \
355 V(value_string, "value") \ 355 V(value_string, "value") \
356 V(next_string, "next") \ 356 V(next_string, "next") \
357 V(byte_length_string, "byteLength") \ 357 V(byte_length_string, "byteLength") \
358 V(byte_offset_string, "byteOffset") \ 358 V(byte_offset_string, "byteOffset") \
359 V(buffer_string, "buffer") \ 359 V(buffer_string, "buffer")
360 V(intl_initialized_marker_string, "v8::intl_initialized_marker") \
361 V(intl_impl_object_string, "v8::intl_object")
362 360
363 // Forward declarations. 361 // Forward declarations.
364 class GCTracer; 362 class GCTracer;
365 class HeapStats; 363 class HeapStats;
366 class Isolate; 364 class Isolate;
367 class WeakObjectRetainer; 365 class WeakObjectRetainer;
368 366
369 367
370 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 368 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
371 Object** pointer); 369 Object** pointer);
(...skipping 2721 matching lines...) Expand 10 before | Expand all | Expand 10 after
3093 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3091 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3094 3092
3095 private: 3093 private:
3096 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3094 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3097 }; 3095 };
3098 #endif // DEBUG 3096 #endif // DEBUG
3099 3097
3100 } } // namespace v8::internal 3098 } } // namespace v8::internal
3101 3099
3102 #endif // V8_HEAP_H_ 3100 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/i18n.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698