Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 16 | |
| 17 | #include "context_arm.h" |
| 18 | |
| 19 | #include "object.h" |
| 20 | |
| 21 | namespace art { |
| 22 | namespace arm { |
| 23 | |
| 24 | ArmContext::ArmContext() { |
Ian Rogers | 67375ac | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 25 | #ifndef NDEBUG |
Ian Rogers | ad42e13 | 2011-09-17 20:23:33 -0700 | [diff] [blame] | 26 | // Initialize registers with easy to spot debug values |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 27 | for (int i = 0; i < 16; i++) { |
Ian Rogers | 67375ac | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 28 | gprs_[i] = 0xEBAD6070+i; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 29 | } |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 30 | for (int i = 0; i < 32; i++) { |
Ian Rogers | 15fdb8c | 2011-09-25 15:45:07 -0700 | [diff] [blame] | 31 | fprs_[i] = 0xEBAD8070+i; |
| 32 | } |
Ian Rogers | 67375ac | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 33 | #endif |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | void ArmContext::FillCalleeSaves(const Frame& fr) { |
| 37 | Method* method = fr.GetMethod(); |
| 38 | uint32_t core_spills = method->GetCoreSpillMask(); |
Ian Rogers | 15fdb8c | 2011-09-25 15:45:07 -0700 | [diff] [blame] | 39 | uint32_t fp_core_spills = method->GetFpSpillMask(); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 40 | size_t spill_count = __builtin_popcount(core_spills); |
Ian Rogers | 15fdb8c | 2011-09-25 15:45:07 -0700 | [diff] [blame] | 41 | size_t fp_spill_count = __builtin_popcount(fp_core_spills); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 42 | if (spill_count > 0) { |
| 43 | // Lowest number spill is furthest away, walk registers and fill into context |
| 44 | int j = 1; |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 45 | for (int i = 0; i < 16; i++) { |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 46 | if (((core_spills >> i) & 1) != 0) { |
| 47 | gprs_[i] = fr.LoadCalleeSave(spill_count - j); |
| 48 | j++; |
| 49 | } |
| 50 | } |
| 51 | } |
Ian Rogers | 15fdb8c | 2011-09-25 15:45:07 -0700 | [diff] [blame] | 52 | if (fp_spill_count > 0) { |
| 53 | // Lowest number spill is furthest away, walk registers and fill into context |
| 54 | int j = 1; |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 55 | for (int i = 0; i < 32; i++) { |
Ian Rogers | 15fdb8c | 2011-09-25 15:45:07 -0700 | [diff] [blame] | 56 | if (((fp_core_spills >> i) & 1) != 0) { |
| 57 | fprs_[i] = fr.LoadCalleeSave(spill_count + fp_spill_count - j); |
| 58 | j++; |
| 59 | } |
| 60 | } |
| 61 | } |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 62 | } |
| 63 | |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame^] | 64 | extern "C" void art_do_long_jump(uint32_t*, uint32_t*); |
| 65 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 66 | void ArmContext::DoLongJump() { |
Brian Carlstrom | 6f495f2 | 2011-10-10 15:05:03 -0700 | [diff] [blame] | 67 | art_do_long_jump(&gprs_[0], &fprs_[S0]); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | } // namespace arm |
| 71 | } // namespace art |