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

Side by Side Diff: src/heap.h

Issue 14582007: Implement yield* (delegating yield) (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Fix asm nits; rework test suite to test yield* on everything Created 7 years, 7 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
« no previous file with comments | « src/ast.h ('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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 V(closure_string, "(closure)") \ 266 V(closure_string, "(closure)") \
267 V(use_strict_string, "use strict") \ 267 V(use_strict_string, "use strict") \
268 V(dot_string, ".") \ 268 V(dot_string, ".") \
269 V(anonymous_function_string, "(anonymous function)") \ 269 V(anonymous_function_string, "(anonymous function)") \
270 V(compare_ic_string, "==") \ 270 V(compare_ic_string, "==") \
271 V(strict_compare_ic_string, "===") \ 271 V(strict_compare_ic_string, "===") \
272 V(infinity_string, "Infinity") \ 272 V(infinity_string, "Infinity") \
273 V(minus_infinity_string, "-Infinity") \ 273 V(minus_infinity_string, "-Infinity") \
274 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ 274 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \
275 V(query_colon_string, "(?:)") \ 275 V(query_colon_string, "(?:)") \
276 V(Generator_string, "Generator") 276 V(Generator_string, "Generator") \
277 V(send_string, "send") \
278 V(throw_string, "throw") \
279 V(done_string, "done") \
280 V(value_string, "value")
277 281
278 // Forward declarations. 282 // Forward declarations.
279 class GCTracer; 283 class GCTracer;
280 class HeapStats; 284 class HeapStats;
281 class Isolate; 285 class Isolate;
282 class WeakObjectRetainer; 286 class WeakObjectRetainer;
283 287
284 288
285 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 289 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
286 Object** pointer); 290 Object** pointer);
(...skipping 2775 matching lines...) Expand 10 before | Expand all | Expand 10 after
3062 AssertNoAllocation no_alloc; // i.e. no gc allowed. 3066 AssertNoAllocation no_alloc; // i.e. no gc allowed.
3063 3067
3064 private: 3068 private:
3065 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3069 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3066 }; 3070 };
3067 #endif // DEBUG 3071 #endif // DEBUG
3068 3072
3069 } } // namespace v8::internal 3073 } } // namespace v8::internal
3070 3074
3071 #endif // V8_HEAP_H_ 3075 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698