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

Side by Side Diff: src/objects.h

Issue 10876067: Introduce global contexts to represent lexical global scope(s). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Sven's comments. Created 8 years, 3 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/mips/full-codegen-mips.cc ('k') | src/objects-debug.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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 V(Map) \ 802 V(Map) \
803 V(DescriptorArray) \ 803 V(DescriptorArray) \
804 V(TransitionArray) \ 804 V(TransitionArray) \
805 V(DeoptimizationInputData) \ 805 V(DeoptimizationInputData) \
806 V(DeoptimizationOutputData) \ 806 V(DeoptimizationOutputData) \
807 V(TypeFeedbackCells) \ 807 V(TypeFeedbackCells) \
808 V(FixedArray) \ 808 V(FixedArray) \
809 V(FixedDoubleArray) \ 809 V(FixedDoubleArray) \
810 V(Context) \ 810 V(Context) \
811 V(NativeContext) \ 811 V(NativeContext) \
812 V(ModuleContext) \
813 V(ScopeInfo) \ 812 V(ScopeInfo) \
814 V(JSFunction) \ 813 V(JSFunction) \
815 V(Code) \ 814 V(Code) \
816 V(Oddball) \ 815 V(Oddball) \
817 V(SharedFunctionInfo) \ 816 V(SharedFunctionInfo) \
818 V(JSValue) \ 817 V(JSValue) \
819 V(JSDate) \ 818 V(JSDate) \
820 V(JSMessageObject) \ 819 V(JSMessageObject) \
821 V(StringWrapper) \ 820 V(StringWrapper) \
822 V(Foreign) \ 821 V(Foreign) \
(...skipping 8111 matching lines...) Expand 10 before | Expand all | Expand 10 after
8934 } else { 8933 } else {
8935 value &= ~(1 << bit_position); 8934 value &= ~(1 << bit_position);
8936 } 8935 }
8937 return value; 8936 return value;
8938 } 8937 }
8939 }; 8938 };
8940 8939
8941 } } // namespace v8::internal 8940 } } // namespace v8::internal
8942 8941
8943 #endif // V8_OBJECTS_H_ 8942 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips/full-codegen-mips.cc ('k') | src/objects-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698