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

Side by Side Diff: src/builtins.h

Issue 21173004: Version 3.20.11.1 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 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/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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 Code::kNoExtraICState) \ 187 Code::kNoExtraICState) \
188 V(KeyedStoreIC_Generic, KEYED_STORE_IC, GENERIC, \ 188 V(KeyedStoreIC_Generic, KEYED_STORE_IC, GENERIC, \
189 Code::kNoExtraICState) \ 189 Code::kNoExtraICState) \
190 \ 190 \
191 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ 191 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \
192 kStrictMode) \ 192 kStrictMode) \
193 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, GENERIC, \ 193 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, GENERIC, \
194 kStrictMode) \ 194 kStrictMode) \
195 V(KeyedStoreIC_NonStrictArguments, KEYED_STORE_IC, MONOMORPHIC, \ 195 V(KeyedStoreIC_NonStrictArguments, KEYED_STORE_IC, MONOMORPHIC, \
196 Code::kNoExtraICState) \ 196 Code::kNoExtraICState) \
197 V(TransitionElementsSmiToDouble, BUILTIN, UNINITIALIZED, \
198 Code::kNoExtraICState) \
199 V(TransitionElementsDoubleToObject, BUILTIN, UNINITIALIZED, \
200 Code::kNoExtraICState) \
197 \ 201 \
198 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ 202 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \
199 V(FunctionCall, BUILTIN, UNINITIALIZED, \ 203 V(FunctionCall, BUILTIN, UNINITIALIZED, \
200 Code::kNoExtraICState) \ 204 Code::kNoExtraICState) \
201 V(FunctionApply, BUILTIN, UNINITIALIZED, \ 205 V(FunctionApply, BUILTIN, UNINITIALIZED, \
202 Code::kNoExtraICState) \ 206 Code::kNoExtraICState) \
203 \ 207 \
204 V(InternalArrayCode, BUILTIN, UNINITIALIZED, \ 208 V(InternalArrayCode, BUILTIN, UNINITIALIZED, \
205 Code::kNoExtraICState) \ 209 Code::kNoExtraICState) \
206 V(ArrayCode, BUILTIN, UNINITIALIZED, \ 210 V(ArrayCode, BUILTIN, UNINITIALIZED, \
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 415
412 friend class BuiltinFunctionTable; 416 friend class BuiltinFunctionTable;
413 friend class Isolate; 417 friend class Isolate;
414 418
415 DISALLOW_COPY_AND_ASSIGN(Builtins); 419 DISALLOW_COPY_AND_ASSIGN(Builtins);
416 }; 420 };
417 421
418 } } // namespace v8::internal 422 } } // namespace v8::internal
419 423
420 #endif // V8_BUILTINS_H_ 424 #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