Changeset ffec1bf for src/CodeGen/CodeGenerator.cc
- Timestamp:
- Jul 25, 2022, 2:23:28 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 4c48be0, 5cf1228, def751f
- Parents:
- 9e23b446 (diff), 1f950c3b (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
r9e23b446 rffec1bf 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Wed Feb 2 20:30:30 202213 // Update Count : 54 111 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Jun 29 14:34:00 2022 13 // Update Count : 542 14 14 // 15 15 #include "CodeGenerator.h" … … 18 18 #include <list> // for _List_iterator, list, list<>::it... 19 19 20 #include "AST/Decl.hpp" // for DeclWithType 20 21 #include "Common/UniqueName.h" // for UniqueName 21 22 #include "Common/utility.h" // for CodeLocation, toString … … 294 295 } else { 295 296 if ( obj->get_init() ) { 296 obj->get_init()->accept( *visitor ); 297 obj->get_init()->accept( *visitor ); 297 298 } else { 298 299 // Should not reach here! … … 683 684 extension( variableExpr ); 684 685 const OperatorInfo * opInfo; 685 if ( variableExpr->get_var()->get_linkage() == LinkageSpec::Intrinsic && (opInfo = operatorLookup( variableExpr->get_var()->get_name() )) && opInfo->type == OT_CONSTANT ) { 686 if( dynamic_cast<ZeroType*>( variableExpr->get_var()->get_type() ) ) { 687 output << "0"; 688 } else if ( variableExpr->get_var()->get_linkage() == LinkageSpec::Intrinsic && (opInfo = operatorLookup( variableExpr->get_var()->get_name() )) && opInfo->type == OT_CONSTANT ) { 686 689 output << opInfo->symbol; 687 690 } else { 688 // if (dynamic_cast<EnumInstType *>(variableExpr->get_var()->get_type()) 691 // if (dynamic_cast<EnumInstType *>(variableExpr->get_var()->get_type()) 689 692 // && dynamic_cast<EnumInstType *>(variableExpr->get_var()->get_type())->baseEnum->base) { 690 693 // output << '(' <<genType(dynamic_cast<EnumInstType *>(variableExpr->get_var()->get_type())->baseEnum->base, "", options) << ')'; … … 1236 1239 } // if 1237 1240 } 1241 1242 std::string genName( ast::DeclWithType const * decl ) { 1243 if ( const OperatorInfo * opInfo = operatorLookup( decl->name ) ) { 1244 return opInfo->outputName; 1245 } else { 1246 return decl->name; 1247 } 1248 } 1249 1238 1250 } // namespace CodeGen 1239 1251
Note:
See TracChangeset
for help on using the changeset viewer.