blob: 2959ef633bad8fc47d441bd0451d6185bf519710 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 Rogersbdb03912011-09-14 00:55:44 -070016
17#include "context_arm.h"
18
19#include "object.h"
20
21namespace art {
22namespace arm {
23
24ArmContext::ArmContext() {
Ian Rogers67375ac2011-09-14 00:55:44 -070025#ifndef NDEBUG
Ian Rogersad42e132011-09-17 20:23:33 -070026 // Initialize registers with easy to spot debug values
Elliott Hughes362f9bc2011-10-17 18:56:41 -070027 for (int i = 0; i < 16; i++) {
Elliott Hughes9c750f92012-04-05 12:07:59 -070028 gprs_[i] = kBadGprBase + i;
Ian Rogersbdb03912011-09-14 00:55:44 -070029 }
Elliott Hughes362f9bc2011-10-17 18:56:41 -070030 for (int i = 0; i < 32; i++) {
Elliott Hughes9c750f92012-04-05 12:07:59 -070031 fprs_[i] = kBadFprBase + i;
Ian Rogers15fdb8c2011-09-25 15:45:07 -070032 }
Ian Rogers67375ac2011-09-14 00:55:44 -070033#endif
Ian Rogersbdb03912011-09-14 00:55:44 -070034}
35
Ian Rogers0399dde2012-06-06 17:09:28 -070036void ArmContext::FillCalleeSaves(const StackVisitor& fr) {
Ian Rogersbdb03912011-09-14 00:55:44 -070037 Method* method = fr.GetMethod();
38 uint32_t core_spills = method->GetCoreSpillMask();
Ian Rogers15fdb8c2011-09-25 15:45:07 -070039 uint32_t fp_core_spills = method->GetFpSpillMask();
Ian Rogersbdb03912011-09-14 00:55:44 -070040 size_t spill_count = __builtin_popcount(core_spills);
Ian Rogers15fdb8c2011-09-25 15:45:07 -070041 size_t fp_spill_count = __builtin_popcount(fp_core_spills);
Ian Rogers0399dde2012-06-06 17:09:28 -070042 size_t frame_size = method->GetFrameSizeInBytes();
Ian Rogersbdb03912011-09-14 00:55:44 -070043 if (spill_count > 0) {
44 // Lowest number spill is furthest away, walk registers and fill into context
45 int j = 1;
Elliott Hughes362f9bc2011-10-17 18:56:41 -070046 for (int i = 0; i < 16; i++) {
Ian Rogersbdb03912011-09-14 00:55:44 -070047 if (((core_spills >> i) & 1) != 0) {
Ian Rogers0399dde2012-06-06 17:09:28 -070048 gprs_[i] = fr.LoadCalleeSave(spill_count - j, frame_size);
Ian Rogersbdb03912011-09-14 00:55:44 -070049 j++;
50 }
51 }
52 }
Ian Rogers15fdb8c2011-09-25 15:45:07 -070053 if (fp_spill_count > 0) {
54 // Lowest number spill is furthest away, walk registers and fill into context
55 int j = 1;
Elliott Hughes362f9bc2011-10-17 18:56:41 -070056 for (int i = 0; i < 32; i++) {
Ian Rogers15fdb8c2011-09-25 15:45:07 -070057 if (((fp_core_spills >> i) & 1) != 0) {
Ian Rogers0399dde2012-06-06 17:09:28 -070058 fprs_[i] = fr.LoadCalleeSave(spill_count + fp_spill_count - j, frame_size);
Ian Rogers15fdb8c2011-09-25 15:45:07 -070059 j++;
60 }
61 }
62 }
Ian Rogersbdb03912011-09-14 00:55:44 -070063}
64
Elliott Hughes9c750f92012-04-05 12:07:59 -070065void ArmContext::SmashCallerSaves() {
66 gprs_[0] = 0; // This needs to be 0 because we want a null/zero return value.
67 gprs_[1] = kBadGprBase + 1;
68 gprs_[2] = kBadGprBase + 2;
69 gprs_[3] = kBadGprBase + 3;
70 gprs_[IP] = kBadGprBase + IP;
71 gprs_[LR] = kBadGprBase + LR;
72}
73
Ian Rogers57b86d42012-03-27 16:05:41 -070074extern "C" void art_do_long_jump(uint32_t*, uint32_t*);
75
Ian Rogersbdb03912011-09-14 00:55:44 -070076void ArmContext::DoLongJump() {
Brian Carlstrom6f495f22011-10-10 15:05:03 -070077 art_do_long_jump(&gprs_[0], &fprs_[S0]);
Ian Rogersbdb03912011-09-14 00:55:44 -070078}
79
80} // namespace arm
81} // namespace art