| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \ | 129 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \ |
| 130 Code::kNoExtraICState) \ | 130 Code::kNoExtraICState) \ |
| 131 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ | 131 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ |
| 132 Code::kNoExtraICState) \ | 132 Code::kNoExtraICState) \ |
| 133 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ | 133 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ |
| 134 Code::kNoExtraICState) \ | 134 Code::kNoExtraICState) \ |
| 135 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ | 135 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ |
| 136 Code::kNoExtraICState) \ | 136 Code::kNoExtraICState) \ |
| 137 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC, \ | 137 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC, \ |
| 138 Code::kNoExtraICState) \ | 138 Code::kNoExtraICState) \ |
| 139 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC, \ | |
| 140 Code::kNoExtraICState) \ | |
| 141 V(LoadIC_StringWrapperLength, LOAD_IC, MONOMORPHIC, \ | |
| 142 Code::kNoExtraICState) \ | |
| 143 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC, \ | 139 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC, \ |
| 144 Code::kNoExtraICState) \ | 140 Code::kNoExtraICState) \ |
| 145 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ | 141 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ |
| 146 Code::kNoExtraICState) \ | 142 Code::kNoExtraICState) \ |
| 147 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \ | 143 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \ |
| 148 Code::kNoExtraICState) \ | 144 Code::kNoExtraICState) \ |
| 149 \ | 145 \ |
| 150 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ | 146 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ |
| 151 Code::kNoExtraICState) \ | 147 Code::kNoExtraICState) \ |
| 152 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ | 148 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ |
| (...skipping 262 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 |