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 : Mon Mar 11 22:23:20 2019 |
---|
13 | // Update Count : 15 |
---|
14 | // |
---|
15 | |
---|
16 | #include <iostream> // for operator<<, basic_ostream |
---|
17 | #include <sstream> // for ostringstream |
---|
18 | #include <list> // for list |
---|
19 | |
---|
20 | #include "LabelGenerator.h" |
---|
21 | #include "SynTree/Attribute.h" // for Attribute |
---|
22 | #include "SynTree/Label.h" // for Label, operator<< |
---|
23 | #include "SynTree/Statement.h" // for Statement |
---|
24 | |
---|
25 | namespace ControlStruct { |
---|
26 | LabelGenerator * LabelGenerator::labelGenerator = 0; |
---|
27 | |
---|
28 | LabelGenerator * LabelGenerator::getGenerator() { |
---|
29 | if ( LabelGenerator::labelGenerator == 0 ) |
---|
30 | LabelGenerator::labelGenerator = new LabelGenerator(); |
---|
31 | return labelGenerator; |
---|
32 | } |
---|
33 | |
---|
34 | Label LabelGenerator::newLabel( std::string suffix, Statement * stmt ) { |
---|
35 | std::ostringstream os; |
---|
36 | os << "__L" << current++ << "__" << suffix; |
---|
37 | if ( stmt && ! stmt->get_labels().empty() ) { |
---|
38 | os << "_" << stmt->get_labels().front() << "__"; |
---|
39 | } // if |
---|
40 | std::string ret = os.str(); |
---|
41 | Label l( ret ); |
---|
42 | l.get_attributes().push_back( new Attribute("unused") ); |
---|
43 | return l; |
---|
44 | } |
---|
45 | } // namespace ControlStruct |
---|
46 | |
---|
47 | // Local Variables: // |
---|
48 | // tab-width: 4 // |
---|
49 | // mode: c++ // |
---|
50 | // compile-command: "make install" // |
---|
51 | // End: // |
---|