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 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
962 Address ldr_map_instr_address = | 962 Address ldr_map_instr_address = |
963 inline_end_address - 4 * Assembler::kInstrSize; | 963 inline_end_address - 4 * Assembler::kInstrSize; |
964 Assembler::set_target_address_at(ldr_map_instr_address, | 964 Assembler::set_target_address_at(ldr_map_instr_address, |
965 reinterpret_cast<Address>(map)); | 965 reinterpret_cast<Address>(map)); |
966 return true; | 966 return true; |
967 } | 967 } |
968 | 968 |
969 | 969 |
970 bool LoadIC::PatchInlinedContextualLoad(Address address, | 970 bool LoadIC::PatchInlinedContextualLoad(Address address, |
971 Object* map, | 971 Object* map, |
972 Object* cell) { | 972 Object* cell, |
| 973 bool is_dont_delete) { |
973 // TODO(<bug#>): implement this. | 974 // TODO(<bug#>): implement this. |
974 return false; | 975 return false; |
975 } | 976 } |
976 | 977 |
977 | 978 |
978 bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) { | 979 bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) { |
979 // Find the end of the inlined code for the store if there is an | 980 // Find the end of the inlined code for the store if there is an |
980 // inlined version of the store. | 981 // inlined version of the store. |
981 Address inline_end_address; | 982 Address inline_end_address; |
982 if (!IsInlinedICSite(address, &inline_end_address)) return false; | 983 if (!IsInlinedICSite(address, &inline_end_address)) return false; |
(...skipping 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2250 GenerateMiss(masm); | 2251 GenerateMiss(masm); |
2251 } | 2252 } |
2252 | 2253 |
2253 | 2254 |
2254 #undef __ | 2255 #undef __ |
2255 | 2256 |
2256 | 2257 |
2257 } } // namespace v8::internal | 2258 } } // namespace v8::internal |
2258 | 2259 |
2259 #endif // V8_TARGET_ARCH_ARM | 2260 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |