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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ | 137 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ |
138 Code::kNoExtraICState) \ | 138 Code::kNoExtraICState) \ |
139 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ | 139 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ |
140 Code::kNoExtraICState) \ | 140 Code::kNoExtraICState) \ |
141 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ | 141 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ |
142 Code::kNoExtraICState) \ | 142 Code::kNoExtraICState) \ |
143 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ | 143 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ |
144 Code::kNoExtraICState) \ | 144 Code::kNoExtraICState) \ |
145 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \ | 145 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \ |
146 Code::kNoExtraICState) \ | 146 Code::kNoExtraICState) \ |
| 147 V(LoadIC_Slow, LOAD_IC, GENERIC, \ |
| 148 Code::kNoExtraICState) \ |
147 \ | 149 \ |
148 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ | 150 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ |
149 Code::kNoExtraICState) \ | 151 Code::kNoExtraICState) \ |
150 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ | 152 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ |
151 Code::kNoExtraICState) \ | 153 Code::kNoExtraICState) \ |
152 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \ | 154 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \ |
153 Code::kNoExtraICState) \ | 155 Code::kNoExtraICState) \ |
154 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ | 156 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ |
155 Code::kNoExtraICState) \ | 157 Code::kNoExtraICState) \ |
156 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MONOMORPHIC, \ | 158 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MONOMORPHIC, \ |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 | 414 |
413 friend class BuiltinFunctionTable; | 415 friend class BuiltinFunctionTable; |
414 friend class Isolate; | 416 friend class Isolate; |
415 | 417 |
416 DISALLOW_COPY_AND_ASSIGN(Builtins); | 418 DISALLOW_COPY_AND_ASSIGN(Builtins); |
417 }; | 419 }; |
418 | 420 |
419 } } // namespace v8::internal | 421 } } // namespace v8::internal |
420 | 422 |
421 #endif // V8_BUILTINS_H_ | 423 #endif // V8_BUILTINS_H_ |
OLD | NEW |