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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1256 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { | 1256 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { |
1257 StoreIC::GenerateInitialize(masm); | 1257 StoreIC::GenerateInitialize(masm); |
1258 } | 1258 } |
1259 | 1259 |
1260 | 1260 |
1261 static void Generate_StoreIC_Miss(MacroAssembler* masm) { | 1261 static void Generate_StoreIC_Miss(MacroAssembler* masm) { |
1262 StoreIC::GenerateMiss(masm); | 1262 StoreIC::GenerateMiss(masm); |
1263 } | 1263 } |
1264 | 1264 |
1265 | 1265 |
| 1266 static void Generate_StoreIC_Normal(MacroAssembler* masm) { |
| 1267 StoreIC::GenerateNormal(masm); |
| 1268 } |
| 1269 |
| 1270 |
1266 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { | 1271 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { |
1267 StoreIC::GenerateMegamorphic(masm); | 1272 StoreIC::GenerateMegamorphic(masm); |
1268 } | 1273 } |
1269 | 1274 |
1270 | 1275 |
1271 static void Generate_StoreIC_ArrayLength(MacroAssembler* masm) { | 1276 static void Generate_StoreIC_ArrayLength(MacroAssembler* masm) { |
1272 StoreIC::GenerateArrayLength(masm); | 1277 StoreIC::GenerateArrayLength(masm); |
1273 } | 1278 } |
1274 | 1279 |
1275 | 1280 |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1515 if (entry->contains(pc)) { | 1520 if (entry->contains(pc)) { |
1516 return names_[i]; | 1521 return names_[i]; |
1517 } | 1522 } |
1518 } | 1523 } |
1519 } | 1524 } |
1520 return NULL; | 1525 return NULL; |
1521 } | 1526 } |
1522 | 1527 |
1523 | 1528 |
1524 } } // namespace v8::internal | 1529 } } // namespace v8::internal |
OLD | NEW |