OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |