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

Side by Side Diff: src/builtins.h

Issue 177683002: Mode clean-up pt 1: rename classic/non-strict mode to sloppy mode (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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
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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ 130 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \
131 kNoExtraICState) \ 131 kNoExtraICState) \
132 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ 132 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \
133 kNoExtraICState) \ 133 kNoExtraICState) \
134 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \ 134 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \
135 kNoExtraICState) \ 135 kNoExtraICState) \
136 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ 136 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \
137 kNoExtraICState) \ 137 kNoExtraICState) \
138 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MONOMORPHIC, \ 138 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MONOMORPHIC, \
139 kNoExtraICState) \ 139 kNoExtraICState) \
140 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, MONOMORPHIC, \ 140 V(KeyedLoadIC_SloppyArguments, KEYED_LOAD_IC, MONOMORPHIC, \
141 kNoExtraICState) \ 141 kNoExtraICState) \
142 \ 142 \
143 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \ 143 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \
144 StoreIC::kStrictModeState) \ 144 StoreIC::kStrictModeState) \
145 \ 145 \
146 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ 146 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \
147 kNoExtraICState) \ 147 kNoExtraICState) \
148 V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \ 148 V(KeyedStoreIC_PreMonomorphic, KEYED_STORE_IC, PREMONOMORPHIC, \
149 kNoExtraICState) \ 149 kNoExtraICState) \
150 V(KeyedStoreIC_Generic, KEYED_STORE_IC, GENERIC, \ 150 V(KeyedStoreIC_Generic, KEYED_STORE_IC, GENERIC, \
151 kNoExtraICState) \ 151 kNoExtraICState) \
152 \ 152 \
153 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ 153 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \
154 StoreIC::kStrictModeState) \ 154 StoreIC::kStrictModeState) \
155 V(KeyedStoreIC_PreMonomorphic_Strict, KEYED_STORE_IC, PREMONOMORPHIC, \ 155 V(KeyedStoreIC_PreMonomorphic_Strict, KEYED_STORE_IC, PREMONOMORPHIC, \
156 StoreIC::kStrictModeState) \ 156 StoreIC::kStrictModeState) \
157 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, GENERIC, \ 157 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, GENERIC, \
158 StoreIC::kStrictModeState) \ 158 StoreIC::kStrictModeState) \
159 V(KeyedStoreIC_NonStrictArguments, KEYED_STORE_IC, MONOMORPHIC, \ 159 V(KeyedStoreIC_SloppyArguments, KEYED_STORE_IC, MONOMORPHIC, \
160 kNoExtraICState) \ 160 kNoExtraICState) \
161 \ 161 \
162 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ 162 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \
163 V(FunctionCall, BUILTIN, UNINITIALIZED, \ 163 V(FunctionCall, BUILTIN, UNINITIALIZED, \
164 kNoExtraICState) \ 164 kNoExtraICState) \
165 V(FunctionApply, BUILTIN, UNINITIALIZED, \ 165 V(FunctionApply, BUILTIN, UNINITIALIZED, \
166 kNoExtraICState) \ 166 kNoExtraICState) \
167 \ 167 \
168 V(InternalArrayCode, BUILTIN, UNINITIALIZED, \ 168 V(InternalArrayCode, BUILTIN, UNINITIALIZED, \
169 kNoExtraICState) \ 169 kNoExtraICState) \
170 V(ArrayCode, BUILTIN, UNINITIALIZED, \ 170 V(ArrayCode, BUILTIN, UNINITIALIZED, \
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 407
408 friend class BuiltinFunctionTable; 408 friend class BuiltinFunctionTable;
409 friend class Isolate; 409 friend class Isolate;
410 410
411 DISALLOW_COPY_AND_ASSIGN(Builtins); 411 DISALLOW_COPY_AND_ASSIGN(Builtins);
412 }; 412 };
413 413
414 } } // namespace v8::internal 414 } } // namespace v8::internal
415 415
416 #endif // V8_BUILTINS_H_ 416 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | src/globals.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698