Changeset 6e3e0717
- Timestamp:
- Jun 10, 2019, 12:21:35 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- aaeacf4, f9a7cf0
- Parents:
- 6355ba7 (diff), a62749f (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/AST/Convert.cpp
r6355ba7 r6e3e0717 10 10 // Created On : Thu May 09 15::37::05 2019 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Thu May 06 19:51:00 201913 // Update Count : 1 012 // Last Modified On : Man Jun 10 11:51:00 2019 13 // Update Count : 11 14 14 // 15 15 … … 92 92 93 93 Label makeLabel(Statement * labelled, const ast::Label& label) { 94 // This probably will leak memory, but only until we get rid of the old tree. 95 if ( nullptr == labelled && label.location.isSet() ) { 96 labelled = new NullStmt(); 97 labelled->location = label.location; 98 } 94 99 return Label( 95 100 label.name, … … 1384 1389 // Local Utilities: 1385 1390 1386 #define construct(T, key, ...) ({ \1387 void * data = ::operator new(sizeof(T)); \1388 cache.emplace( key, (T*)data ); \1389 new (data) T( __VA_ARGS__ ); \1390 })1391 1392 1391 template<typename NewT, typename OldT> 1393 1392 NewT * getAccept1( OldT old ) { … … 1403 1402 1404 1403 template<typename NewT, typename OldC> 1405 std::vector< ast::ptr<NewT> > getAcceptV( OldC& old ) {1404 std::vector< ast::ptr<NewT> > getAcceptV( const OldC& old ) { 1406 1405 std::vector< ast::ptr<NewT> > ret; 1407 1406 ret.reserve( old.size() ); … … 1418 1417 1419 1418 template<typename NewT, typename OldC> 1420 std::deque< ast::ptr<NewT> > getAcceptD( OldC& old ) {1419 std::deque< ast::ptr<NewT> > getAcceptD( const OldC& old ) { 1421 1420 std::deque< ast::ptr<NewT> > ret; 1422 1421 for ( auto a : old ) { … … 1431 1430 getAcceptD< ast::type, decltype( old->child ) >( old->child ) 1432 1431 1433 ast::Label make_label(Label* old) { 1432 ast::Label make_label(const Label* old) { 1433 CodeLocation const & location = 1434 ( old->labelled ) ? old->labelled->location : CodeLocation(); 1434 1435 return ast::Label( 1435 old->labelled->location,1436 location, 1436 1437 old->name, 1437 1438 GET_ACCEPT_V(attributes, Attribute) … … 1805 1806 } 1806 1807 1807 Label label = old->originalTarget;1808 1808 auto stmt = new ast::BranchStmt( 1809 1809 old->location, 1810 1810 kind, 1811 make_label(& label),1811 make_label(&old->originalTarget), 1812 1812 GET_LABELS_V(old->labels) 1813 1813 );
Note: See TracChangeset
for help on using the changeset viewer.