C++程序  |  78行  |  3.41 KB

/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef ART_RUNTIME_ARCH_MIPS64_QUICK_METHOD_FRAME_INFO_MIPS64_H_
#define ART_RUNTIME_ARCH_MIPS64_QUICK_METHOD_FRAME_INFO_MIPS64_H_

#include "base/bit_utils.h"
#include "quick/quick_method_frame_info.h"
#include "registers_mips64.h"
#include "runtime.h"  // for Runtime::CalleeSaveType.

namespace art {
namespace mips64 {

static constexpr uint32_t kMips64CalleeSaveRefSpills =
    (1 << art::mips64::S2) | (1 << art::mips64::S3) | (1 << art::mips64::S4) |
    (1 << art::mips64::S5) | (1 << art::mips64::S6) | (1 << art::mips64::S7) |
    (1 << art::mips64::GP) | (1 << art::mips64::S8);
static constexpr uint32_t kMips64CalleeSaveArgSpills =
    (1 << art::mips64::A1) | (1 << art::mips64::A2) | (1 << art::mips64::A3) |
    (1 << art::mips64::A4) | (1 << art::mips64::A5) | (1 << art::mips64::A6) |
    (1 << art::mips64::A7);
static constexpr uint32_t kMips64CalleeSaveAllSpills =
    (1 << art::mips64::S0) | (1 << art::mips64::S1);

static constexpr uint32_t kMips64CalleeSaveFpRefSpills = 0;
static constexpr uint32_t kMips64CalleeSaveFpArgSpills =
    (1 << art::mips64::F12) | (1 << art::mips64::F13) | (1 << art::mips64::F14) |
    (1 << art::mips64::F15) | (1 << art::mips64::F16) | (1 << art::mips64::F17) |
    (1 << art::mips64::F18) | (1 << art::mips64::F19);
// F12 should not be necessary to spill, as A0 is always in use.
static constexpr uint32_t kMips64CalleeSaveFpAllSpills =
    (1 << art::mips64::F24) | (1 << art::mips64::F25) | (1 << art::mips64::F26) |
    (1 << art::mips64::F27) | (1 << art::mips64::F28) | (1 << art::mips64::F29) |
    (1 << art::mips64::F30) | (1 << art::mips64::F31);

constexpr uint32_t Mips64CalleeSaveCoreSpills(Runtime::CalleeSaveType type) {
  return kMips64CalleeSaveRefSpills |
      (type == Runtime::kRefsAndArgs ? kMips64CalleeSaveArgSpills : 0) |
      (type == Runtime::kSaveAll ? kMips64CalleeSaveAllSpills : 0) | (1 << art::mips64::RA);
}

constexpr uint32_t Mips64CalleeSaveFpSpills(Runtime::CalleeSaveType type) {
  return kMips64CalleeSaveFpRefSpills |
      (type == Runtime::kRefsAndArgs ? kMips64CalleeSaveFpArgSpills: 0) |
      (type == Runtime::kSaveAll ? kMips64CalleeSaveFpAllSpills : 0);
}

constexpr uint32_t Mips64CalleeSaveFrameSize(Runtime::CalleeSaveType type) {
  return RoundUp((POPCOUNT(Mips64CalleeSaveCoreSpills(type)) /* gprs */ +
                  POPCOUNT(Mips64CalleeSaveFpSpills(type))   /* fprs */ +
                  + 1 /* Method* */) * kMips64PointerSize, kStackAlignment);
}

constexpr QuickMethodFrameInfo Mips64CalleeSaveMethodFrameInfo(Runtime::CalleeSaveType type) {
  return QuickMethodFrameInfo(Mips64CalleeSaveFrameSize(type),
                              Mips64CalleeSaveCoreSpills(type),
                              Mips64CalleeSaveFpSpills(type));
}

}  // namespace mips64
}  // namespace art

#endif  // ART_RUNTIME_ARCH_MIPS64_QUICK_METHOD_FRAME_INFO_MIPS64_H_