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.cc --
|
---|
8 | //
|
---|
9 | // Author : Thierry Delisle
|
---|
10 | // Created On : Thr Jan 12 14:11:09 2017
|
---|
11 | // Last Modified By :
|
---|
12 | // Last Modified On :
|
---|
13 | // Update Count : 0
|
---|
14 | //
|
---|
15 |
|
---|
16 |
|
---|
17 | #include "FixMain.h"
|
---|
18 |
|
---|
19 | #include <cassert> // for assert, assertf
|
---|
20 | #include <fstream> // for operator<<, basic_ostream::operator<<
|
---|
21 | #include <list> // for list
|
---|
22 | #include <string> // for operator<<
|
---|
23 |
|
---|
24 | #include "Common/SemanticError.h" // for SemanticError
|
---|
25 | #include "CodeGen/GenType.h" // for GenType
|
---|
26 | #include "SynTree/Declaration.h" // for FunctionDecl, operator<<
|
---|
27 | #include "SynTree/Type.h" // for FunctionType
|
---|
28 |
|
---|
29 | namespace CodeGen {
|
---|
30 | bool FixMain::replace_main = false;
|
---|
31 | std::unique_ptr<FunctionDecl> FixMain::main_signature = nullptr;
|
---|
32 |
|
---|
33 | template<typename container>
|
---|
34 | std::string genTypeAt(const container& p, size_t idx) {
|
---|
35 | return genType((*std::next(p.begin(), idx))->get_type(), "");
|
---|
36 | }
|
---|
37 |
|
---|
38 | void FixMain::registerMain(FunctionDecl* functionDecl)
|
---|
39 | {
|
---|
40 | if(main_signature) {
|
---|
41 | SemanticError(functionDecl, "Multiple definition of main routine\n");
|
---|
42 | }
|
---|
43 | main_signature.reset( functionDecl->clone() );
|
---|
44 | }
|
---|
45 |
|
---|
46 | void FixMain::fix(std::ostream &os, const char* bootloader_filename) {
|
---|
47 | if( main_signature ) {
|
---|
48 | os << "static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return ";
|
---|
49 |
|
---|
50 | os << main_signature->get_scopedMangleName() << "(";
|
---|
51 | const auto& params = main_signature->get_functionType()->get_parameters();
|
---|
52 | switch(params.size()) {
|
---|
53 | case 3: os << "(" << genTypeAt(params, 0) << ")argc, (" << genTypeAt(params, 1) << ")argv, (" << genTypeAt(params, 2) << ")envp"; break;
|
---|
54 | case 2: os << "(" << genTypeAt(params, 0) << ")argc, (" << genTypeAt(params, 1) << ")argv"; break;
|
---|
55 | case 0: break;
|
---|
56 | default : assert(false);
|
---|
57 | }
|
---|
58 | os << "); }\n";
|
---|
59 |
|
---|
60 | std::ifstream bootloader(bootloader_filename, std::ios::in);
|
---|
61 | assertf( bootloader.is_open(), "cannot open bootloader.c\n" );
|
---|
62 | os << bootloader.rdbuf();
|
---|
63 | }
|
---|
64 | }
|
---|
65 | };
|
---|