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

Side by Side Diff: src/objects-inl.h

Issue 5188006: Push version 2.5.7 to trunk.... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 10 years, 1 month 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/objects-debug.cc ('k') | src/parser.h » ('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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 2524 matching lines...) Expand 10 before | Expand all | Expand 10 after
2535 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset) 2535 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset)
2536 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) 2536 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset)
2537 2537
2538 ACCESSORS(JSGlobalProxy, context, Object, kContextOffset) 2538 ACCESSORS(JSGlobalProxy, context, Object, kContextOffset)
2539 2539
2540 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) 2540 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset)
2541 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) 2541 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset)
2542 ACCESSORS(AccessorInfo, data, Object, kDataOffset) 2542 ACCESSORS(AccessorInfo, data, Object, kDataOffset)
2543 ACCESSORS(AccessorInfo, name, Object, kNameOffset) 2543 ACCESSORS(AccessorInfo, name, Object, kNameOffset)
2544 ACCESSORS(AccessorInfo, flag, Smi, kFlagOffset) 2544 ACCESSORS(AccessorInfo, flag, Smi, kFlagOffset)
2545 ACCESSORS(AccessorInfo, load_stub_cache, Object, kLoadStubCacheOffset)
2546 2545
2547 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) 2546 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset)
2548 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) 2547 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset)
2549 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) 2548 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset)
2550 2549
2551 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) 2550 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset)
2552 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) 2551 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset)
2553 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) 2552 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset)
2554 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) 2553 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset)
2555 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) 2554 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset)
2556 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) 2555 ACCESSORS(InterceptorInfo, data, Object, kDataOffset)
2557 2556
2558 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset) 2557 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset)
2559 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset) 2558 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset)
2560 ACCESSORS(CallHandlerInfo, call_stub_cache, Object, kCallStubCacheOffset)
2561 2559
2562 ACCESSORS(TemplateInfo, tag, Object, kTagOffset) 2560 ACCESSORS(TemplateInfo, tag, Object, kTagOffset)
2563 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset) 2561 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset)
2564 2562
2565 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset) 2563 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset)
2566 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset) 2564 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset)
2567 ACCESSORS(FunctionTemplateInfo, property_accessors, Object, 2565 ACCESSORS(FunctionTemplateInfo, property_accessors, Object,
2568 kPropertyAccessorsOffset) 2566 kPropertyAccessorsOffset)
2569 ACCESSORS(FunctionTemplateInfo, prototype_template, Object, 2567 ACCESSORS(FunctionTemplateInfo, prototype_template, Object,
2570 kPrototypeTemplateOffset) 2568 kPrototypeTemplateOffset)
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
3587 #undef WRITE_INT_FIELD 3585 #undef WRITE_INT_FIELD
3588 #undef READ_SHORT_FIELD 3586 #undef READ_SHORT_FIELD
3589 #undef WRITE_SHORT_FIELD 3587 #undef WRITE_SHORT_FIELD
3590 #undef READ_BYTE_FIELD 3588 #undef READ_BYTE_FIELD
3591 #undef WRITE_BYTE_FIELD 3589 #undef WRITE_BYTE_FIELD
3592 3590
3593 3591
3594 } } // namespace v8::internal 3592 } } // namespace v8::internal
3595 3593
3596 #endif // V8_OBJECTS_INL_H_ 3594 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects-debug.cc ('k') | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698