blob: aac436e4687cf64fe0eef39d81af7108d4b14008 [file] [log] [blame]
/*
* 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_MIPS_INSTRUCTION_SET_FEATURES_MIPS_H_
#define ART_RUNTIME_ARCH_MIPS_INSTRUCTION_SET_FEATURES_MIPS_H_
#include "arch/instruction_set_features.h"
namespace art {
// Instruction set features relevant to the MIPS architecture.
class MipsInstructionSetFeatures FINAL : public InstructionSetFeatures {
public:
// Process a CPU variant string like "r4000" and create InstructionSetFeatures.
static const MipsInstructionSetFeatures* FromVariant(const std::string& variant,
std::string* error_msg);
// Parse a bitmap and create an InstructionSetFeatures.
static const MipsInstructionSetFeatures* FromBitmap(uint32_t bitmap);
// Turn C pre-processor #defines into the equivalent instruction set features.
static const MipsInstructionSetFeatures* FromCppDefines();
// Process /proc/cpuinfo and use kRuntimeISA to produce InstructionSetFeatures.
static const MipsInstructionSetFeatures* FromCpuInfo();
// Process the auxiliary vector AT_HWCAP entry and use kRuntimeISA to produce
// InstructionSetFeatures.
static const MipsInstructionSetFeatures* FromHwcap();
// Use assembly tests of the current runtime (ie kRuntimeISA) to determine the
// InstructionSetFeatures. This works around kernel bugs in AT_HWCAP and /proc/cpuinfo.
static const MipsInstructionSetFeatures* FromAssembly();
bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
InstructionSet GetInstructionSet() const OVERRIDE {
return kMips;
}
uint32_t AsBitmap() const OVERRIDE;
std::string GetFeatureString() const OVERRIDE;
// Is this an ISA revision greater than 2 opening up new opcodes.
bool IsMipsIsaRevGreaterThanEqual2() const {
return mips_isa_gte2_;
}
// Floating point double registers are encoded differently based on whether the Status.FR bit is
// set. When the FR bit is 0 then the FPU is 32-bit, 1 its 64-bit. Return true if the code should
// be generated assuming Status.FR is 0.
bool Is32BitFloatingPoint() const {
return fpu_32bit_;
}
bool IsR6() const {
return r6_;
}
virtual ~MipsInstructionSetFeatures() {}
protected:
// Parse a vector of the form "fpu32", "mips2" adding these to a new MipsInstructionSetFeatures.
virtual const InstructionSetFeatures*
AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features,
std::string* error_msg) const OVERRIDE;
private:
MipsInstructionSetFeatures(bool smp, bool fpu_32bit, bool mips_isa_gte2, bool r6)
: InstructionSetFeatures(smp), fpu_32bit_(fpu_32bit), mips_isa_gte2_(mips_isa_gte2), r6_(r6)
{}
// Bitmap positions for encoding features as a bitmap.
enum {
kSmpBitfield = 1,
kFpu32Bitfield = 2,
kIsaRevGte2Bitfield = 4,
kR6 = 8,
};
const bool fpu_32bit_;
const bool mips_isa_gte2_;
const bool r6_;
DISALLOW_COPY_AND_ASSIGN(MipsInstructionSetFeatures);
};
} // namespace art
#endif // ART_RUNTIME_ARCH_MIPS_INSTRUCTION_SET_FEATURES_MIPS_H_