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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { | 50 int DwVfpRegister::ToAllocationIndex(DwVfpRegister reg) { |
51 ASSERT(!reg.is(kDoubleRegZero)); | 51 ASSERT(!reg.is(kDoubleRegZero)); |
52 ASSERT(!reg.is(kScratchDoubleReg)); | 52 ASSERT(!reg.is(kScratchDoubleReg)); |
| 53 if (reg.code() > kDoubleRegZero.code()) |
| 54 return reg.code() - kNumReservedRegisters; |
53 return reg.code(); | 55 return reg.code(); |
54 } | 56 } |
55 | 57 |
56 | 58 |
57 void RelocInfo::apply(intptr_t delta) { | 59 void RelocInfo::apply(intptr_t delta) { |
58 if (RelocInfo::IsInternalReference(rmode_)) { | 60 if (RelocInfo::IsInternalReference(rmode_)) { |
59 // absolute code pointer inside code object moves with the code object. | 61 // absolute code pointer inside code object moves with the code object. |
60 int32_t* p = reinterpret_cast<int32_t*>(pc_); | 62 int32_t* p = reinterpret_cast<int32_t*>(pc_); |
61 *p += delta; // relocate entry | 63 *p += delta; // relocate entry |
62 } | 64 } |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 | 501 |
500 | 502 |
501 void Assembler::set_target_address_at(Address pc, Address target) { | 503 void Assembler::set_target_address_at(Address pc, Address target) { |
502 set_target_pointer_at(pc, target); | 504 set_target_pointer_at(pc, target); |
503 } | 505 } |
504 | 506 |
505 | 507 |
506 } } // namespace v8::internal | 508 } } // namespace v8::internal |
507 | 509 |
508 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ | 510 #endif // V8_ARM_ASSEMBLER_ARM_INL_H_ |
OLD | NEW |