blob: 0d25278adc2836cb8a44baeabd9b29d7e8f12d0d [file] [log] [blame]
Ian Rogersbdb03912011-09-14 00:55:44 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include "context_arm.h"
4
5#include "object.h"
6
7namespace art {
8namespace arm {
9
10ArmContext::ArmContext() {
Ian Rogers67375ac2011-09-14 00:55:44 -070011#ifndef NDEBUG
Ian Rogersad42e132011-09-17 20:23:33 -070012 // Initialize registers with easy to spot debug values
Ian Rogersbdb03912011-09-14 00:55:44 -070013 for (int i=0; i < 16; i++) {
Ian Rogers67375ac2011-09-14 00:55:44 -070014 gprs_[i] = 0xEBAD6070+i;
Ian Rogersbdb03912011-09-14 00:55:44 -070015 }
Ian Rogers67375ac2011-09-14 00:55:44 -070016#endif
Ian Rogersbdb03912011-09-14 00:55:44 -070017 memset(fprs_, 0, sizeof(fprs_));
18}
19
20void ArmContext::FillCalleeSaves(const Frame& fr) {
21 Method* method = fr.GetMethod();
22 uint32_t core_spills = method->GetCoreSpillMask();
23 size_t spill_count = __builtin_popcount(core_spills);
24 CHECK_EQ(method->GetFpSpillMask(), 0u);
25 if (spill_count > 0) {
26 // Lowest number spill is furthest away, walk registers and fill into context
27 int j = 1;
28 for(int i = 0; i < 16; i++) {
29 if (((core_spills >> i) & 1) != 0) {
30 gprs_[i] = fr.LoadCalleeSave(spill_count - j);
31 j++;
32 }
33 }
34 }
35}
36
37void ArmContext::DoLongJump() {
Elliott Hughes85d15452011-09-16 17:33:01 -070038#if defined(__arm__)
Ian Rogersbdb03912011-09-14 00:55:44 -070039 // TODO: Load all GPRs and FPRs, currently the code restores registers R4 to PC
40 asm volatile ( "mov %%r0, %0\n"
41 "mov %%r1, %1\n"
42 "ldm %%r0, {%%r4, %%r5, %%r6, %%r7,%%r8,%%r9,%%r10,%%r11,%%r12,%%r13,%%r14}\n"
43 "mov %%pc,%%r1\n"
44 : // output
45 : "r"(&gprs_[4]), "r"(gprs_[R15]) // input
46#if 0 // TODO: FPRs..
47 "w0" (fprs_[0] ), "w1" (fprs_[1] ), "w2" (fprs_[2] ), "w3" (fprs_[3]),
48 "w4" (fprs_[4] ), "w5" (fprs_[5] ), "w6" (fprs_[6] ), "w7" (fprs_[7]),
49 "w8" (fprs_[8] ), "w9" (fprs_[9] ), "w10"(fprs_[10]), "w11"(fprs_[11]),
50 "w12"(fprs_[12]), "w13"(fprs_[13]), "w14"(fprs_[14]), "w15"(fprs_[15]),
51 "w16"(fprs_[16]), "w17"(fprs_[17]), "w18"(fprs_[18]), "w19"(fprs_[19]),
52 "w20"(fprs_[20]), "w21"(fprs_[21]), "w22"(fprs_[22]), "w23"(fprs_[23]),
53 "w24"(fprs_[24]), "w25"(fprs_[25]), "w26"(fprs_[26]), "w27"(fprs_[27]),
54 "w28"(fprs_[28]), "w29"(fprs_[29]), "w30"(fprs_[30]), "w31"(fprs_[31])
55#endif
56 :); // clobber
Elliott Hughes85d15452011-09-16 17:33:01 -070057#else
58 UNIMPLEMENTED(FATAL);
59#endif
Ian Rogersbdb03912011-09-14 00:55:44 -070060}
61
62} // namespace arm
63} // namespace art