source: src/ControlStruct/LabelGenerator.cc@ 3145fa2

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 3145fa2 was 888cbe4, checked in by Rob Schluntz <rschlunt@…>, 9 years ago

generated labels contain unused attribute and fixed label code gen

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[51587aa]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//
[0f8e4ac]7// LabelGenerator.cc --
[51587aa]8//
[843054c2]9// Author : Rodolfo G. Esteves
[51587aa]10// Created On : Mon May 18 07:44:20 2015
[5f2f2d7]11// Last Modified By : Peter A. Buhr
[de62360d]12// Last Modified On : Tue Jun 23 12:18:34 2015
13// Update Count : 13
[51587aa]14//
[a08ba92]15
[51b73452]16#include <iostream>
[5f2f2d7]17#include <sstream>
[51b73452]18
19#include "LabelGenerator.h"
[0f8e4ac]20#include "SynTree/Label.h"
[888cbe4]21#include "SynTree/Attribute.h"
[51b73452]22
23namespace ControlStruct {
[a08ba92]24 LabelGenerator *LabelGenerator::labelGenerator = 0;
[51b73452]25
[a08ba92]26 LabelGenerator *LabelGenerator::getGenerator() {
27 if ( LabelGenerator::labelGenerator == 0 )
28 LabelGenerator::labelGenerator = new LabelGenerator();
[51b73452]29
[a08ba92]30 return labelGenerator;
31 }
[51b73452]32
[de62360d]33 Label LabelGenerator::newLabel( std::string suffix ) {
[5f2f2d7]34 std::ostringstream os;
[27de955]35 os << "__L" << current++ << "__" << suffix;
[5f2f2d7]36 std::string ret = os.str();
[888cbe4]37 Label l( ret );
38 l.get_attributes().push_back( new Attribute("unused") );
39 return l;
[a08ba92]40 }
[51b73452]41} // namespace ControlStruct
[a08ba92]42
[51587aa]43// Local Variables: //
44// tab-width: 4 //
45// mode: c++ //
46// compile-command: "make install" //
47// End: //
Note: See TracBrowser for help on using the repository browser.