| // Copyright 2024 Google LLC |
| // |
| // 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 |
| // |
| // https://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. |
| |
| #include "riscv/riscv64gzb_encoding.h" |
| |
| #include "googlemock/include/gmock/gmock.h" |
| #include "mpact/sim/generic/type_helpers.h" |
| #include "mpact/sim/util/memory/flat_demand_memory.h" |
| #include "riscv/riscv64gzb_enums.h" |
| #include "riscv/riscv_state.h" |
| |
| // This file contains tests for the RiscV64GZBEncoding class to ensure that |
| // the instruction decoding is correct. |
| |
| namespace { |
| |
| using ::mpact::sim::generic::operator*; // NOLINT: clang-tidy false positive. |
| |
| using mpact::sim::riscv::RiscVState; |
| using mpact::sim::riscv::RiscVXlen; |
| using mpact::sim::riscv::isa64gzb::ComplexResourceEnum; |
| using mpact::sim::riscv::isa64gzb::DestOpEnum; |
| using mpact::sim::riscv::isa64gzb::kComplexResourceNames; |
| using mpact::sim::riscv::isa64gzb::kDestOpNames; |
| using mpact::sim::riscv::isa64gzb::kSimpleResourceNames; |
| using mpact::sim::riscv::isa64gzb::kSourceOpNames; |
| using mpact::sim::riscv::isa64gzb::RiscV64GZBEncoding; |
| using mpact::sim::riscv::isa64gzb::SimpleResourceEnum; |
| using mpact::sim::riscv::isa64gzb::SourceOpEnum; |
| using mpact::sim::util::FlatDemandMemory; |
| using SlotEnum = mpact::sim::riscv::isa64gzb::SlotEnum; |
| using OpcodeEnum = mpact::sim::riscv::isa64gzb::OpcodeEnum; |
| |
| class RiscV64GZBEncodingTest : public testing::Test { |
| protected: |
| RiscV64GZBEncodingTest() { |
| state_ = new RiscVState("test", RiscVXlen::RV32, &memory_); |
| enc_ = new RiscV64GZBEncoding(state_); |
| } |
| ~RiscV64GZBEncodingTest() override { |
| delete enc_; |
| delete state_; |
| } |
| |
| FlatDemandMemory memory_; |
| RiscVState *state_; |
| RiscV64GZBEncoding *enc_; |
| }; |
| |
| TEST_F(RiscV64GZBEncodingTest, SourceOperands) { |
| auto &getters = enc_->source_op_getters(); |
| for (int i = *SourceOpEnum::kNone; i < *SourceOpEnum::kPastMaxValue; ++i) { |
| EXPECT_TRUE(getters.contains(i)) << "No source operand for enum value " << i |
| << " (" << kSourceOpNames[i] << ")"; |
| } |
| } |
| |
| TEST_F(RiscV64GZBEncodingTest, DestOperands) { |
| auto &getters = enc_->dest_op_getters(); |
| for (int i = *DestOpEnum::kNone; i < *DestOpEnum::kPastMaxValue; ++i) { |
| EXPECT_TRUE(getters.contains(i)) << "No dest operand for enum value " << i |
| << " (" << kDestOpNames[i] << ")"; |
| } |
| } |
| |
| TEST_F(RiscV64GZBEncodingTest, SimpleResources) { |
| auto &getters = enc_->simple_resource_getters(); |
| for (int i = *SimpleResourceEnum::kNone; |
| i < *SimpleResourceEnum::kPastMaxValue; ++i) { |
| EXPECT_TRUE(getters.contains(i)) << "No source operand for enum value " << i |
| << " (" << kSimpleResourceNames[i] << ")"; |
| } |
| } |
| |
| TEST_F(RiscV64GZBEncodingTest, ComplexResources) { |
| auto &getters = enc_->source_op_getters(); |
| for (int i = *ComplexResourceEnum::kNone; |
| i < *ComplexResourceEnum::kPastMaxValue; ++i) { |
| EXPECT_TRUE(getters.contains(i)) << "No source operand for enum value " << i |
| << " (" << kComplexResourceNames[i] << ")"; |
| } |
| } |
| |
| } // namespace |