| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include "toolchain/sem_ir/ids.h"
- #include <gmock/gmock.h>
- #include <gtest/gtest.h>
- #include <limits>
- #include <tuple>
- namespace Carbon::SemIR {
- namespace {
- using ::testing::Eq;
- TEST(IdsTest, LocIdValues) {
- // This testing should match the ranges documented on LocId.
- EXPECT_THAT(static_cast<LocId>(Parse::NodeId::None).index, Eq(-1));
- EXPECT_THAT(static_cast<LocId>(InstId(0)).index, Eq(0));
- EXPECT_THAT(
- static_cast<LocId>(InstId(std::numeric_limits<int32_t>::max())).index,
- Eq(std::numeric_limits<int32_t>::max()));
- EXPECT_THAT(static_cast<LocId>(Parse::NodeId(0)).index, Eq(-2));
- EXPECT_THAT(static_cast<LocId>(Parse::NodeId(Parse::NodeId::Max - 1)).index,
- Eq(-2 - (1 << 24) + 1));
- EXPECT_THAT(static_cast<LocId>(ImportIRInstId(0)).index, Eq(-2 - (1 << 24)));
- EXPECT_THAT(static_cast<LocId>(ImportIRInstId(ImportIRInstId::Max - 1)).index,
- Eq(-(1 << 29) + 1));
- }
- // A standard parameterized test for (implicit, token_only, index).
- class IdsTestWithParam
- : public testing::TestWithParam<std::tuple<bool, bool, int32_t>> {
- public:
- explicit IdsTestWithParam() {
- llvm::errs() << "implicit=" << is_implicit()
- << ", token_only=" << is_token_only()
- << ", index=" << std::get<2>(GetParam()) << "\n";
- }
- // Returns IdT with its matching LocId form. Sets flags based on test
- // parameters.
- template <typename IdT>
- auto BuildIdAndLocId() -> std::pair<IdT, LocId> {
- auto [implicit, token_only, index] = GetParam();
- IdT id(index);
- LocId loc_id = id;
- if (implicit) {
- loc_id = loc_id.ToImplicit();
- }
- if (token_only) {
- loc_id = loc_id.ToTokenOnly();
- }
- return {id, loc_id};
- }
- auto is_implicit() -> bool { return std::get<0>(GetParam()); }
- auto is_token_only() -> bool { return std::get<1>(GetParam()); }
- };
- // Returns a test case generator for edge-case values.
- static auto GetValueRange(int32_t max) -> auto {
- return testing::Values(0, 1, max - 2, max - 1);
- }
- // Returns a test case generator for `IdsTestWithParam` uses.
- static auto CombineWithFlags(auto value_range) -> auto {
- return testing::Combine(testing::Bool(), testing::Bool(), value_range);
- }
- class LocIdAsNoneTestWithParam : public IdsTestWithParam {};
- INSTANTIATE_TEST_SUITE_P(
- LocIdAsNoneTest, LocIdAsNoneTestWithParam,
- CombineWithFlags(testing::Values(Parse::NodeId::NoneIndex)));
- TEST_P(LocIdAsNoneTestWithParam, Test) {
- auto [_, loc_id] = BuildIdAndLocId<Parse::NodeId>();
- EXPECT_FALSE(loc_id.has_value());
- EXPECT_THAT(loc_id.kind(), Eq(LocId::Kind::None));
- EXPECT_FALSE(loc_id.is_implicit());
- EXPECT_THAT(loc_id.import_ir_inst_id(), Eq(ImportIRInstId::None));
- EXPECT_THAT(loc_id.inst_id(), Eq(InstId::None));
- EXPECT_THAT(loc_id.node_id(),
- // The actual type is NoneNodeId, so cast to NodeId.
- Eq<Parse::NodeId>(Parse::NodeId::None));
- }
- class LocIdAsImportIRInstIdTest : public IdsTestWithParam {};
- INSTANTIATE_TEST_SUITE_P(Test, LocIdAsImportIRInstIdTest,
- CombineWithFlags(GetValueRange(ImportIRInstId::Max)));
- TEST_P(LocIdAsImportIRInstIdTest, Test) {
- auto [import_ir_inst_id, loc_id] = BuildIdAndLocId<ImportIRInstId>();
- EXPECT_TRUE(loc_id.has_value());
- ASSERT_THAT(loc_id.kind(), Eq(LocId::Kind::ImportIRInstId));
- EXPECT_THAT(loc_id.import_ir_inst_id(), import_ir_inst_id);
- EXPECT_FALSE(loc_id.is_implicit());
- EXPECT_THAT(loc_id.is_token_only(), Eq(is_token_only()));
- }
- class LocIdAsInstIdTest : public IdsTestWithParam {};
- INSTANTIATE_TEST_SUITE_P(
- Test, LocIdAsInstIdTest,
- testing::Combine(testing::Values(false), testing::Values(false),
- GetValueRange(std::numeric_limits<int32_t>::max())));
- TEST_P(LocIdAsInstIdTest, Test) {
- auto [inst_id, loc_id] = BuildIdAndLocId<InstId>();
- EXPECT_TRUE(loc_id.has_value());
- ASSERT_THAT(loc_id.kind(), Eq(LocId::Kind::InstId));
- EXPECT_THAT(loc_id.inst_id(), inst_id);
- // Note that `is_implicit` and `is_token_only` are invalid to use with
- // `InstId`.
- }
- class LocIdAsNodeIdTest : public IdsTestWithParam {};
- INSTANTIATE_TEST_SUITE_P(Test, LocIdAsNodeIdTest,
- CombineWithFlags(GetValueRange(Parse::NodeId::Max)));
- TEST_P(LocIdAsNodeIdTest, Test) {
- auto [node_id, loc_id] = BuildIdAndLocId<Parse::NodeId>();
- EXPECT_TRUE(loc_id.has_value());
- ASSERT_THAT(loc_id.kind(), Eq(LocId::Kind::NodeId));
- EXPECT_THAT(loc_id.node_id(), node_id);
- EXPECT_THAT(loc_id.is_implicit(), Eq(is_implicit()));
- EXPECT_THAT(loc_id.is_token_only(), Eq(is_token_only()));
- }
- } // namespace
- } // namespace Carbon::SemIR
|