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 int Register::NumAllocatableRegisters() { | |
51 if (CpuFeatures::IsSupported(VFP2)) { | |
52 return kMaxNumAllocatableRegisters; | |
53 } else { | |
54 return kMaxNumAllocatableRegisters - kGPRsPerNonVFP2Double; | |
55 } | |
56 } | |
57 | |
58 | |
59 int DwVfpRegister::NumRegisters() { | |
60 if (CpuFeatures::IsSupported(VFP2)) { | |
61 return DwVfpRegister::kNumRegisters; | |
62 } else { | |
63 return 1; | |
64 } | |
65 } | |
66 | |
67 | |
68 int DwVfpRegister::NumAllocatableRegisters() { | |
69 if (CpuFeatures::IsSupported(VFP2)) { | |
70 return DwVfpRegister::kMaxNumAllocatableRegisters; | |
71 } else { | |
72 return 1; | |
73 } | |
74 } | |
75 | |
76 | |
77 int DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { | 50 int DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { |
78 ASSERT(!reg.is(kDoubleRegZero)); | 51 ASSERT(!reg.is(kDoubleRegZero)); |
79 ASSERT(!reg.is(kScratchDoubleReg)); | 52 ASSERT(!reg.is(kScratchDoubleReg)); |
80 return reg.code(); | 53 return reg.code(); |
81 } | 54 } |
82 | 55 |
83 | 56 |
84 void RelocInfo::apply(intptr_t delta) { | 57 void RelocInfo::apply(intptr_t delta) { |
85 if (RelocInfo::IsInternalReference(rmode_)) { | 58 if (RelocInfo::IsInternalReference(rmode_)) { |
86 // 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... |
526 | 499 |
527 | 500 |
528 void Assembler::set_target_address_at(Address pc, Address target) { | 501 void Assembler::set_target_address_at(Address pc, Address target) { |
529 set_target_pointer_at(pc, target); | 502 set_target_pointer_at(pc, target); |
530 } | 503 } |
531 | 504 |
532 | 505 |
533 } } // namespace v8::internal | 506 } } // namespace v8::internal |
534 | 507 |
535 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ | 508 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ |
OLD | NEW |