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 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1072 static void Generate_StoreIC_Miss(MacroAssembler* masm) { | 1072 static void Generate_StoreIC_Miss(MacroAssembler* masm) { |
1073 StoreIC::GenerateMiss(masm); | 1073 StoreIC::GenerateMiss(masm); |
1074 } | 1074 } |
1075 | 1075 |
1076 | 1076 |
1077 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { | 1077 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { |
1078 StoreIC::GenerateMegamorphic(masm); | 1078 StoreIC::GenerateMegamorphic(masm); |
1079 } | 1079 } |
1080 | 1080 |
1081 | 1081 |
| 1082 static void Generate_StoreIC_ArrayLength(MacroAssembler* masm) { |
| 1083 StoreIC::GenerateArrayLength(masm); |
| 1084 } |
| 1085 |
| 1086 |
1082 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { | 1087 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { |
1083 KeyedStoreIC::GenerateGeneric(masm); | 1088 KeyedStoreIC::GenerateGeneric(masm); |
1084 } | 1089 } |
1085 | 1090 |
1086 | 1091 |
1087 static void Generate_KeyedStoreIC_ExternalByteArray(MacroAssembler* masm) { | 1092 static void Generate_KeyedStoreIC_ExternalByteArray(MacroAssembler* masm) { |
1088 KeyedStoreIC::GenerateExternalArray(masm, kExternalByteArray); | 1093 KeyedStoreIC::GenerateExternalArray(masm, kExternalByteArray); |
1089 } | 1094 } |
1090 | 1095 |
1091 | 1096 |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1306 if (entry->contains(pc)) { | 1311 if (entry->contains(pc)) { |
1307 return names_[i]; | 1312 return names_[i]; |
1308 } | 1313 } |
1309 } | 1314 } |
1310 } | 1315 } |
1311 return NULL; | 1316 return NULL; |
1312 } | 1317 } |
1313 | 1318 |
1314 | 1319 |
1315 } } // namespace v8::internal | 1320 } } // namespace v8::internal |
OLD | NEW |