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

Side by Side Diff: src/builtins.h

Issue 7187007: Merge arguments branch to bleeding edge (second try). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Undelete external-array test. Created 9 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/bootstrapper.cc ('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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ 125 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \
126 Code::kNoExtraICState) \ 126 Code::kNoExtraICState) \
127 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ 127 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \
128 Code::kNoExtraICState) \ 128 Code::kNoExtraICState) \
129 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, MEGAMORPHIC, \ 129 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, MEGAMORPHIC, \
130 Code::kNoExtraICState) \ 130 Code::kNoExtraICState) \
131 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ 131 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \
132 Code::kNoExtraICState) \ 132 Code::kNoExtraICState) \
133 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MEGAMORPHIC, \ 133 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MEGAMORPHIC, \
134 Code::kNoExtraICState) \ 134 Code::kNoExtraICState) \
135 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, MEGAMORPHIC, \
136 Code::kNoExtraICState) \
135 \ 137 \
136 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \ 138 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED, \
137 Code::kNoExtraICState) \ 139 Code::kNoExtraICState) \
138 V(StoreIC_ArrayLength, STORE_IC, MONOMORPHIC, \ 140 V(StoreIC_ArrayLength, STORE_IC, MONOMORPHIC, \
139 Code::kNoExtraICState) \ 141 Code::kNoExtraICState) \
140 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \ 142 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \
141 Code::kNoExtraICState) \ 143 Code::kNoExtraICState) \
142 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \ 144 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \
143 Code::kNoExtraICState) \ 145 Code::kNoExtraICState) \
144 V(StoreIC_GlobalProxy, STORE_IC, MEGAMORPHIC, \ 146 V(StoreIC_GlobalProxy, STORE_IC, MEGAMORPHIC, \
(...skipping 11 matching lines...) Expand all
156 \ 158 \
157 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \ 159 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED, \
158 Code::kNoExtraICState) \ 160 Code::kNoExtraICState) \
159 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC, \ 161 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC, \
160 Code::kNoExtraICState) \ 162 Code::kNoExtraICState) \
161 \ 163 \
162 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \ 164 V(KeyedStoreIC_Initialize_Strict, KEYED_STORE_IC, UNINITIALIZED, \
163 kStrictMode) \ 165 kStrictMode) \
164 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \ 166 V(KeyedStoreIC_Generic_Strict, KEYED_STORE_IC, MEGAMORPHIC, \
165 kStrictMode) \ 167 kStrictMode) \
168 V(KeyedStoreIC_NonStrictArguments, KEYED_STORE_IC, MEGAMORPHIC, \
169 Code::kNoExtraICState) \
166 \ 170 \
167 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ 171 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \
168 V(FunctionCall, BUILTIN, UNINITIALIZED, \ 172 V(FunctionCall, BUILTIN, UNINITIALIZED, \
169 Code::kNoExtraICState) \ 173 Code::kNoExtraICState) \
170 V(FunctionApply, BUILTIN, UNINITIALIZED, \ 174 V(FunctionApply, BUILTIN, UNINITIALIZED, \
171 Code::kNoExtraICState) \ 175 Code::kNoExtraICState) \
172 \ 176 \
173 V(ArrayCode, BUILTIN, UNINITIALIZED, \ 177 V(ArrayCode, BUILTIN, UNINITIALIZED, \
174 Code::kNoExtraICState) \ 178 Code::kNoExtraICState) \
175 V(ArrayConstructCode, BUILTIN, UNINITIALIZED, \ 179 V(ArrayConstructCode, BUILTIN, UNINITIALIZED, \
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 366
363 friend class BuiltinFunctionTable; 367 friend class BuiltinFunctionTable;
364 friend class Isolate; 368 friend class Isolate;
365 369
366 DISALLOW_COPY_AND_ASSIGN(Builtins); 370 DISALLOW_COPY_AND_ASSIGN(Builtins);
367 }; 371 };
368 372
369 } } // namespace v8::internal 373 } } // namespace v8::internal
370 374
371 #endif // V8_BUILTINS_H_ 375 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698