| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 Register RegisterAllocator::ToRegister(int num) { | 85 Register RegisterAllocator::ToRegister(int num) { |
| 86 ASSERT(num >= 0 && num < kNumRegisters); | 86 ASSERT(num >= 0 && num < kNumRegisters); |
| 87 const Register kRegisters[] = | 87 const Register kRegisters[] = |
| 88 { r0, r1, r2, r3, r4, r5, r6, r7, r9, r10, ip, lr }; | 88 { r0, r1, r2, r3, r4, r5, r6, r7, r9, r10, ip, lr }; |
| 89 return kRegisters[num]; | 89 return kRegisters[num]; |
| 90 } | 90 } |
| 91 | 91 |
| 92 | 92 |
| 93 void RegisterAllocator::Initialize() { | 93 void RegisterAllocator::Initialize() { |
| 94 Reset(); | 94 Reset(); |
| 95 // The non-reserved r1 and lr registers are live on JS function entry. | |
| 96 Use(r1); // JS function. | |
| 97 Use(lr); // Return address. | |
| 98 } | 95 } |
| 99 | 96 |
| 100 | 97 |
| 101 } } // namespace v8::internal | 98 } } // namespace v8::internal |
| 102 | 99 |
| 103 #endif // V8_ARM_REGISTER_ALLOCATOR_ARM_INL_H_ | 100 #endif // V8_ARM_REGISTER_ALLOCATOR_ARM_INL_H_ |
| OLD | NEW |