source: src/ControlStruct/LabelGenerator.cc@ a465caff

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox 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 a465caff 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
Line 
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//
7// LabelGenerator.cc --
8//
9// Author : Rodolfo G. Esteves
10// Created On : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Jun 23 12:18:34 2015
13// Update Count : 13
14//
15
16#include <iostream>
17#include <sstream>
18
19#include "LabelGenerator.h"
20#include "SynTree/Label.h"
21#include "SynTree/Attribute.h"
22
23namespace ControlStruct {
24 LabelGenerator *LabelGenerator::labelGenerator = 0;
25
26 LabelGenerator *LabelGenerator::getGenerator() {
27 if ( LabelGenerator::labelGenerator == 0 )
28 LabelGenerator::labelGenerator = new LabelGenerator();
29
30 return labelGenerator;
31 }
32
33 Label LabelGenerator::newLabel( std::string suffix ) {
34 std::ostringstream os;
35 os << "__L" << current++ << "__" << suffix;
36 std::string ret = os.str();
37 Label l( ret );
38 l.get_attributes().push_back( new Attribute("unused") );
39 return l;
40 }
41} // namespace ControlStruct
42
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.