Changeset View
Changeset View
Standalone View
Standalone View
llvm/lib/Target/RISCV/RISCVSubtarget.h
Show First 20 Lines • Show All 54 Lines • ▼ Show 20 Lines | private: | ||||
bool HasStdExtZbc = false; | bool HasStdExtZbc = false; | ||||
bool HasStdExtZbe = false; | bool HasStdExtZbe = false; | ||||
bool HasStdExtZbf = false; | bool HasStdExtZbf = false; | ||||
bool HasStdExtZbm = false; | bool HasStdExtZbm = false; | ||||
bool HasStdExtZbp = false; | bool HasStdExtZbp = false; | ||||
bool HasStdExtZbr = false; | bool HasStdExtZbr = false; | ||||
bool HasStdExtZbs = false; | bool HasStdExtZbs = false; | ||||
bool HasStdExtZbt = false; | bool HasStdExtZbt = false; | ||||
bool HasStdExtZbpbo = false; | |||||
bool HasStdExtV = false; | bool HasStdExtV = false; | ||||
bool HasStdExtZve32x = false; | bool HasStdExtZve32x = false; | ||||
bool HasStdExtZve32f = false; | bool HasStdExtZve32f = false; | ||||
bool HasStdExtZve64x = false; | bool HasStdExtZve64x = false; | ||||
bool HasStdExtZve64f = false; | bool HasStdExtZve64f = false; | ||||
bool HasStdExtZve64d = false; | bool HasStdExtZve64d = false; | ||||
bool HasStdExtZvfh = false; | bool HasStdExtZvfh = false; | ||||
bool HasStdExtZfhmin = false; | bool HasStdExtZfhmin = false; | ||||
▲ Show 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | public: | ||||
bool hasStdExtZihintpause() const { return HasStdExtZihintpause; } | bool hasStdExtZihintpause() const { return HasStdExtZihintpause; } | ||||
bool hasStdExtZba() const { return HasStdExtZba; } | bool hasStdExtZba() const { return HasStdExtZba; } | ||||
bool hasStdExtZbb() const { return HasStdExtZbb; } | bool hasStdExtZbb() const { return HasStdExtZbb; } | ||||
bool hasStdExtZbc() const { return HasStdExtZbc; } | bool hasStdExtZbc() const { return HasStdExtZbc; } | ||||
bool hasStdExtZbe() const { return HasStdExtZbe; } | bool hasStdExtZbe() const { return HasStdExtZbe; } | ||||
bool hasStdExtZbf() const { return HasStdExtZbf; } | bool hasStdExtZbf() const { return HasStdExtZbf; } | ||||
bool hasStdExtZbm() const { return HasStdExtZbm; } | bool hasStdExtZbm() const { return HasStdExtZbm; } | ||||
bool hasStdExtZbp() const { return HasStdExtZbp; } | bool hasStdExtZbp() const { return HasStdExtZbp; } | ||||
bool hasStdExtZbpbo() const { return HasStdExtZbpbo; } | |||||
bool hasStdExtZbr() const { return HasStdExtZbr; } | bool hasStdExtZbr() const { return HasStdExtZbr; } | ||||
bool hasStdExtZbs() const { return HasStdExtZbs; } | bool hasStdExtZbs() const { return HasStdExtZbs; } | ||||
bool hasStdExtZbt() const { return HasStdExtZbt; } | bool hasStdExtZbt() const { return HasStdExtZbt; } | ||||
bool hasStdExtZvl() const { return ZvlLen != 0; } | bool hasStdExtZvl() const { return ZvlLen != 0; } | ||||
bool hasStdExtZvfh() const { return HasStdExtZvfh; } | bool hasStdExtZvfh() const { return HasStdExtZvfh; } | ||||
bool hasStdExtZfhmin() const { return HasStdExtZfhmin; } | bool hasStdExtZfhmin() const { return HasStdExtZfhmin; } | ||||
bool hasStdExtZfh() const { return HasStdExtZfh; } | bool hasStdExtZfh() const { return HasStdExtZfh; } | ||||
bool hasStdExtZfinx() const { return HasStdExtZfinx; } | bool hasStdExtZfinx() const { return HasStdExtZfinx; } | ||||
▲ Show 20 Lines • Show All 110 Lines • Show Last 20 Lines |