| // Part of the Crubit 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 "lifetime_annotations/type_lifetimes.h" |
| |
| #include <algorithm> |
| #include <memory> |
| #include <optional> |
| #include <string> |
| #include <utility> |
| |
| #include "third_party/absl/strings/str_format.h" |
| #include "third_party/absl/strings/str_join.h" |
| #include "third_party/llvm/llvm-project/clang/include/clang/AST/DeclTemplate.h" |
| #include "third_party/llvm/llvm-project/clang/include/clang/AST/TemplateBase.h" |
| #include "third_party/llvm/llvm-project/clang/include/clang/AST/Type.h" |
| #include "third_party/llvm/llvm-project/llvm/include/llvm/ADT/ArrayRef.h" |
| |
| namespace devtools_rust { |
| |
| std::string DebugString(const TypeLifetimes& lifetimes, |
| const LifetimeFormatter& formatter) { |
| std::vector<std::string> parts; |
| parts.reserve(lifetimes.size()); |
| |
| for (Lifetime l : lifetimes) { |
| parts.push_back(formatter(l)); |
| } |
| |
| if (parts.size() == 1) { |
| return parts[0]; |
| } |
| return absl::StrFormat("(%s)", absl::StrJoin(parts, ", ")); |
| } |
| |
| TypeLifetimes CreateLifetimesForType( |
| clang::QualType type, std::function<Lifetime()> lifetime_factory) { |
| assert(!type.isNull()); |
| TypeLifetimes ret; |
| // Add implicit lifetime parameters for type template parameters. |
| // TODO(veluca): we'll need to handle explicit lifetime parameters too. |
| llvm::ArrayRef<clang::TemplateArgument> template_args = GetTemplateArgs(type); |
| if (!template_args.empty()) { |
| for (const clang::TemplateArgument& arg : template_args) { |
| if (arg.getKind() == clang::TemplateArgument::Type) { |
| ret.append(CreateLifetimesForType(arg.getAsType(), lifetime_factory)); |
| } |
| } |
| return ret; |
| } |
| clang::QualType pointee = type->getPointeeType(); |
| if (pointee.isNull()) return {}; |
| ret = CreateLifetimesForType(pointee, lifetime_factory); |
| ret.push_back(lifetime_factory()); |
| return ret; |
| } |
| |
| ValueLifetimes& ValueLifetimes::operator=(const ValueLifetimes& other) { |
| type_ = other.type_; |
| template_argument_lifetimes_ = other.template_argument_lifetimes_; |
| pointee_lifetimes_ = |
| other.pointee_lifetimes_ |
| ? std::make_unique<ObjectLifetimes>(*other.pointee_lifetimes_) |
| : nullptr; |
| return *this; |
| } |
| |
| std::string ValueLifetimes::DebugString() const { |
| std::string ret; |
| if (!template_argument_lifetimes_.empty()) { |
| std::vector<std::string> tmpl_arg_strings; |
| for (const std::optional<ValueLifetimes>& tmpl_arg : |
| template_argument_lifetimes_) { |
| if (tmpl_arg) { |
| tmpl_arg_strings.push_back(tmpl_arg->DebugString()); |
| } else { |
| tmpl_arg_strings.push_back(""); |
| } |
| } |
| absl::StrAppend(&ret, "<", absl::StrJoin(tmpl_arg_strings, ", "), ">"); |
| } |
| if (pointee_lifetimes_) { |
| absl::StrAppend(&ret, " -> ", pointee_lifetimes_->DebugString()); |
| } |
| return ret; |
| } |
| |
| // Here, `type_lifetimes` are the lifetimes of a prvalue of the given `type`, |
| // unlike ObjectLifetimes::FromTypeLifetimes, which assumes a glvalue. |
| ValueLifetimes ValueLifetimes::FromTypeLifetimes( |
| TypeLifetimesRef& type_lifetimes, clang::QualType type) { |
| assert(!type.isNull()); |
| |
| ValueLifetimes ret(type); |
| |
| llvm::ArrayRef<clang::TemplateArgument> template_args = GetTemplateArgs(type); |
| if (!template_args.empty()) { |
| // Since we are simulating reversing a post-order visit, we need to |
| // extract template arguments in reverse order. |
| for (size_t i = template_args.size(); i-- > 0;) { |
| const clang::TemplateArgument& arg = template_args[i]; |
| if (arg.getKind() == clang::TemplateArgument::Type) { |
| ret.template_argument_lifetimes_.push_back( |
| FromTypeLifetimes(type_lifetimes, arg.getAsType())); |
| } else { |
| ret.template_argument_lifetimes_.push_back(std::nullopt); |
| } |
| } |
| std::reverse(ret.template_argument_lifetimes_.begin(), |
| ret.template_argument_lifetimes_.end()); |
| return ret; |
| } |
| |
| clang::QualType pointee_type = type->getPointeeType(); |
| if (!pointee_type.isNull()) { |
| ret.pointee_lifetimes_ = std::make_unique<ObjectLifetimes>( |
| ObjectLifetimes::FromTypeLifetimes(type_lifetimes, pointee_type)); |
| } |
| return ret; |
| } |
| |
| ValueLifetimes ValueLifetimes::ForLifetimeLessType(clang::QualType type) { |
| assert(type->getPointeeType().isNull() && !type->isRecordType()); |
| return ValueLifetimes(type); |
| } |
| |
| ValueLifetimes ValueLifetimes::ForPointerLikeType( |
| clang::QualType type, const ObjectLifetimes& object_lifetimes) { |
| assert(!type->getPointeeType().isNull()); |
| ValueLifetimes result(type); |
| result.pointee_lifetimes_ = |
| std::make_unique<ObjectLifetimes>(object_lifetimes); |
| return result; |
| } |
| |
| ValueLifetimes ValueLifetimes::ForRecord( |
| clang::QualType type, |
| std::vector<std::optional<ValueLifetimes>> template_argument_lifetimes) { |
| assert(type->isRecordType()); |
| assert(GetTemplateArgs(type).size() == template_argument_lifetimes.size()); |
| ValueLifetimes result(type); |
| result.template_argument_lifetimes_ = std::move(template_argument_lifetimes); |
| return result; |
| } |
| |
| const ObjectLifetimes& ValueLifetimes::GetPointeeLifetimes() const { |
| assert(!type_->getPointeeType().isNull()); |
| return *pointee_lifetimes_; |
| } |
| |
| ObjectLifetimes ObjectLifetimes::FromTypeLifetimes( |
| TypeLifetimesRef& type_lifetimes, clang::QualType type) { |
| assert(!type_lifetimes.empty()); |
| assert(!type.isNull()); |
| Lifetime self_lifetime = type_lifetimes.back(); |
| type_lifetimes = type_lifetimes.drop_back(); |
| return ObjectLifetimes( |
| self_lifetime, ValueLifetimes::FromTypeLifetimes(type_lifetimes, type)); |
| } |
| |
| std::string ObjectLifetimes::DebugString() const { |
| return absl::StrCat(lifetime_.DebugString(), value_lifetimes_.DebugString()); |
| } |
| |
| const llvm::ArrayRef<clang::TemplateArgument> GetTemplateArgs( |
| clang::QualType type) { |
| if (auto specialization = type->getAs<clang::TemplateSpecializationType>()) { |
| return specialization->template_arguments(); |
| } |
| if (auto record = type->getAs<clang::RecordType>()) { |
| if (auto specialization_decl = |
| clang::dyn_cast<clang::ClassTemplateSpecializationDecl>( |
| record->getDecl())) { |
| return specialization_decl->getTemplateArgs().asArray(); |
| } |
| } |
| return {}; |
| } |
| |
| ObjectLifetimes ObjectLifetimes::GetRecordObjectLifetimes( |
| clang::QualType type) const { |
| assert(value_lifetimes_.Type()->isRecordType()); |
| |
| // The object of the `type` (i.e. field or a base class) basically has the |
| // same lifetime as the struct. |
| // TODO(veluca): this needs adaptation to lifetime parameters. |
| Lifetime ret_lifetime = lifetime_; |
| |
| // `type` is one of a template argument, a struct, a pointer, or a type |
| // with no lifetimes (other than its own). |
| |
| // First case: template argument. We just attach the |
| // template argument's lifetimes to the leaf ObjectLifetimes. |
| if (auto targ = type->getAs<clang::SubstTemplateTypeParmType>()) { |
| const std::optional<ValueLifetimes>& arg_lifetimes = |
| value_lifetimes_.GetTemplateArgumentLifetimes( |
| targ->getReplacedParameter()->getIndex()); |
| if (!arg_lifetimes) { |
| assert(false); |
| return llvm::DenseMapInfo<ObjectLifetimes>::getEmptyKey(); |
| } |
| return ObjectLifetimes(ret_lifetime, *arg_lifetimes); |
| } else if (type->isStructureOrClassType()) { |
| // Second case: struct. We need to construct potentally reshuffled |
| // template arguments, if the struct is a template. |
| std::vector<std::optional<ValueLifetimes>> template_argument_lifetimes; |
| for (const clang::TemplateArgument& arg : GetTemplateArgs(type)) { |
| if (arg.getKind() == clang::TemplateArgument::Type) { |
| if (auto templ_arg = clang::dyn_cast<clang::SubstTemplateTypeParmType>( |
| arg.getAsType())) { |
| template_argument_lifetimes.push_back( |
| value_lifetimes_.GetTemplateArgumentLifetimes( |
| templ_arg->getReplacedParameter()->getIndex())); |
| } else { |
| // Create a new ValueLifetimes of the type of the template parameter, |
| // with lifetime `lifetime_`. |
| // TODO(veluca): we need to propagate lifetime parameters here. |
| TypeLifetimes type_lifetimes = CreateLifetimesForType( |
| arg.getAsType(), [this]() { return this->lifetime_; }); |
| TypeLifetimesRef type_lifetimes_ref(type_lifetimes); |
| template_argument_lifetimes.push_back( |
| ValueLifetimes::FromTypeLifetimes(type_lifetimes_ref, |
| arg.getAsType())); |
| } |
| } else { |
| template_argument_lifetimes.push_back(std::nullopt); |
| } |
| } |
| // TODO(veluca): handle potentially reshuffled lifetime parameters. |
| return ObjectLifetimes(ret_lifetime, |
| ValueLifetimes::ForRecord( |
| type, std::move(template_argument_lifetimes))); |
| } else if (!type->getPointeeType().isNull()) { |
| // Third case: pointer. |
| return ObjectLifetimes( |
| ret_lifetime, |
| ValueLifetimes::ForPointerLikeType( |
| type, GetRecordObjectLifetimes(type->getPointeeType()))); |
| } |
| |
| return ObjectLifetimes(ret_lifetime, |
| ValueLifetimes::ForLifetimeLessType(type)); |
| } |
| |
| } // namespace devtools_rust |
| |
| namespace llvm { |
| |
| bool DenseMapInfo<devtools_rust::ValueLifetimes>::isEqual( |
| const devtools_rust::ValueLifetimes& lhs, |
| const devtools_rust::ValueLifetimes& rhs) { |
| if (lhs.type_ != rhs.type_) { |
| return false; |
| } |
| if ((lhs.pointee_lifetimes_ == nullptr) != |
| (rhs.pointee_lifetimes_ == nullptr)) { |
| return false; |
| } |
| if (lhs.pointee_lifetimes_ && |
| !DenseMapInfo<devtools_rust::ObjectLifetimes>::isEqual( |
| *lhs.pointee_lifetimes_, *rhs.pointee_lifetimes_)) { |
| return false; |
| } |
| if (lhs.template_argument_lifetimes_.size() != |
| rhs.template_argument_lifetimes_.size()) { |
| return false; |
| } |
| for (size_t i = 0; i < lhs.template_argument_lifetimes_.size(); i++) { |
| const auto& alhs = lhs.template_argument_lifetimes_[i]; |
| const auto& arhs = rhs.template_argument_lifetimes_[i]; |
| if (alhs.has_value() != arhs.has_value()) { |
| return false; |
| } |
| if (alhs.has_value() && !isEqual(*alhs, *arhs)) { |
| return false; |
| } |
| } |
| return true; |
| } |
| |
| unsigned DenseMapInfo<devtools_rust::ValueLifetimes>::getHashValue( |
| const devtools_rust::ValueLifetimes& value_lifetimes) { |
| llvm::hash_code hash = 0; |
| if (value_lifetimes.pointee_lifetimes_) { |
| hash = DenseMapInfo<devtools_rust::ObjectLifetimes>::getHashValue( |
| *value_lifetimes.pointee_lifetimes_); |
| } |
| for (const auto& tmpl_lifetime : |
| value_lifetimes.template_argument_lifetimes_) { |
| if (tmpl_lifetime) { |
| hash = hash_combine(hash, getHashValue(*tmpl_lifetime)); |
| } |
| } |
| return hash_combine( |
| hash, DenseMapInfo<clang::QualType>::getHashValue(value_lifetimes.type_)); |
| } |
| |
| } // namespace llvm |