| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
| 6 // are met: | 6 // are met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "arm/assembler-arm.h" | 40 #include "arm/assembler-arm.h" |
| 41 | 41 |
| 42 #include "cpu.h" | 42 #include "cpu.h" |
| 43 #include "debug.h" | 43 #include "debug.h" |
| 44 | 44 |
| 45 | 45 |
| 46 namespace v8 { | 46 namespace v8 { |
| 47 namespace internal { | 47 namespace internal { |
| 48 | 48 |
| 49 | 49 |
| 50 ArmDoubleRegister ArmDoubleRegister::FromAllocationIndex(int index) { |
| 51 if (CpuFeatures::IsSupported(VFP2)) { |
| 52 return DwVfpRegister::FromAllocationIndex(index); |
| 53 } else { |
| 54 return SoftFloatRegister::FromAllocationIndex(index); |
| 55 } |
| 56 } |
| 57 |
| 58 |
| 50 int DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { | 59 int DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { |
| 51 ASSERT(!reg.is(kDoubleRegZero)); | 60 ASSERT(!reg.is(kDoubleRegZero)); |
| 52 ASSERT(!reg.is(kScratchDoubleReg)); | 61 ASSERT(!reg.is(kScratchDoubleReg)); |
| 53 return reg.code(); | 62 return reg.code(); |
| 54 } | 63 } |
| 55 | 64 |
| 56 | 65 |
| 57 void RelocInfo::apply(intptr_t delta) { | 66 void RelocInfo::apply(intptr_t delta) { |
| 58 if (RelocInfo::IsInternalReference(rmode_)) { | 67 if (RelocInfo::IsInternalReference(rmode_)) { |
| 59 // absolute code pointer inside code object moves with the code object. | 68 // absolute code pointer inside code object moves with the code object. |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 | 508 |
| 500 | 509 |
| 501 void Assembler::set_target_address_at(Address pc, Address target) { | 510 void Assembler::set_target_address_at(Address pc, Address target) { |
| 502 set_target_pointer_at(pc, target); | 511 set_target_pointer_at(pc, target); |
| 503 } | 512 } |
| 504 | 513 |
| 505 | 514 |
| 506 } } // namespace v8::internal | 515 } } // namespace v8::internal |
| 507 | 516 |
| 508 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ | 517 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ |
| OLD | NEW |