ADT
        arm-eh
        ast-experimental
        enum
        forall-pointer-decay
        jacob/cs343-translation
        new-ast
        new-ast-unique-expr
        pthread-emulation
        qualifiedEnum
      
      
        
          | 
            Last change
 on this file since 0aec496 was             7870799, checked in by Thierry Delisle <tdelisle@…>, 6 years ago           | 
        
        
          | 
             
Cast cost and conversion cost now take constant parameters. 
This required supporting visiting const node. 
The PassVisitor can now visit const nodes but not when using the Indexer 
 
           | 
        
        
          
            
              - 
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 | // 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
 | 
|---|
| 12 | // Last Modified By : Peter A. Buhr
 | 
|---|
| 13 | // Last Modified On : Sat Jul 22 09:46:07 2017
 | 
|---|
| 14 | // Update Count     : 4
 | 
|---|
| 15 | //
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #pragma once
 | 
|---|
| 18 | 
 | 
|---|
| 19 | #include <list>  // for list
 | 
|---|
| 20 | 
 | 
|---|
| 21 | struct CodeLocation;
 | 
|---|
| 22 | class  Declaration;
 | 
|---|
| 23 | class  Type;
 | 
|---|
| 24 | 
 | 
|---|
| 25 | namespace ast {
 | 
|---|
| 26 |         class Type;
 | 
|---|
| 27 |         class SymbolTable;
 | 
|---|
| 28 | }
 | 
|---|
| 29 | 
 | 
|---|
| 30 | namespace SymTab {
 | 
|---|
| 31 |         class Indexer;
 | 
|---|
| 32 | 
 | 
|---|
| 33 |         /// Normalizes struct and function declarations
 | 
|---|
| 34 |         void validate( std::list< Declaration * > &translationUnit, bool doDebug = false );
 | 
|---|
| 35 |         void validateType( Type *type, const Indexer *indexer );
 | 
|---|
| 36 | 
 | 
|---|
| 37 |         const ast::Type * validateType(
 | 
|---|
| 38 |                 const CodeLocation & loc, const ast::Type * type, const ast::SymbolTable & symtab );
 | 
|---|
| 39 | } // namespace SymTab
 | 
|---|
| 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.