mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
riscv: Add detect flags, not detected yet.
This commit is contained in:
parent
e5467d2706
commit
83dc1c9705
3 changed files with 14 additions and 8 deletions
|
@ -114,6 +114,11 @@ struct CPUInfo {
|
|||
bool RiscV_Zbb;
|
||||
bool RiscV_Zbc;
|
||||
bool RiscV_Zbs;
|
||||
bool RiscV_Zcb;
|
||||
bool RiscV_Zfa;
|
||||
bool RiscV_Zfh;
|
||||
bool RiscV_Zfhmin;
|
||||
bool RiscV_Zicond;
|
||||
|
||||
// LoongArch specific extension flags.
|
||||
bool LOONGARCH_CPUCFG;
|
||||
|
|
|
@ -245,6 +245,11 @@ std::vector<std::string> CPUInfo::Features() {
|
|||
{ RiscV_Zbb, "Bitmanip Zbb" },
|
||||
{ RiscV_Zbc, "Bitmanip Zbc" },
|
||||
{ RiscV_Zbs, "Bitmanip Zbs" },
|
||||
{ RiscV_Zcb, "Compress Zcb" },
|
||||
{ RiscV_Zfa, "Float Additional" },
|
||||
{ RiscV_Zfh, "Float Half" },
|
||||
{ RiscV_Zfhmin, "Float Half Minimal" },
|
||||
{ RiscV_Zicond, "Integer Conditional" },
|
||||
{ RiscV_Zicsr, "Zicsr" },
|
||||
{ CPU64bit, "64-bit" },
|
||||
};
|
||||
|
|
|
@ -32,8 +32,7 @@ static inline bool SupportsCompressed(char zcx = '\0') {
|
|||
return false;
|
||||
|
||||
switch (zcx) {
|
||||
// TODO: cpu_info.RiscV_Zcb
|
||||
case 'b': return false;
|
||||
case 'b': return cpu_info.RiscV_Zcb;
|
||||
case '\0': return true;
|
||||
default: return false;
|
||||
}
|
||||
|
@ -79,18 +78,15 @@ static inline bool SupportsBitmanip(char zbx) {
|
|||
}
|
||||
|
||||
static inline bool SupportsIntConditional() {
|
||||
// TODO: cpu_info.RiscV_Zicond;
|
||||
return false;
|
||||
return cpu_info.RiscV_Zicond;
|
||||
}
|
||||
|
||||
static inline bool SupportsFloatHalf(bool allowMin = false) {
|
||||
// TODO
|
||||
return false;
|
||||
return cpu_info.RiscV_Zfh || (cpu_info.RiscV_Zfhmin && allowMin);
|
||||
}
|
||||
|
||||
static inline bool SupportsFloatExtra() {
|
||||
// TODO: cpu_info.RiscV_Zfa
|
||||
return false;
|
||||
return cpu_info.RiscV_Zfa;
|
||||
}
|
||||
|
||||
enum class Opcode32 {
|
||||
|
|
Loading…
Add table
Reference in a new issue