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 | |
59 int DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { | 50 int DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { |
60 ASSERT(!reg.is(kDoubleRegZero)); | 51 ASSERT(!reg.is(kDoubleRegZero)); |
61 ASSERT(!reg.is(kScratchDoubleReg)); | 52 ASSERT(!reg.is(kScratchDoubleReg)); |
62 return reg.code(); | 53 return reg.code(); |
63 } | 54 } |
64 | 55 |
65 | 56 |
66 void RelocInfo::apply(intptr_t delta) { | 57 void RelocInfo::apply(intptr_t delta) { |
67 if (RelocInfo::IsInternalReference(rmode_)) { | 58 if (RelocInfo::IsInternalReference(rmode_)) { |
68 // absolute code pointer inside code object moves with the code object. | 59 // absolute code pointer inside code object moves with the code object. |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 | 499 |
509 | 500 |
510 void Assembler::set_target_address_at(Address pc, Address target) { | 501 void Assembler::set_target_address_at(Address pc, Address target) { |
511 set_target_pointer_at(pc, target); | 502 set_target_pointer_at(pc, target); |
512 } | 503 } |
513 | 504 |
514 | 505 |
515 } } // namespace v8::internal | 506 } } // namespace v8::internal |
516 | 507 |
517 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ | 508 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ |
OLD | NEW |