Browse Source

"Implement" Zihintntl extension (#1071)

These are just HINTs, so Spike only needs ISA-parser support.
pull/1073/head
Andrew Waterman 4 years ago
committed by GitHub
parent
commit
25f2e61d0e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      riscv/isa_parser.cc

2
riscv/isa_parser.cc

@ -114,6 +114,8 @@ isa_parser_t::isa_parser_t(const char* str, const char *priv)
// unconditionally include FENCE.I, so Zifencei adds nothing more.
} else if (ext_str == "zihintpause") {
// HINTs encoded in base-ISA instructions are always present.
} else if (ext_str == "zihintntl") {
// HINTs encoded in base-ISA instructions are always present.
} else if (ext_str == "zmmul") {
extension_table[EXT_ZMMUL] = true;
} else if (ext_str == "zba") {

Loading…
Cancel
Save