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

Side by Side Diff: src/v8globals.h

Issue 12957004: ES6 symbols: turn symbols into a proper primitive type (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 7 years, 9 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/type-info.cc ('k') | src/v8natives.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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 // Receiver might implicitly be the global objects. If it is, the 289 // Receiver might implicitly be the global objects. If it is, the
290 // hole is passed to the call function stub. 290 // hole is passed to the call function stub.
291 RECEIVER_MIGHT_BE_IMPLICIT = 1 << 0, 291 RECEIVER_MIGHT_BE_IMPLICIT = 1 << 0,
292 // The call target is cached in the instruction stream. 292 // The call target is cached in the instruction stream.
293 RECORD_CALL_TARGET = 1 << 1 293 RECORD_CALL_TARGET = 1 << 1
294 }; 294 };
295 295
296 296
297 enum InlineCacheHolderFlag { 297 enum InlineCacheHolderFlag {
298 OWN_MAP, // For fast properties objects. 298 OWN_MAP, // For fast properties objects.
299 DELEGATE_MAP // For slow properties objects (except GlobalObjects). 299 PROTOTYPE_MAP // For slow properties objects (except GlobalObjects).
300 }; 300 };
301 301
302 302
303 // The Store Buffer (GC). 303 // The Store Buffer (GC).
304 typedef enum { 304 typedef enum {
305 kStoreBufferFullEvent, 305 kStoreBufferFullEvent,
306 kStoreBufferStartScanningPagesEvent, 306 kStoreBufferStartScanningPagesEvent,
307 kStoreBufferScanningPageEvent 307 kStoreBufferScanningPageEvent
308 } StoreBufferEvent; 308 } StoreBufferEvent;
309 309
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 572
573 enum ClearExceptionFlag { 573 enum ClearExceptionFlag {
574 KEEP_EXCEPTION, 574 KEEP_EXCEPTION,
575 CLEAR_EXCEPTION 575 CLEAR_EXCEPTION
576 }; 576 };
577 577
578 578
579 } } // namespace v8::internal 579 } } // namespace v8::internal
580 580
581 #endif // V8_V8GLOBALS_H_ 581 #endif // V8_V8GLOBALS_H_
OLDNEW
« no previous file with comments | « src/type-info.cc ('k') | src/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698