Changeset 83fd57d


Ignore:
Timestamp:
Nov 30, 2023, 2:04:16 PM (5 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
4a89b52
Parents:
6009a5a
Message:

Removed 'New' suffixes, they are no longer needed for disambiguation.

Location:
src
Files:
12 edited
15 moved

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // CodeGeneratorNew.cpp --
     7// CodeGenerator.cpp --
    88//
    99// Author           : Andrew Beach
     
    1414//
    1515
    16 #include "CodeGeneratorNew.hpp"
     16#include "CodeGenerator.hpp"
    1717
    1818#include "AST/Print.hpp"
  • src/CodeGen/CodeGenerator.hpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // CodeGeneratorNew.hpp --
     7// CodeGenerator.hpp --
    88//
    99// Author           : Andrew Beach
  • src/CodeGen/GenType.cc

    r6009a5a r83fd57d  
    2121#include "AST/Print.hpp"          // for print
    2222#include "AST/Vector.hpp"         // for vector
    23 #include "CodeGeneratorNew.hpp"   // for CodeGenerator
     23#include "CodeGenerator.hpp"      // for CodeGenerator
    2424#include "Common/UniqueName.h"    // for UniqueName
    2525
  • src/CodeGen/Generate.cc

    r6009a5a r83fd57d  
    1919#include <string>                    // for operator<<
    2020
    21 #include "CodeGeneratorNew.hpp"      // for CodeGenerator, doSemicolon, ...
     21#include "CodeGenerator.hpp"         // for CodeGenerator, doSemicolon, ...
    2222#include "GenType.h"                 // for genPrettyType
    2323
  • src/CodeGen/module.mk

    r6009a5a r83fd57d  
    1616
    1717SRC_CODEGEN = \
    18         CodeGen/CodeGeneratorNew.cpp \
    19         CodeGen/CodeGeneratorNew.hpp \
     18        CodeGen/CodeGenerator.cpp \
     19        CodeGen/CodeGenerator.hpp \
    2020        CodeGen/GenType.cc \
    2121        CodeGen/GenType.h \
  • src/Concurrency/Keywords.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // KeywordsNew.cpp -- Implement concurrency constructs from their keywords.
     7// Keywords.cpp -- Implement concurrency constructs from their keywords.
    88//
    99// Author           : Andrew Beach
     
    1414//
    1515
     16#include "Concurrency/Keywords.h"
     17
    1618#include <iostream>
    17 
    18 #include "Concurrency/Keywords.h"
    1919
    2020#include "AST/Copy.hpp"
     
    3030#include "Common/utility.h"
    3131#include "Common/UniqueName.h"
    32 #include "ControlStruct/LabelGeneratorNew.hpp"
     32#include "ControlStruct/LabelGenerator.hpp"
    3333#include "InitTweak/InitTweak.h"
    3434#include "Virtual/Tables.h"
  • src/Concurrency/Waitfor.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // WaitforNew.cpp -- Expand waitfor clauses into code.
     7// Waitfor.cpp -- Expand waitfor clauses into code.
    88//
    99// Author           : Andrew Beach
  • src/Concurrency/module.mk

    r6009a5a r83fd57d  
    2020        Concurrency/Corun.cpp \
    2121        Concurrency/Corun.hpp \
    22         Concurrency/KeywordsNew.cpp \
     22        Concurrency/Keywords.cpp \
    2323        Concurrency/Keywords.h \
    24         Concurrency/WaitforNew.cpp \
     24        Concurrency/Waitfor.cpp \
    2525        Concurrency/Waitfor.h \
    2626        Concurrency/Waituntil.cpp \
  • src/ControlStruct/ExceptDecl.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // ExceptDeclNew.cpp --
     7// ExceptDecl.cpp --
    88//
    99// Author           : Andrew Beach
  • src/ControlStruct/ExceptTranslate.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // ExceptTranslateNew.cpp -- Conversion of exception control flow structures.
     7// ExceptTranslate.cpp -- Conversion of exception control flow structures.
    88//
    99// Author           : Andrew Beach
  • src/ControlStruct/LabelGenerator.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // LabelGeneratorNew.cpp --
     7// LabelGenerator.cpp --
    88//
    99// Author           : Peter A. Buhr
     
    1414//
    1515
    16 #include "LabelGeneratorNew.hpp"
     16#include "LabelGenerator.hpp"
    1717
    1818#include "AST/Attribute.hpp"
  • src/ControlStruct/LabelGenerator.hpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // LabelGenerator.h --
     7// LabelGenerator.hpp --
    88//
    99// Author           : Rodolfo G. Esteves
     
    2626
    2727namespace ControlStruct {
    28         ast::Label newLabel( const std::string &, const ast::Stmt * );
    29         ast::Label newLabel( const std::string &, const CodeLocation & );
     28
     29ast::Label newLabel( const std::string &, const ast::Stmt * );
     30ast::Label newLabel( const std::string &, const CodeLocation & );
     31
    3032} // namespace ControlStruct
    3133
  • src/ControlStruct/MultiLevelExit.cpp

    r6009a5a r83fd57d  
    1616#include "MultiLevelExit.hpp"
    1717
     18#include <set>
     19
    1820#include "AST/Pass.hpp"
    1921#include "AST/Stmt.hpp"
    20 #include "LabelGeneratorNew.hpp"
    21 
    22 #include <set>
     22#include "LabelGenerator.hpp"
     23
    2324using namespace std;
    2425using namespace ast;
  • src/ControlStruct/module.mk

    r6009a5a r83fd57d  
    1616
    1717SRC += \
    18         ControlStruct/ExceptDeclNew.cpp \
     18        ControlStruct/ExceptDecl.cpp \
    1919        ControlStruct/ExceptDecl.h \
    20         ControlStruct/ExceptTranslateNew.cpp \
     20        ControlStruct/ExceptTranslate.cpp \
    2121        ControlStruct/ExceptTranslate.h \
    2222        ControlStruct/FixLabels.cpp \
     
    2424        ControlStruct/HoistControlDecls.cpp \
    2525        ControlStruct/HoistControlDecls.hpp \
    26         ControlStruct/LabelGeneratorNew.cpp \
    27         ControlStruct/LabelGeneratorNew.hpp \
     26        ControlStruct/LabelGenerator.cpp \
     27        ControlStruct/LabelGenerator.hpp \
    2828        ControlStruct/MultiLevelExit.cpp \
    2929        ControlStruct/MultiLevelExit.hpp
  • src/GenPoly/Box.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // BoxNew.cpp -- Implement polymorphic function calls and types.
     7// Box.cpp -- Implement polymorphic function calls and types.
    88//
    99// Author           : Andrew Beach
  • src/GenPoly/InstantiateGeneric.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // InstantiateGenericNew.cpp -- Create concrete instances of generic types.
     7// InstantiateGeneric.cpp -- Create concrete instances of generic types.
    88//
    99// Author           : Andrew Beach
  • src/GenPoly/Lvalue.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // LvalueNew.cpp -- Clean up lvalues and remove references.
     7// Lvalue.cpp -- Clean up lvalues and remove references.
    88//
    99// Author           : Andrew Beach
  • src/GenPoly/Specialize.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // SpecializeNew.cpp -- Generate thunks to specialize polymorphic functions.
     7// Specialize.cpp -- Generate thunks to specialize polymorphic functions.
    88//
    99// Author           : Andrew Beach
  • src/GenPoly/module.mk

    r6009a5a r83fd57d  
    2222
    2323SRC += $(SRC_GENPOLY) \
    24         GenPoly/BoxNew.cpp \
     24        GenPoly/Box.cpp \
    2525        GenPoly/Box.h \
    2626        GenPoly/ErasableScopedMap.h \
    2727        GenPoly/FindFunction.cc \
    2828        GenPoly/FindFunction.h \
    29         GenPoly/InstantiateGenericNew.cpp \
     29        GenPoly/InstantiateGeneric.cpp \
    3030        GenPoly/InstantiateGeneric.h \
    31         GenPoly/LvalueNew.cpp \
     31        GenPoly/Lvalue.cpp \
    3232        GenPoly/ScopedSet.h \
    3333        GenPoly/ScrubTyVars.cc \
    3434        GenPoly/ScrubTyVars.h \
    35         GenPoly/SpecializeNew.cpp \
     35        GenPoly/Specialize.cpp \
    3636        GenPoly/Specialize.h
    3737
  • src/InitTweak/module.mk

    r6009a5a r83fd57d  
    2424        InitTweak/FixGlobalInit.cc \
    2525        InitTweak/FixGlobalInit.h \
    26         InitTweak/FixInit.h \
    27         InitTweak/FixInitNew.cpp
     26        InitTweak/FixInit.cpp \
     27        InitTweak/FixInit.h
    2828
    2929SRCDEMANGLE += $(SRC_INITTWEAK)
  • src/MakeLibCfa.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // MakeLibCfaNew.cpp --
     7// MakeLibCfa.cpp --
    88//
    99// Author           : Henry Xue
  • src/Makefile.am

    r6009a5a r83fd57d  
    2222        CompilationState.cc \
    2323        CompilationState.h \
    24         MakeLibCfaNew.cpp \
     24        MakeLibCfa.cpp \
    2525        MakeLibCfa.h
    2626
  • src/Tuples/TupleExpansion.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // TupleExpansionNew.cpp --
     7// TupleExpansion.cpp --
    88//
    99// Author           : Henry Xue
  • src/Validate/FindSpecialDecls.cpp

    r6009a5a r83fd57d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // FindSpecialDeclsNew.cpp -- Find special declarations used in the compiler.
     7// FindSpecialDecls.cpp -- Find special declarations used in the compiler.
    88//
    99// Author           : Andrew Beach
  • src/Validate/FixReturnTypes.cpp

    r6009a5a r83fd57d  
    1919#include "AST/Pass.hpp"
    2020#include "AST/Type.hpp"
    21 #include "CodeGen/CodeGeneratorNew.hpp"
     21#include "CodeGen/CodeGenerator.hpp"
    2222#include "ResolvExpr/Unify.h"
    23 
    24 namespace ast {
    25     class TranslationUnit;
    26 }
    2723
    2824namespace Validate {
  • src/Validate/module.mk

    r6009a5a r83fd57d  
    2727        Validate/EnumAndPointerDecay.cpp \
    2828        Validate/EnumAndPointerDecay.hpp \
    29         Validate/FindSpecialDeclsNew.cpp \
     29        Validate/FindSpecialDecls.cpp \
    3030        Validate/FixQualifiedTypes.cpp \
    3131        Validate/FixQualifiedTypes.hpp \
Note: See TracChangeset for help on using the changeset viewer.