Files
Khaled Ismaeel 63469c9cd6 Use unified YAML schemas in the build process
In this commit we instruct the build system to use the unified schema
files  instead of collecting the `TUPLE-TREE-YAML` comments.

The fixes to C++ files are necessary because they depend on the order
of the fields in the schema, which was changed.
2025-04-30 15:08:45 +02:00

32 lines
1.0 KiB
C++

/// \file ConvertFromEFA.cpp
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/EarlyFunctionAnalysis/CallEdge.h"
#include "revng/EarlyFunctionAnalysis/FunctionEdge.h"
#include "revng/EarlyFunctionAnalysis/FunctionEdgeBase.h"
#include "revng/Yield/CallEdge.h"
#include "revng/Yield/FunctionEdge.h"
#include "revng/Yield/FunctionEdgeBase.h"
yield::CallEdge::CallEdge(const efa::CallEdge &Source) {
Kind() = yield::FunctionEdgeBaseKind::CallEdge;
Destination() = Source.Destination();
Type() = yield::FunctionEdgeType::from(Source.Type());
DynamicFunction() = Source.DynamicFunction();
IsTailCall() = Source.IsTailCall();
Attributes() = Source.Attributes();
}
yield::FunctionEdge::FunctionEdge(const efa::FunctionEdge &Source) {
Kind() = yield::FunctionEdgeBaseKind::FunctionEdge;
Destination() = Source.Destination();
Type() = yield::FunctionEdgeType::from(Source.Type());
}
const yield::CallEdge *yield::FunctionEdgeBase::getCallEdge() const {
return llvm::dyn_cast<CallEdge>(this);
}