Changeset 81da3da4 for src/CodeGen


Ignore:
Timestamp:
Dec 11, 2023, 4:18:13 AM (2 years ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
21ce2c7, 2554f24
Parents:
5ddb8bf (diff), 1c85ffc (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
src/CodeGen
Files:
4 edited
2 moved

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cpp

    r5ddb8bf r81da3da4  
    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

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

    r5ddb8bf r81da3da4  
    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/GenType.h

    r5ddb8bf r81da3da4  
    2020#include "CodeGen/Options.h" // for Options
    2121
    22 class Type;
    2322namespace ast {
    2423        class Type;
     
    2625
    2726namespace CodeGen {
    28         std::string genType( Type *type, const std::string &baseString, const Options &options );
    29         std::string genType( Type *type, const std::string &baseString, bool pretty = false, bool genC = false, bool lineMarks = false );
    30         std::string genPrettyType( Type * type, const std::string & baseString );
    3127
    3228std::string genType( ast::Type const * type, const std::string & base, const Options & options );
  • src/CodeGen/Generate.cc

    r5ddb8bf r81da3da4  
    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

    r5ddb8bf r81da3da4  
    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 \
Note: See TracChangeset for help on using the changeset viewer.