source: src/CodeGen/FixMain.h @ f42fc13

ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
Last change on this file since f42fc13 was f42fc13, checked in by Andrew Beach <ajbeach@…>, 3 years ago

Reorganize FixNames/FixMain? to avoid storing main_signature for so long.

  • Property mode set to 100644
File size: 1.1 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 11:07:00 2021
13// Update Count     : 6
14//
15
16#pragma once
17
18#include <iosfwd>
19#include <memory>
20#include <list>
21
22#include "SynTree/LinkageSpec.h"
23
24class Declaration;
25class FunctionDecl;
26
27namespace CodeGen {
28        class FixMain {
29          public :
30                static inline LinkageSpec::Spec mainLinkage() {
31                        return replace_main ? LinkageSpec::Cforall : LinkageSpec::C;
32                }
33               
34                static inline void setReplaceMain(bool val) {
35                        replace_main = val;
36                }
37
38                static void registerMain(FunctionDecl* val);
39                static bool isMain(FunctionDecl* decl);
40
41                static void fix(std::ostream &os, const char* bootloader_filename);
42
43                static void findMain( std::list< Declaration * > & decls );
44
45          private:
46                static bool replace_main;
47                static std::unique_ptr<FunctionDecl> main_signature;
48        };
49} // namespace CodeGen
Note: See TracBrowser for help on using the repository browser.