pthread-emulationqualifiedEnum
Last change
on this file since 9939dc3 was
9939dc3,
checked in by Andrew Beach <ajbeach@…>, 11 months ago
|
Reduced the number of object files linked into the demangler. Some of the divisions are rather odd, Lvalue2 and FixMain2, but they should be a better base to work from. Also improved the calling of the impurity detector visitors slightly.
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Rev | Line | |
---|
[0dd3a2f] | 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 | // Validate.h -- This class is intended to perform pre-processing of declarations, validating their correctness and |
---|
| 8 | // computing some auxilliary data that is necessary for the indexer. |
---|
| 9 | // |
---|
| 10 | // Author : Richard C. Bilson |
---|
| 11 | // Created On : Sun May 17 21:53:34 2015 |
---|
[9939dc3] | 12 | // Last Modified By : Andrew Beach |
---|
| 13 | // Last Modified On : Tue May 17 14:35:00 2022 |
---|
| 14 | // Update Count : 5 |
---|
[0dd3a2f] | 15 | // |
---|
[51b7345] | 16 | |
---|
[6b0b624] | 17 | #pragma once |
---|
[51b7345] | 18 | |
---|
[30f9072] | 19 | #include <list> // for list |
---|
| 20 | |
---|
[7870799] | 21 | struct CodeLocation; |
---|
| 22 | class Declaration; |
---|
| 23 | class Type; |
---|
[51b7345] | 24 | |
---|
[c8e4d2f8] | 25 | namespace ast { |
---|
| 26 | class Type; |
---|
| 27 | class SymbolTable; |
---|
| 28 | } |
---|
| 29 | |
---|
[51b7345] | 30 | namespace SymTab { |
---|
[a08ba92] | 31 | class Indexer; |
---|
[51b7345] | 32 | |
---|
[82dd287] | 33 | /// Normalizes struct and function declarations |
---|
[a08ba92] | 34 | void validate( std::list< Declaration * > &translationUnit, bool doDebug = false ); |
---|
[c8e4d2f8] | 35 | |
---|
[5dcb881] | 36 | // Sub-passes of validate. |
---|
| 37 | void validate_A( std::list< Declaration * > &translationUnit ); |
---|
| 38 | void validate_B( std::list< Declaration * > &translationUnit ); |
---|
| 39 | void validate_C( std::list< Declaration * > &translationUnit ); |
---|
| 40 | void validate_D( std::list< Declaration * > &translationUnit ); |
---|
| 41 | void validate_E( std::list< Declaration * > &translationUnit ); |
---|
| 42 | void validate_F( std::list< Declaration * > &translationUnit ); |
---|
[0dd3a2f] | 43 | } // namespace SymTab |
---|
[51b7345] | 44 | |
---|
[0dd3a2f] | 45 | // Local Variables: // |
---|
| 46 | // tab-width: 4 // |
---|
| 47 | // mode: c++ // |
---|
| 48 | // compile-command: "make install" // |
---|
| 49 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.