source: src/CodeGen/FixMain.h @ 8941b6b

Last change on this file since 8941b6b was 8941b6b, checked in by Andrew Beach <ajbeach@…>, 10 months ago

Direct translation of code generation.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// FixMain.h --
8//
9// Author           : Thierry Delisle
10// Created On       : Thr Jan 12 14:11:09 2017
11// Last Modified By : Andrew Beach
12// Last Modified On : Fri Oct 29 16:20:00 2021
13// Update Count     : 8
14//
15
16#pragma once
17
18#include <iosfwd>
19#include <memory>
20#include <list>
21
22#include "AST/LinkageSpec.hpp"
23#include "SynTree/LinkageSpec.h"
24
25class Declaration;
26class FunctionDecl;
27namespace ast {
28        class FunctionDecl;
29}
30
31namespace CodeGen {
32
33class FixMain {
34public :
35        static inline LinkageSpec::Spec mainLinkage() {
36                return replace_main ? LinkageSpec::Cforall : LinkageSpec::C;
37        }
38        static inline ast::Linkage::Spec getMainLinkage() {
39                return replace_main ? ast::Linkage::Cforall : ast::Linkage::C;
40        }
41
42        static inline void setReplaceMain(bool val) {
43                replace_main = val;
44        }
45
46        static bool isMain(FunctionDecl* decl);
47        static bool isMain(const ast::FunctionDecl * decl);
48
49        static void fix( std::list< Declaration * > & decls,
50                        std::ostream &os, const char* bootloader_filename );
51
52private:
53        static bool replace_main;
54};
55
56} // namespace CodeGen
Note: See TracBrowser for help on using the repository browser.