2023-05-26 18:26:32 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
#include <functional>
|
2023-12-13 16:49:41 +00:00
|
|
|
#include <list>
|
2023-09-22 16:35:12 +01:00
|
|
|
#include <memory>
|
2023-05-26 18:26:32 +01:00
|
|
|
#include <string>
|
2023-06-26 16:43:15 +01:00
|
|
|
#include <unordered_map>
|
2023-06-30 13:39:25 +01:00
|
|
|
#include <unordered_set>
|
2023-06-26 16:43:15 +01:00
|
|
|
#include <vector>
|
2023-05-26 18:26:32 +01:00
|
|
|
|
|
|
|
#include "ContainerInfo.h"
|
|
|
|
#include "OICodeGen.h"
|
2023-12-13 16:49:41 +00:00
|
|
|
#include "type_graph/TypeGraph.h"
|
2023-05-26 18:26:32 +01:00
|
|
|
|
|
|
|
struct drgn_type;
|
2023-07-26 15:31:53 +01:00
|
|
|
namespace oi::detail {
|
2023-06-20 17:57:13 +01:00
|
|
|
class SymbolService;
|
2023-07-26 15:31:53 +01:00
|
|
|
}
|
|
|
|
namespace oi::detail::type_graph {
|
2023-06-26 16:43:15 +01:00
|
|
|
class Class;
|
2023-07-05 10:33:44 +01:00
|
|
|
class Member;
|
2023-07-26 15:31:53 +01:00
|
|
|
} // namespace oi::detail::type_graph
|
|
|
|
|
|
|
|
namespace oi::detail {
|
2023-05-26 18:26:32 +01:00
|
|
|
|
|
|
|
class CodeGen {
|
|
|
|
public:
|
2023-12-19 19:57:44 +00:00
|
|
|
CodeGen(const OICodeGen::Config& config);
|
2023-06-28 16:17:45 +01:00
|
|
|
CodeGen(const OICodeGen::Config& config, SymbolService& symbols)
|
2023-12-19 19:57:44 +00:00
|
|
|
: config_(config), symbols_(&symbols) {
|
2023-05-26 18:26:32 +01:00
|
|
|
}
|
|
|
|
|
2023-12-19 15:00:35 +00:00
|
|
|
struct ExactName {
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
struct HashedComponent {
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
using RootFunctionName = std::variant<ExactName, HashedComponent>;
|
|
|
|
|
2023-06-20 17:57:13 +01:00
|
|
|
/*
|
|
|
|
* Helper function to perform all the steps required for code generation for a
|
|
|
|
* single drgn_type.
|
|
|
|
*/
|
|
|
|
bool codegenFromDrgn(struct drgn_type* drgnType, std::string& code);
|
2023-08-29 15:08:43 +01:00
|
|
|
bool codegenFromDrgn(struct drgn_type* drgnType,
|
|
|
|
std::string linkageName,
|
|
|
|
std::string& code);
|
2023-12-13 16:49:41 +00:00
|
|
|
void exportDrgnTypes(TypeHierarchy& th,
|
|
|
|
std::list<drgn_type>& drgnTypes,
|
|
|
|
drgn_type** rootType) const;
|
2023-05-26 18:26:32 +01:00
|
|
|
|
2023-12-19 19:57:44 +00:00
|
|
|
bool registerContainers();
|
2023-11-02 13:18:32 +00:00
|
|
|
void registerContainer(std::unique_ptr<ContainerInfo> containerInfo);
|
2023-05-26 18:26:32 +01:00
|
|
|
void registerContainer(const std::filesystem::path& path);
|
2023-06-20 17:57:13 +01:00
|
|
|
void addDrgnRoot(struct drgn_type* drgnType,
|
|
|
|
type_graph::TypeGraph& typeGraph);
|
|
|
|
void transform(type_graph::TypeGraph& typeGraph);
|
|
|
|
void generate(type_graph::TypeGraph& typeGraph,
|
|
|
|
std::string& code,
|
2023-12-19 15:00:35 +00:00
|
|
|
RootFunctionName rootName);
|
2023-05-26 18:26:32 +01:00
|
|
|
|
2023-06-20 17:57:13 +01:00
|
|
|
private:
|
2023-12-13 16:49:41 +00:00
|
|
|
type_graph::TypeGraph typeGraph_;
|
2023-06-28 16:17:45 +01:00
|
|
|
const OICodeGen::Config& config_;
|
2023-12-19 19:57:44 +00:00
|
|
|
SymbolService* symbols_ = nullptr;
|
2023-09-22 16:35:12 +01:00
|
|
|
std::vector<std::unique_ptr<ContainerInfo>> containerInfos_;
|
2023-06-30 13:39:25 +01:00
|
|
|
std::unordered_set<const ContainerInfo*> definedContainers_;
|
2023-06-26 16:43:15 +01:00
|
|
|
std::unordered_map<const type_graph::Class*, const type_graph::Member*>
|
|
|
|
thriftIssetMembers_;
|
2023-12-19 15:00:35 +00:00
|
|
|
|
|
|
|
bool codegenFromDrgn(struct drgn_type* drgnType,
|
|
|
|
std::string& code,
|
|
|
|
RootFunctionName name);
|
2023-06-26 16:43:15 +01:00
|
|
|
|
|
|
|
void genDefsThrift(const type_graph::TypeGraph& typeGraph, std::string& code);
|
|
|
|
void addGetSizeFuncDefs(const type_graph::TypeGraph& typeGraph,
|
|
|
|
std::string& code);
|
|
|
|
void getClassSizeFuncDef(const type_graph::Class& c, std::string& code);
|
|
|
|
void getClassSizeFuncConcrete(std::string_view funcName,
|
|
|
|
const type_graph::Class& c,
|
|
|
|
std::string& code) const;
|
2023-07-03 18:51:25 +01:00
|
|
|
void addTypeHandlers(const type_graph::TypeGraph& typeGraph,
|
|
|
|
std::string& code);
|
2023-08-10 21:34:06 +01:00
|
|
|
|
|
|
|
void genClassTypeHandler(const type_graph::Class& c, std::string& code);
|
|
|
|
void genClassStaticType(const type_graph::Class& c, std::string& code);
|
|
|
|
void genClassTraversalFunction(const type_graph::Class& c, std::string& code);
|
2023-08-16 20:40:36 +01:00
|
|
|
void genClassTreeBuilderInstructions(const type_graph::Class& c,
|
|
|
|
std::string& code);
|
2023-05-26 18:26:32 +01:00
|
|
|
};
|
2023-07-26 15:31:53 +01:00
|
|
|
|
|
|
|
} // namespace oi::detail
|