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

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

Issue 10861007: Rename JSGlobalProxy::context to native_context, (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 4 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/objects-debug.cc ('k') | src/objects-printer.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 3654 matching lines...) Expand 10 before | Expand all | Expand 10 after
3665 ACCESSORS(Map, constructor, Object, kConstructorOffset) 3665 ACCESSORS(Map, constructor, Object, kConstructorOffset)
3666 3666
3667 ACCESSORS(JSFunction, shared, SharedFunctionInfo, kSharedFunctionInfoOffset) 3667 ACCESSORS(JSFunction, shared, SharedFunctionInfo, kSharedFunctionInfoOffset)
3668 ACCESSORS(JSFunction, literals_or_bindings, FixedArray, kLiteralsOffset) 3668 ACCESSORS(JSFunction, literals_or_bindings, FixedArray, kLiteralsOffset)
3669 ACCESSORS(JSFunction, next_function_link, Object, kNextFunctionLinkOffset) 3669 ACCESSORS(JSFunction, next_function_link, Object, kNextFunctionLinkOffset)
3670 3670
3671 ACCESSORS(GlobalObject, builtins, JSBuiltinsObject, kBuiltinsOffset) 3671 ACCESSORS(GlobalObject, builtins, JSBuiltinsObject, kBuiltinsOffset)
3672 ACCESSORS(GlobalObject, native_context, Context, kNativeContextOffset) 3672 ACCESSORS(GlobalObject, native_context, Context, kNativeContextOffset)
3673 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) 3673 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset)
3674 3674
3675 ACCESSORS(JSGlobalProxy, context, Object, kContextOffset) 3675 ACCESSORS(JSGlobalProxy, native_context, Object, kNativeContextOffset)
3676 3676
3677 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) 3677 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset)
3678 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) 3678 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset)
3679 ACCESSORS(AccessorInfo, data, Object, kDataOffset) 3679 ACCESSORS(AccessorInfo, data, Object, kDataOffset)
3680 ACCESSORS(AccessorInfo, name, Object, kNameOffset) 3680 ACCESSORS(AccessorInfo, name, Object, kNameOffset)
3681 ACCESSORS_TO_SMI(AccessorInfo, flag, kFlagOffset) 3681 ACCESSORS_TO_SMI(AccessorInfo, flag, kFlagOffset)
3682 ACCESSORS(AccessorInfo, expected_receiver_type, Object, 3682 ACCESSORS(AccessorInfo, expected_receiver_type, Object,
3683 kExpectedReceiverTypeOffset) 3683 kExpectedReceiverTypeOffset)
3684 3684
3685 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) 3685 ACCESSORS(AccessorPair, getter, Object, kGetterOffset)
(...skipping 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after
5312 #undef WRITE_UINT32_FIELD 5312 #undef WRITE_UINT32_FIELD
5313 #undef READ_SHORT_FIELD 5313 #undef READ_SHORT_FIELD
5314 #undef WRITE_SHORT_FIELD 5314 #undef WRITE_SHORT_FIELD
5315 #undef READ_BYTE_FIELD 5315 #undef READ_BYTE_FIELD
5316 #undef WRITE_BYTE_FIELD 5316 #undef WRITE_BYTE_FIELD
5317 5317
5318 5318
5319 } } // namespace v8::internal 5319 } } // namespace v8::internal
5320 5320
5321 #endif // V8_OBJECTS_INL_H_ 5321 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects-debug.cc ('k') | src/objects-printer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698