OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC) \ | 82 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC) \ |
83 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, MEGAMORPHIC) \ | 83 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, MEGAMORPHIC) \ |
84 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC) \ | 84 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC) \ |
85 V(KeyedLoadIC_ExternalByteArray, KEYED_LOAD_IC, MEGAMORPHIC) \ | 85 V(KeyedLoadIC_ExternalByteArray, KEYED_LOAD_IC, MEGAMORPHIC) \ |
86 V(KeyedLoadIC_ExternalUnsignedByteArray, KEYED_LOAD_IC, MEGAMORPHIC) \ | 86 V(KeyedLoadIC_ExternalUnsignedByteArray, KEYED_LOAD_IC, MEGAMORPHIC) \ |
87 V(KeyedLoadIC_ExternalShortArray, KEYED_LOAD_IC, MEGAMORPHIC) \ | 87 V(KeyedLoadIC_ExternalShortArray, KEYED_LOAD_IC, MEGAMORPHIC) \ |
88 V(KeyedLoadIC_ExternalUnsignedShortArray, KEYED_LOAD_IC, MEGAMORPHIC) \ | 88 V(KeyedLoadIC_ExternalUnsignedShortArray, KEYED_LOAD_IC, MEGAMORPHIC) \ |
89 V(KeyedLoadIC_ExternalIntArray, KEYED_LOAD_IC, MEGAMORPHIC) \ | 89 V(KeyedLoadIC_ExternalIntArray, KEYED_LOAD_IC, MEGAMORPHIC) \ |
90 V(KeyedLoadIC_ExternalUnsignedIntArray, KEYED_LOAD_IC, MEGAMORPHIC) \ | 90 V(KeyedLoadIC_ExternalUnsignedIntArray, KEYED_LOAD_IC, MEGAMORPHIC) \ |
91 V(KeyedLoadIC_ExternalFloatArray, KEYED_LOAD_IC, MEGAMORPHIC) \ | 91 V(KeyedLoadIC_ExternalFloatArray, KEYED_LOAD_IC, MEGAMORPHIC) \ |
| 92 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MEGAMORPHIC) \ |
92 \ | 93 \ |
93 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED) \ | 94 V(StoreIC_Initialize, STORE_IC, UNINITIALIZED) \ |
94 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC) \ | 95 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC) \ |
95 \ | 96 \ |
96 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED) \ | 97 V(KeyedStoreIC_Initialize, KEYED_STORE_IC, UNINITIALIZED) \ |
97 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC) \ | 98 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC) \ |
98 V(KeyedStoreIC_ExternalByteArray, KEYED_STORE_IC, MEGAMORPHIC) \ | 99 V(KeyedStoreIC_ExternalByteArray, KEYED_STORE_IC, MEGAMORPHIC) \ |
99 V(KeyedStoreIC_ExternalUnsignedByteArray, KEYED_STORE_IC, MEGAMORPHIC) \ | 100 V(KeyedStoreIC_ExternalUnsignedByteArray, KEYED_STORE_IC, MEGAMORPHIC) \ |
100 V(KeyedStoreIC_ExternalShortArray, KEYED_STORE_IC, MEGAMORPHIC) \ | 101 V(KeyedStoreIC_ExternalShortArray, KEYED_STORE_IC, MEGAMORPHIC) \ |
101 V(KeyedStoreIC_ExternalUnsignedShortArray, KEYED_STORE_IC, MEGAMORPHIC) \ | 102 V(KeyedStoreIC_ExternalUnsignedShortArray, KEYED_STORE_IC, MEGAMORPHIC) \ |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 static void Generate_FunctionCall(MacroAssembler* masm); | 245 static void Generate_FunctionCall(MacroAssembler* masm); |
245 static void Generate_FunctionApply(MacroAssembler* masm); | 246 static void Generate_FunctionApply(MacroAssembler* masm); |
246 | 247 |
247 static void Generate_ArrayCode(MacroAssembler* masm); | 248 static void Generate_ArrayCode(MacroAssembler* masm); |
248 static void Generate_ArrayConstructCode(MacroAssembler* masm); | 249 static void Generate_ArrayConstructCode(MacroAssembler* masm); |
249 }; | 250 }; |
250 | 251 |
251 } } // namespace v8::internal | 252 } } // namespace v8::internal |
252 | 253 |
253 #endif // V8_BUILTINS_H_ | 254 #endif // V8_BUILTINS_H_ |
OLD | NEW |