See https://llvm.org/docs/CodingStandards.html#use-namespace-qualifiers-to-implement-previously-declared-functions Thank you to MaskRay for pointing this out on https://reviews.llvm.org/D153006 Reviewed By: xazax.hun Differential Revision: https://reviews.llvm.org/D153833
126 lines
4.4 KiB
C++
126 lines
4.4 KiB
C++
//===-- RecordOps.cpp -------------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Operations on records (structs, classes, and unions).
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Analysis/FlowSensitive/RecordOps.h"
|
|
|
|
#define DEBUG_TYPE "dataflow"
|
|
|
|
void clang::dataflow::copyRecord(AggregateStorageLocation &Src,
|
|
AggregateStorageLocation &Dst,
|
|
Environment &Env) {
|
|
LLVM_DEBUG({
|
|
if (Dst.getType().getCanonicalType().getUnqualifiedType() !=
|
|
Src.getType().getCanonicalType().getUnqualifiedType()) {
|
|
llvm::dbgs() << "Source type " << Src.getType() << "\n";
|
|
llvm::dbgs() << "Destination type " << Dst.getType() << "\n";
|
|
}
|
|
});
|
|
assert(Dst.getType().getCanonicalType().getUnqualifiedType() ==
|
|
Src.getType().getCanonicalType().getUnqualifiedType());
|
|
|
|
for (auto [Field, SrcFieldLoc] : Src.children()) {
|
|
assert(SrcFieldLoc != nullptr);
|
|
|
|
StorageLocation &DstFieldLoc = Dst.getChild(*Field);
|
|
|
|
if (Field->getType()->isRecordType()) {
|
|
copyRecord(cast<AggregateStorageLocation>(*SrcFieldLoc),
|
|
cast<AggregateStorageLocation>(DstFieldLoc), Env);
|
|
} else {
|
|
if (Value *Val = Env.getValue(*SrcFieldLoc))
|
|
Env.setValue(DstFieldLoc, *Val);
|
|
else
|
|
Env.clearValue(DstFieldLoc);
|
|
}
|
|
}
|
|
|
|
StructValue *SrcVal = cast_or_null<StructValue>(Env.getValue(Src));
|
|
StructValue *DstVal = cast_or_null<StructValue>(Env.getValue(Dst));
|
|
|
|
if (SrcVal == nullptr || DstVal == nullptr)
|
|
return;
|
|
|
|
auto DstChildren = DstVal->children();
|
|
DstVal = &Env.create<StructValue>(llvm::DenseMap<const ValueDecl *, Value *>(
|
|
DstChildren.begin(), DstChildren.end()));
|
|
Env.setValue(Dst, *DstVal);
|
|
|
|
for (const auto &[Name, Value] : SrcVal->properties()) {
|
|
if (Value != nullptr)
|
|
DstVal->setProperty(Name, *Value);
|
|
}
|
|
}
|
|
|
|
bool clang::dataflow::recordsEqual(const AggregateStorageLocation &Loc1,
|
|
const Environment &Env1,
|
|
const AggregateStorageLocation &Loc2,
|
|
const Environment &Env2) {
|
|
LLVM_DEBUG({
|
|
if (Loc2.getType().getCanonicalType().getUnqualifiedType() !=
|
|
Loc1.getType().getCanonicalType().getUnqualifiedType()) {
|
|
llvm::dbgs() << "Loc1 type " << Loc1.getType() << "\n";
|
|
llvm::dbgs() << "Loc2 type " << Loc2.getType() << "\n";
|
|
}
|
|
});
|
|
assert(Loc2.getType().getCanonicalType().getUnqualifiedType() ==
|
|
Loc1.getType().getCanonicalType().getUnqualifiedType());
|
|
|
|
for (auto [Field, FieldLoc1] : Loc1.children()) {
|
|
assert(FieldLoc1 != nullptr);
|
|
|
|
StorageLocation &FieldLoc2 = Loc2.getChild(*Field);
|
|
|
|
if (Field->getType()->isRecordType()) {
|
|
if (!recordsEqual(cast<AggregateStorageLocation>(*FieldLoc1), Env1,
|
|
cast<AggregateStorageLocation>(FieldLoc2), Env2))
|
|
return false;
|
|
} else if (Field->getType()->isReferenceType()) {
|
|
auto *RefVal1 = cast_or_null<ReferenceValue>(Env1.getValue(*FieldLoc1));
|
|
auto *RefVal2 = cast_or_null<ReferenceValue>(Env1.getValue(FieldLoc2));
|
|
if (RefVal1 && RefVal2) {
|
|
if (&RefVal1->getReferentLoc() != &RefVal2->getReferentLoc())
|
|
return false;
|
|
} else {
|
|
// If either of `RefVal1` and `RefVal2` is null, we only consider them
|
|
// equal if they're both null.
|
|
if (RefVal1 || RefVal2)
|
|
return false;
|
|
}
|
|
} else {
|
|
if (Env1.getValue(*FieldLoc1) != Env2.getValue(FieldLoc2))
|
|
return false;
|
|
}
|
|
}
|
|
|
|
llvm::StringMap<Value *> Props1, Props2;
|
|
|
|
if (StructValue *Val1 = cast_or_null<StructValue>(Env1.getValue(Loc1)))
|
|
for (const auto &[Name, Value] : Val1->properties())
|
|
Props1[Name] = Value;
|
|
if (StructValue *Val2 = cast_or_null<StructValue>(Env2.getValue(Loc2)))
|
|
for (const auto &[Name, Value] : Val2->properties())
|
|
Props2[Name] = Value;
|
|
|
|
if (Props1.size() != Props2.size())
|
|
return false;
|
|
|
|
for (const auto &[Name, Value] : Props1) {
|
|
auto It = Props2.find(Name);
|
|
if (It == Props2.end())
|
|
return false;
|
|
if (Value != It->second)
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|