1#ifndef ROSE_CodeGen_Driver_H
2#define ROSE_CodeGen_Driver_H
9#include <boost/filesystem.hpp>
17namespace Rose {
namespace CodeGen {
27 size_t file_id_counter;
28 std::map<boost::filesystem::path, size_t> path_to_id_map;
29 std::map<size_t, SgSourceFile *> id_to_file_map;
30 std::map<SgSourceFile *, size_t> file_to_id_map;
31 std::map<size_t, std::set<size_t> > file_id_to_accessible_file_id_map;
39 Driver(std::vector<std::string> & args);
45 size_t create(
const boost::filesystem::path & path);
46 size_t add(
const boost::filesystem::path & path);
50 size_t getFileID(
const boost::filesystem::path & path)
const;
68 void addExternalHeader(
size_t file_id, std::string header_name,
bool is_system_header =
true)
const;
73 template <
typename ContainerFileID0,
typename ContainerFileID1>
74 void exportNameQualification(ContainerFileID0
const & unparsed_ids, ContainerFileID1
const & header_ids)
const {
75 for (
auto unparsed_id: unparsed_ids) {
76 auto & extra_nodes_for_namequal_init =
getSourceFile(unparsed_id)->get_extra_nodes_for_namequal_init();
77 for (
auto header_id: header_ids) {
78 extra_nodes_for_namequal_init.push_back(
getGlobalScope(header_id));
facilitates the manipulation of source-files (esp.
void setCompiledFile(size_t file_id) const
Set a file to be compiled with the project (by default file added to the driver are NOT compiled)
SgProject * project
the Rose project
void addExternalHeader(size_t file_id, std::string header_name, bool is_system_header=true) const
Insert external header for a given file.
size_t getFileID(const boost::filesystem::path &path) const
Retrieve file-id of associated with a file.
void addPragmaDecl(size_t file_id, std::string str) const
Add a pragma at the begining of the file.
size_t getFileID(SgSourceFile *source_file) const
Retrieve file-id of associated with a file.
void setUnparsedFile(size_t file_id) const
Set a file to be unparsed with the project (by default file added to the driver are NOT unparsed)
SgSourceFile * getSourceFile(size_t file_id) const
Retrieve the source-file node from a file-id.
size_t create(const boost::filesystem::path &path)
Create a file ()
void addCxxExtension(std::string) const
Utility method to add possible C++ extensions (hxx/hpp are not recognized by ROSE as source-file)
size_t getFileID(SgScopeStatement *scope) const
Retrieve file-id of associated with a file.
SgGlobal * getGlobalScope(size_t file_id) const
Retrieve the global scope of a file from its file-id.
This class represents the concept of a namespace definition.
This class represents a source project, with a list of SgFile objects and global information about th...
This class represents the concept of a scope in C++ (e.g. global scope, fuction scope,...
This class represents the concept of a name within the compiler.