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

Side by Side Diff: src/runtime.h

Issue 8566009: Remove hidden prototype for builtin functions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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/math.js ('k') | src/runtime.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 F(GetIndexedInterceptorElementNames, 1, 1) \ 62 F(GetIndexedInterceptorElementNames, 1, 1) \
63 F(GetArgumentsProperty, 1, 1) \ 63 F(GetArgumentsProperty, 1, 1) \
64 F(ToFastProperties, 1, 1) \ 64 F(ToFastProperties, 1, 1) \
65 F(ToSlowProperties, 1, 1) \ 65 F(ToSlowProperties, 1, 1) \
66 F(FinishArrayPrototypeSetup, 1, 1) \ 66 F(FinishArrayPrototypeSetup, 1, 1) \
67 F(SpecialArrayFunctions, 1, 1) \ 67 F(SpecialArrayFunctions, 1, 1) \
68 F(GetDefaultReceiver, 1, 1) \ 68 F(GetDefaultReceiver, 1, 1) \
69 \ 69 \
70 F(GetPrototype, 1, 1) \ 70 F(GetPrototype, 1, 1) \
71 F(IsInPrototypeChain, 2, 1) \ 71 F(IsInPrototypeChain, 2, 1) \
72 F(SetHiddenPrototype, 2, 1) \
73 \ 72 \
74 F(IsConstructCall, 0, 1) \ 73 F(IsConstructCall, 0, 1) \
75 \ 74 \
76 F(GetOwnProperty, 2, 1) \ 75 F(GetOwnProperty, 2, 1) \
77 \ 76 \
78 F(IsExtensible, 1, 1) \ 77 F(IsExtensible, 1, 1) \
79 F(PreventExtensions, 1, 1)\ 78 F(PreventExtensions, 1, 1)\
80 \ 79 \
81 /* Utilities */ \ 80 /* Utilities */ \
82 F(CheckIsBootstrapping, 0, 1) \ 81 F(CheckIsBootstrapping, 0, 1) \
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 F(NumberSub, 2, 1) \ 136 F(NumberSub, 2, 1) \
138 F(NumberMul, 2, 1) \ 137 F(NumberMul, 2, 1) \
139 F(NumberDiv, 2, 1) \ 138 F(NumberDiv, 2, 1) \
140 F(NumberMod, 2, 1) \ 139 F(NumberMod, 2, 1) \
141 F(NumberUnaryMinus, 1, 1) \ 140 F(NumberUnaryMinus, 1, 1) \
142 F(NumberAlloc, 0, 1) \ 141 F(NumberAlloc, 0, 1) \
143 \ 142 \
144 F(StringAdd, 2, 1) \ 143 F(StringAdd, 2, 1) \
145 F(StringBuilderConcat, 3, 1) \ 144 F(StringBuilderConcat, 3, 1) \
146 F(StringBuilderJoin, 3, 1) \ 145 F(StringBuilderJoin, 3, 1) \
147 F(SparseJoinWithSeparator, 3, 1) \ 146 F(SparseJoinWithSeparator, 3, 1) \
148 \ 147 \
149 /* Bit operations */ \ 148 /* Bit operations */ \
150 F(NumberOr, 2, 1) \ 149 F(NumberOr, 2, 1) \
151 F(NumberAnd, 2, 1) \ 150 F(NumberAnd, 2, 1) \
152 F(NumberXor, 2, 1) \ 151 F(NumberXor, 2, 1) \
153 F(NumberNot, 1, 1) \ 152 F(NumberNot, 1, 1) \
154 \ 153 \
155 F(NumberShl, 2, 1) \ 154 F(NumberShl, 2, 1) \
156 F(NumberShr, 2, 1) \ 155 F(NumberShr, 2, 1) \
157 F(NumberSar, 2, 1) \ 156 F(NumberSar, 2, 1) \
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 //--------------------------------------------------------------------------- 687 //---------------------------------------------------------------------------
689 // Constants used by interface to runtime functions. 688 // Constants used by interface to runtime functions.
690 689
691 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 690 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
692 class DeclareGlobalsStrictModeFlag: public BitField<StrictModeFlag, 1, 1> {}; 691 class DeclareGlobalsStrictModeFlag: public BitField<StrictModeFlag, 1, 1> {};
693 class DeclareGlobalsNativeFlag: public BitField<bool, 2, 1> {}; 692 class DeclareGlobalsNativeFlag: public BitField<bool, 2, 1> {};
694 693
695 } } // namespace v8::internal 694 } } // namespace v8::internal
696 695
697 #endif // V8_RUNTIME_H_ 696 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/math.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698