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

Side by Side Diff: src/heap.h

Issue 15288011: Baseline for-of implementation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: s/syntax/semantics/ Created 7 years, 6 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 | « src/full-codegen.cc ('k') | src/ia32/full-codegen-ia32.cc » ('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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 V(compare_ic_string, "==") \ 289 V(compare_ic_string, "==") \
290 V(strict_compare_ic_string, "===") \ 290 V(strict_compare_ic_string, "===") \
291 V(infinity_string, "Infinity") \ 291 V(infinity_string, "Infinity") \
292 V(minus_infinity_string, "-Infinity") \ 292 V(minus_infinity_string, "-Infinity") \
293 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ 293 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \
294 V(query_colon_string, "(?:)") \ 294 V(query_colon_string, "(?:)") \
295 V(Generator_string, "Generator") \ 295 V(Generator_string, "Generator") \
296 V(send_string, "send") \ 296 V(send_string, "send") \
297 V(throw_string, "throw") \ 297 V(throw_string, "throw") \
298 V(done_string, "done") \ 298 V(done_string, "done") \
299 V(value_string, "value") 299 V(value_string, "value") \
300 V(next_string, "next")
300 301
301 // Forward declarations. 302 // Forward declarations.
302 class GCTracer; 303 class GCTracer;
303 class HeapStats; 304 class HeapStats;
304 class Isolate; 305 class Isolate;
305 class WeakObjectRetainer; 306 class WeakObjectRetainer;
306 307
307 308
308 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 309 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
309 Object** pointer); 310 Object** pointer);
(...skipping 2748 matching lines...) Expand 10 before | Expand all | Expand 10 after
3058 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3059 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3059 3060
3060 private: 3061 private:
3061 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3062 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3062 }; 3063 };
3063 #endif // DEBUG 3064 #endif // DEBUG
3064 3065
3065 } } // namespace v8::internal 3066 } } // namespace v8::internal
3066 3067
3067 #endif // V8_HEAP_H_ 3068 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698