Skip to content

Commit

Permalink
Merge pull request apple#70855 from AnthonyLatsis/dump-archetype-addr
Browse files Browse the repository at this point in the history
ASTDumper: Fix archetype address dumping
  • Loading branch information
AnthonyLatsis committed Jan 16, 2024
2 parents 7dd1d3f + bd93302 commit a48dc87
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/AST/ASTDumper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ static unsigned getDumpString(unsigned value) {
static size_t getDumpString(size_t value) {
return value;
}
static void *getDumpString(void *value) { return value; }

//===----------------------------------------------------------------------===//
// Decl printing.
Expand Down
56 changes: 56 additions & 0 deletions unittests/AST/ASTDumperTests.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
//===--- ASTDumperTests.cpp - Tests for ASTDumper -----------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2024 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//

#include "TestContext.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/GenericSignature.h"
#include "swift/AST/Types.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/raw_ostream.h"
#include "gtest/gtest.h"
#include <string>

using namespace swift;
using namespace swift::unittest;

TEST(ASTDumper, ArchetypeType) {
TestContext C;
auto &ctx = C.Ctx;

auto *genericParamTy = GenericTypeParamType::get(false, 0, 0, ctx);
auto sig = buildGenericSignature(ctx, nullptr, {genericParamTy}, {});

TypeBase *archetype = nullptr;
{
llvm::SmallVector<ProtocolDecl *> protocols;
archetype = PrimaryArchetypeType::getNew(ctx, sig.getGenericEnvironment(),
genericParamTy, protocols, Type(),
nullptr);
}

std::string fullStr;
{
llvm::raw_string_ostream os(fullStr);
archetype->dump(os);
}

llvm::StringRef str(fullStr);
EXPECT_TRUE(str.consume_front("(primary_archetype_type address=0x"));
{
intptr_t integer;
EXPECT_FALSE(str.consumeInteger(16, integer));
}

EXPECT_EQ(str,
" name=\"\\xCF\\x84_0_0\"\n"
" (interface_type=generic_type_param_type depth=0 index=0))\n");
}
1 change: 1 addition & 0 deletions unittests/AST/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
add_swift_unittest(SwiftASTTests
ArithmeticEvaluator.cpp
ASTDumperTests.cpp
IndexSubsetTests.cpp
DiagnosticConsumerTests.cpp
SourceLocTests.cpp
Expand Down

0 comments on commit a48dc87

Please sign in to comment.