blob: 28f1db91ba2c42b496054370541ae763500ae62f [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++) {
Ian Rogers67375ac2011-09-14 00:55:44 -070028 gprs_[i] = 0xEBAD6070+i;
Ian Rogersbdb03912011-09-14 00:55:44 -070029 }
Elliott Hughes362f9bc2011-10-17 18:56:41 -070030 for (int i = 0; i < 32; i++) {
Ian Rogers15fdb8c2011-09-25 15:45:07 -070031 fprs_[i] = 0xEBAD8070+i;
32 }
Ian Rogers67375ac2011-09-14 00:55:44 -070033#endif
Ian Rogersbdb03912011-09-14 00:55:44 -070034}
35
36void ArmContext::FillCalleeSaves(const Frame& fr) {
37 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 Rogersbdb03912011-09-14 00:55:44 -070042 if (spill_count > 0) {
43 // Lowest number spill is furthest away, walk registers and fill into context
44 int j = 1;
Elliott Hughes362f9bc2011-10-17 18:56:41 -070045 for (int i = 0; i < 16; i++) {
Ian Rogersbdb03912011-09-14 00:55:44 -070046 if (((core_spills >> i) & 1) != 0) {
47 gprs_[i] = fr.LoadCalleeSave(spill_count - j);
48 j++;
49 }
50 }
51 }
Ian Rogers15fdb8c2011-09-25 15:45:07 -070052 if (fp_spill_count > 0) {
53 // Lowest number spill is furthest away, walk registers and fill into context
54 int j = 1;
Elliott Hughes362f9bc2011-10-17 18:56:41 -070055 for (int i = 0; i < 32; i++) {
Ian Rogers15fdb8c2011-09-25 15:45:07 -070056 if (((fp_core_spills >> i) & 1) != 0) {
57 fprs_[i] = fr.LoadCalleeSave(spill_count + fp_spill_count - j);
58 j++;
59 }
60 }
61 }
Ian Rogersbdb03912011-09-14 00:55:44 -070062}
63
Ian Rogers57b86d42012-03-27 16:05:41 -070064extern "C" void art_do_long_jump(uint32_t*, uint32_t*);
65
Ian Rogersbdb03912011-09-14 00:55:44 -070066void ArmContext::DoLongJump() {
Brian Carlstrom6f495f22011-10-10 15:05:03 -070067 art_do_long_jump(&gprs_[0], &fprs_[S0]);
Ian Rogersbdb03912011-09-14 00:55:44 -070068}
69
70} // namespace arm
71} // namespace art