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

Side by Side Diff: src/builtins.h

Issue 17162002: Version 3.19.17. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 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/assembler.h ('k') | src/builtins.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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 Code::kNoExtraICState) \ 159 Code::kNoExtraICState) \
160 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, MONOMORPHIC, \ 160 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, MONOMORPHIC, \
161 Code::kNoExtraICState) \ 161 Code::kNoExtraICState) \
162 \ 162 \
163 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \ 163 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \
164 Code::kNoExtraICState) \ 164 Code::kNoExtraICState) \
165 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \ 165 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \
166 Code::kNoExtraICState) \ 166 Code::kNoExtraICState) \
167 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \ 167 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \
168 Code::kNoExtraICState) \ 168 Code::kNoExtraICState) \
169 V(StoreIC_Generic, STORE_IC, GENERIC, \
170 Code::kNoExtraICState) \
171 V(StoreIC_Generic_Strict, STORE_IC, GENERIC, \
172 kStrictMode) \
173 V(StoreIC_GlobalProxy, STORE_IC, GENERIC, \ 169 V(StoreIC_GlobalProxy, STORE_IC, GENERIC, \
174 Code::kNoExtraICState) \ 170 Code::kNoExtraICState) \
175 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \ 171 V(StoreIC_Initialize_Strict, STORE_IC, UNINITIALIZED, \
176 kStrictMode) \ 172 kStrictMode) \
177 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \ 173 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \
178 kStrictMode) \ 174 kStrictMode) \
179 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \ 175 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \
180 kStrictMode) \ 176 kStrictMode) \
181 V(StoreIC_GlobalProxy_Strict, STORE_IC, GENERIC, \ 177 V(StoreIC_GlobalProxy_Strict, STORE_IC, GENERIC, \
182 kStrictMode) \ 178 kStrictMode) \
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 414
419 friend class BuiltinFunctionTable; 415 friend class BuiltinFunctionTable;
420 friend class Isolate; 416 friend class Isolate;
421 417
422 DISALLOW_COPY_AND_ASSIGN(Builtins); 418 DISALLOW_COPY_AND_ASSIGN(Builtins);
423 }; 419 };
424 420
425 } } // namespace v8::internal 421 } } // namespace v8::internal
426 422
427 #endif // V8_BUILTINS_H_ 423 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698