| OLD | NEW |
| 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 Loading... |
| 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) \ | |
| 201 \ | 197 \ |
| 202 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ | 198 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ |
| 203 V(FunctionCall, BUILTIN, UNINITIALIZED, \ | 199 V(FunctionCall, BUILTIN, UNINITIALIZED, \ |
| 204 Code::kNoExtraICState) \ | 200 Code::kNoExtraICState) \ |
| 205 V(FunctionApply, BUILTIN, UNINITIALIZED, \ | 201 V(FunctionApply, BUILTIN, UNINITIALIZED, \ |
| 206 Code::kNoExtraICState) \ | 202 Code::kNoExtraICState) \ |
| 207 \ | 203 \ |
| 208 V(InternalArrayCode, BUILTIN, UNINITIALIZED, \ | 204 V(InternalArrayCode, BUILTIN, UNINITIALIZED, \ |
| 209 Code::kNoExtraICState) \ | 205 Code::kNoExtraICState) \ |
| 210 V(ArrayCode, BUILTIN, UNINITIALIZED, \ | 206 V(ArrayCode, BUILTIN, UNINITIALIZED, \ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 | 411 |
| 416 friend class BuiltinFunctionTable; | 412 friend class BuiltinFunctionTable; |
| 417 friend class Isolate; | 413 friend class Isolate; |
| 418 | 414 |
| 419 DISALLOW_COPY_AND_ASSIGN(Builtins); | 415 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 420 }; | 416 }; |
| 421 | 417 |
| 422 } } // namespace v8::internal | 418 } } // namespace v8::internal |
| 423 | 419 |
| 424 #endif // V8_BUILTINS_H_ | 420 #endif // V8_BUILTINS_H_ |
| OLD | NEW |