| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 Code* old_target = GetTargetAtAddress(address); | 84 Code* old_target = GetTargetAtAddress(address); |
| 85 #ifdef DEBUG | 85 #ifdef DEBUG |
| 86 // STORE_IC and KEYED_STORE_IC use Code::extra_ic_state() to mark | 86 // STORE_IC and KEYED_STORE_IC use Code::extra_ic_state() to mark |
| 87 // ICs as strict mode. The strict-ness of the IC must be preserved. | 87 // ICs as strict mode. The strict-ness of the IC must be preserved. |
| 88 if (old_target->kind() == Code::STORE_IC || | 88 if (old_target->kind() == Code::STORE_IC || |
| 89 old_target->kind() == Code::KEYED_STORE_IC) { | 89 old_target->kind() == Code::KEYED_STORE_IC) { |
| 90 ASSERT(Code::GetStrictMode(old_target->extra_ic_state()) == | 90 ASSERT(Code::GetStrictMode(old_target->extra_ic_state()) == |
| 91 Code::GetStrictMode(target->extra_ic_state())); | 91 Code::GetStrictMode(target->extra_ic_state())); |
| 92 } | 92 } |
| 93 #endif | 93 #endif |
| 94 Assembler::set_target_address_at(address, target->instruction_start()); | 94 Assembler::set_target_address_at(address, target->entry()); |
| 95 if (heap->gc_state() == Heap::MARK_COMPACT) { | 95 if (heap->gc_state() == Heap::MARK_COMPACT) { |
| 96 heap->mark_compact_collector()->RecordCodeTargetPatch(address, target); | 96 heap->mark_compact_collector()->RecordCodeTargetPatch(address, target); |
| 97 } else { | 97 } else { |
| 98 heap->incremental_marking()->RecordCodeTargetPatch(address, target); | 98 heap->incremental_marking()->RecordCodeTargetPatch(address, target); |
| 99 } | 99 } |
| 100 PostPatching(address, target, old_target); | 100 PostPatching(address, target, old_target); |
| 101 } | 101 } |
| 102 | 102 |
| 103 | 103 |
| 104 InlineCacheHolderFlag IC::GetCodeCacheForObject(Object* object, | 104 InlineCacheHolderFlag IC::GetCodeCacheForObject(Object* object, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 Object* map_owner = | 136 Object* map_owner = |
| 137 holder == OWN_MAP ? object : object->GetPrototype(isolate); | 137 holder == OWN_MAP ? object : object->GetPrototype(isolate); |
| 138 ASSERT(map_owner->IsJSObject()); | 138 ASSERT(map_owner->IsJSObject()); |
| 139 return JSObject::cast(map_owner); | 139 return JSObject::cast(map_owner); |
| 140 } | 140 } |
| 141 | 141 |
| 142 | 142 |
| 143 } } // namespace v8::internal | 143 } } // namespace v8::internal |
| 144 | 144 |
| 145 #endif // V8_IC_INL_H_ | 145 #endif // V8_IC_INL_H_ |
| OLD | NEW |