source: src/Parser/LinkageSpec.h @ 02e5ab6

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 02e5ab6 was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

licencing: seventh groups of files

  • 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// LinkageSpec.h --
8//
9// Author           : Rodolfo G. Esteves
10// Created On       : Sat May 16 13:24:28 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sat May 16 13:26:14 2015
13// Update Count     : 3
14//
15
16#ifndef LINKAGESPEC_H
17#define LINKAGESPEC_H
18
19#include <string>
20
21struct LinkageSpec {
22        enum Type {
23                Intrinsic,                                                                              // C built-in defined in prelude
24                Cforall,                                                                                // ordinary
25                C,                                                                                              // not overloadable, not mangled
26                AutoGen,                                                                                // built by translator (struct assignment)
27                Compiler                                                                                // gcc internal
28        };
29 
30        static Type fromString( const std::string & );
31        static std::string toString( Type );
32 
33        static bool isDecoratable( Type );
34        static bool isGeneratable( Type );
35        static bool isOverloadable( Type );
36        static bool isBuiltin( Type );
37};
38
39#endif // LINKAGESPEC_H
40
41// Local Variables: //
42// tab-width: 4 //
43// mode: c++ //
44// compile-command: "make install" //
45// End: //
Note: See TracBrowser for help on using the repository browser.