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

Side by Side Diff: src/heap.h

Issue 220673002: Revert r20375. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 V(minus_infinity_string, "-Infinity") \ 369 V(minus_infinity_string, "-Infinity") \
370 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ 370 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \
371 V(query_colon_string, "(?:)") \ 371 V(query_colon_string, "(?:)") \
372 V(Generator_string, "Generator") \ 372 V(Generator_string, "Generator") \
373 V(throw_string, "throw") \ 373 V(throw_string, "throw") \
374 V(done_string, "done") \ 374 V(done_string, "done") \
375 V(value_string, "value") \ 375 V(value_string, "value") \
376 V(next_string, "next") \ 376 V(next_string, "next") \
377 V(byte_length_string, "byteLength") \ 377 V(byte_length_string, "byteLength") \
378 V(byte_offset_string, "byteOffset") \ 378 V(byte_offset_string, "byteOffset") \
379 V(buffer_string, "buffer") \ 379 V(buffer_string, "buffer")
380 V(intl_initialized_marker_string, "v8::intl_initialized_marker") \
381 V(intl_impl_object_string, "v8::intl_object")
382 380
383 // Forward declarations. 381 // Forward declarations.
384 class GCTracer; 382 class GCTracer;
385 class HeapStats; 383 class HeapStats;
386 class Isolate; 384 class Isolate;
387 class WeakObjectRetainer; 385 class WeakObjectRetainer;
388 386
389 387
390 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 388 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
391 Object** pointer); 389 Object** pointer);
(...skipping 2752 matching lines...) Expand 10 before | Expand all | Expand 10 after
3144 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3142 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3145 3143
3146 private: 3144 private:
3147 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3145 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3148 }; 3146 };
3149 #endif // DEBUG 3147 #endif // DEBUG
3150 3148
3151 } } // namespace v8::internal 3149 } } // namespace v8::internal
3152 3150
3153 #endif // V8_HEAP_H_ 3151 #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