edits
[cdsspec-compiler.git] / src / edu / uci / eecs / specCompiler / codeGenerator / CodeVariables.java
1 package edu.uci.eecs.specCompiler.codeGenerator;
2
3 import java.util.ArrayList;
4 import java.util.HashMap;
5 import java.util.HashSet;
6 import java.io.File;
7
8 import edu.uci.eecs.specCompiler.grammerParser.utilParser.UtilParser;
9 import edu.uci.eecs.specCompiler.grammerParser.utilParser.ParseException;
10 import edu.uci.eecs.specCompiler.specExtraction.CPClearConstruct;
11 import edu.uci.eecs.specCompiler.specExtraction.CPDefineCheckConstruct;
12 import edu.uci.eecs.specCompiler.specExtraction.CPDefineConstruct;
13 import edu.uci.eecs.specCompiler.specExtraction.CommutativityRule;
14 import edu.uci.eecs.specCompiler.specExtraction.ConditionalInterface;
15 import edu.uci.eecs.specCompiler.specExtraction.Construct;
16 import edu.uci.eecs.specCompiler.specExtraction.FunctionHeader;
17 import edu.uci.eecs.specCompiler.specExtraction.GlobalConstruct;
18 import edu.uci.eecs.specCompiler.specExtraction.InterfaceConstruct;
19 import edu.uci.eecs.specCompiler.specExtraction.InterfaceDefineConstruct;
20 import edu.uci.eecs.specCompiler.specExtraction.PotentialCPDefineConstruct;
21 import edu.uci.eecs.specCompiler.specExtraction.SequentialDefineSubConstruct;
22 import edu.uci.eecs.specCompiler.specExtraction.VariableDeclaration;
23
24 /**
25  * <p>
26  * Defines a list of commonly used constant strings.
27  * </p>
28  * 
29  * @author peizhaoo
30  * 
31  */
32 public class CodeVariables {
33         // C++ code or library
34         public static final String HEADER_STDLIB = "<stdlib.h>";
35         public static final String HEADER_THREADS = "<threads.h>";
36         public static final String HEADER_STDINT = "<stdint.h>";
37         public static final String HEADER_MODELMEMORY = "<model_memory.h>";
38         public static final String HEADER_MODELTYPES = "<modeltypes.h>";
39         public static final String ThreadIDType = "thread_id_t";
40         public static final String BOOLEAN = "bool";
41         public static final String UINT64 = "uint64_t";
42
43         // Model checker code
44         public static final String HEADER_CDSANNOTATE = "<cdsannotate.h>";
45         public static final String HEADER_COMMON = "<common.h>";
46         public static final String HEADER_SPECANNOTATION = "<specannotation.h>";
47         public static final String HEADER_CDSTRACE = "<cdstrace.h>";
48         public static final String CDSAnnotate = "cdsannotate";
49         // public static final String CDSAnnotate = "cdsannotate";
50         public static final String CDSAnnotateType = "SPEC_ANALYSIS";
51         public static final String IDType = "call_id_t";
52
53         public static final String SPEC_ANNO_TYPE = "spec_anno_type";
54         public static final String SPEC_ANNO_TYPE_INIT = "INIT";
55         public static final String SPEC_ANNO_TYPE_HB_RULE = "HB_RULE";
56         public static final String SPEC_ANNO_TYPE_INTERFACE_BEGIN = "INTERFACE_BEGIN";
57         public static final String SPEC_ANNO_TYPE_HB_CONDITION = "HB_CONDITION";
58         public static final String SPEC_ANNO_TYPE_INTERFACE_END = "INTERFACE_END";
59         public static final String SPEC_ANNO_TYPE_POTENTIAL_CP_DEFINE = "POTENTIAL_CP_DEFINE";
60         public static final String SPEC_ANNO_TYPE_CP_DEFINE_CHECK = "CP_DEFINE_CHECK";
61         public static final String SPEC_ANNO_TYPE_CP_CLEAR = "CP_CLEAR";
62         public static final String SPEC_ANNO_TYPE_CP_DEFINE = "CP_DEFINE";
63         public static final String SPEC_ANNOTATION = "spec_annotation";
64         public static final String SPEC_ANNOTATION_FIELD_TYPE = "type";
65         public static final String SPEC_ANNOTATION_FIELD_ANNO = "annotation";
66
67         public static final String ANNO_INIT = "anno_init";
68         public static final String HB_RULE = "hb_rule";
69         public static final String COMMUTATIVITY_RULE = "commutativity_rule";
70         public static final String ANNO_INTERFACE_BEGIN = "anno_interface_begin";
71         public static final String ANNO_INTERFACE_END = "anno_interface_end";
72         public static final String ANNO_POTENTIAL_CP_DEFINE = "anno_potential_cp_define";
73         public static final String ANNO_CP_DEFINE = "anno_cp_define";
74         public static final String ANNO_CP_DEFINE_CHECK = "anno_cp_define_check";
75         public static final String ANNO_CP_CLEAR = "anno_cp_clear";
76         public static final String ANNO_HB_CONDITION = "anno_hb_condition";
77
78         // Specification variables
79         public static final String SPEC_INTERFACE_WRAPPER = "__wrapper_";
80         public static final String DEFAULT_ID = "0";
81
82         // Specification library
83         public static final String HEADER_SPEC_LIB = "<spec_lib.h>";
84         public static final String SPEC_QUEUE = "spec_queue";
85         public static final String SPEC_STACK = "spec_stack";
86         public static final String SPEC_DEQUE = "spec_deque";
87         public static final String SPEC_HASHTABLE = "spec_hashtable";
88         public static final String SPEC_PRIVATE_HASHTABLE = "spec_private_hashtable";
89         public static final String SPEC_TAG = "spec_tag";
90         public static final String SPEC_TAG_CURRENT = "current";
91         public static final String SPEC_TAG_NEXT = "next";
92
93         // Macro
94         public static final String MACRO_ID = "__ID__";
95         public static final String MACRO_COND = "__COND_SAT__";
96         public static final String MACRO_RETURN = "__RET__";
97         public static final String MACRO_ATOMIC_RETURN = "__ATOMIC_RET__";
98         public static final String MACRO_THREAD_ID = "__TID__";
99
100         public static void printCode(ArrayList<String> code) {
101                 for (int i = 0; i < code.size(); i++) {
102                         System.out.println(code.get(i));
103                 }
104         }
105
106         private static String COMMENT(String comment) {
107                 return "/* " + comment + " */";
108         }
109
110         private static String SHORT_COMMENT(String comment) {
111                 return " // " + comment;
112         }
113
114         private static String INCLUDE(String header) {
115                 return "#include " + header;
116         }
117
118         private static String DEFINE(String left, String right) {
119                 return "#define " + left + " " + right;
120         }
121
122         private static String UNDEFINE(String macro) {
123                 return "#undef " + macro;
124         }
125
126         private static String GET_FIELD_BY_PTR(String ptr, String field) {
127                 return ptr + "->" + field;
128         }
129
130         private static String GET_FIELD(String var, String field) {
131                 return var + "->" + field;
132         }
133
134         private static String BRACE(String val) {
135                 return "(" + val + ")";
136         }
137
138         private static String ASSIGN(String structName, String field, String val) {
139                 return structName + "." + field + " = " + val + ";";
140         }
141
142         private static String ASSIGN(String varName, String val) {
143                 return varName + " = " + val + ";";
144         }
145
146         private static String ASSIGN_PTR(String structName, String field, String val) {
147                 return structName + "." + field + " = &" + val + ";";
148         }
149
150         private static String ASSIGN_TO_PTR(String structName, String field,
151                         String val) {
152                 return structName + "->" + field + " = " + val + ";";
153         }
154
155         private static String ASSIGN_PTR_TO_PTR(String structName, String field,
156                         String val) {
157                 return structName + "->" + field + " = &" + val + ";";
158         }
159
160         private static String STRUCT_NEW_DECLARE_DEFINE(String type, String name) {
161                 return "struct " + type + " *" + name + " = (struct " + type
162                                 + "*) malloc(sizeof(struct " + type + "));";
163         }
164
165         private static String DECLARE(String type, String name) {
166                 return type + " " + name + ";";
167         }
168
169         private static String DECLARE(VariableDeclaration varDecl) {
170                 String type = varDecl.type, name = varDecl.name;
171                 return type + " " + name + ";";
172         }
173
174         private static String DECLARE_DEFINE(String type, String var, String val) {
175                 return type + " " + var + " = " + val + ";";
176         }
177
178         private static String ANNOTATE(SemanticsChecker semantics, String structName) {
179                 return CDSAnnotate + "(" + CDSAnnotateType + ", " + structName + ");";
180         }
181
182         private static ArrayList<String> DEFINE_INFO_STRUCT(String interfaceName,
183                         FunctionHeader header) {
184                 ArrayList<String> code = new ArrayList<String>();
185                 code.add("typedef struct " + interfaceName + "_info {");
186                 if (!header.returnType.equals("void")) {
187                         code.add(DECLARE(header.returnType, MACRO_RETURN));
188                 }
189                 for (int i = 0; i < header.args.size(); i++) {
190                         code.add(DECLARE(header.args.get(i)));
191                 }
192                 code.add("} " + interfaceName + "_info;");
193                 return code;
194         }
195
196         private static ArrayList<String> DEFINE_ID_FUNC(
197                         InterfaceConstruct construct, FunctionHeader header) {
198                 String interfaceName = construct.name;
199                 ArrayList<String> code = new ArrayList<String>();
200                 String idCode = construct.idCode;
201                 code.add("inline static " + IDType + " " + interfaceName + "_id("
202                                 + "void *info, " + ThreadIDType + " " + MACRO_THREAD_ID + ") {");
203
204                 // Read info struct
205                 if (!header.returnType.equals("void") || header.args.size() != 0) {
206                         String infoStructType = interfaceName + "_info", infoStructName = "theInfo";
207                         code.add(DECLARE_DEFINE("\t" + infoStructType + "*",
208                                         infoStructName, BRACE(infoStructType + "*") + "info"));
209                         if (!header.returnType.equals("void")) {
210                                 code.add((DECLARE_DEFINE("\t" + header.returnType,
211                                                 MACRO_RETURN,
212                                                 GET_FIELD_BY_PTR(infoStructName, MACRO_RETURN))));
213                         }
214                         for (int i = 0; i < header.args.size(); i++) {
215                                 String type = header.args.get(i).type, var = header.args.get(i).name;
216                                 code.add("\t"
217                                                 + (DECLARE_DEFINE(type, var,
218                                                                 GET_FIELD_BY_PTR(infoStructName, var))));
219                         }
220                         code.add("");
221                 }
222
223                 if (!idCode.equals("")) {
224                         code.add("\t" + DECLARE_DEFINE(IDType, MACRO_ID, idCode));
225                 } else {
226                         code.add("\t" + DECLARE_DEFINE(IDType, MACRO_ID, DEFAULT_ID));
227                 }
228                 code.add("\treturn " + MACRO_ID + ";");
229                 code.add("}");
230                 return code;
231         }
232
233         private static ArrayList<String> DEFINE_CHECK_ACTION_FUNC(
234                         InterfaceConstruct construct, FunctionHeader header) {
235                 String interfaceName = construct.name;
236                 ArrayList<String> code = new ArrayList<String>();
237                 code.add("inline static bool " + interfaceName
238                                 + "_check_action(void *info, " + IDType + " " + MACRO_ID + ", "
239                                 + ThreadIDType + " " + MACRO_THREAD_ID + ") {");
240                 code.add("\t" + DECLARE("bool", "check_passed"));
241                 // Read info struct
242                 if (!header.returnType.equals("void") || header.args.size() != 0) {
243                         String infoStructType = interfaceName + "_info", infoStructName = "theInfo";
244                         code.add("\t"
245                                         + DECLARE_DEFINE(infoStructType + "*", infoStructName,
246                                                         BRACE(infoStructType + "*") + "info"));
247                         if (!header.returnType.equals("void")) {
248                                 code.add("\t"
249                                                 + (DECLARE_DEFINE(header.returnType, MACRO_RETURN,
250                                                                 GET_FIELD_BY_PTR(infoStructName, MACRO_RETURN))));
251                         }
252                         for (int i = 0; i < header.args.size(); i++) {
253                                 String type = header.args.get(i).type, var = header.args.get(i).name;
254                                 code.add("\t"
255                                                 + (DECLARE_DEFINE(type, var,
256                                                                 GET_FIELD_BY_PTR(infoStructName, var))));
257                         }
258                         code.add("");
259                 }
260                 // __COND_SAT
261                 if (!construct.condition.equals("")) {
262                         code.add("\t"
263                                         + DECLARE_DEFINE("bool", MACRO_COND, construct.condition));
264                 }
265                 // Check
266                 if (!construct.check.equals("")) {
267                         code.add("\t" + ASSIGN("check_passed", construct.check));
268                         code.add("\tif (!check_passed)");
269                         code.add("\t\treturn false;");
270
271                 }
272                 // Action
273                 if (construct.action.size() > 0) {
274                         addAllCodeWithIndent(code, construct.action, "\t");
275                 }
276                 // Post_check
277                 if (!construct.postCheck.equals("")) {
278                         code.add("\t" + ASSIGN("check_passed", construct.postCheck));
279                         code.add("\tif (!check_passed)");
280                         code.add("\t\treturn false;");
281                 }
282                 // Post_action
283                 if (construct.postAction.size() > 0) {
284                         addAllCodeWithIndent(code, construct.postAction, "\t");
285                 }
286                 // Return true finally
287                 code.add("\treturn true;");
288
289                 code.add("}");
290
291                 return code;
292         }
293
294         private static void addAllCodeWithIndent(ArrayList<String> allCode,
295                         ArrayList<String> target, String indent) {
296                 for (int i = 0; i < target.size(); i++) {
297                         allCode.add(indent + target.get(i));
298                 }
299         }
300
301         public static HashSet<String> getAllHeaders(SemanticsChecker semantics) {
302                 HashSet<String> headers = new HashSet<String>();
303                 for (String interfaceName : semantics.interfaceName2Construct.keySet()) {
304                         File f = semantics.interfaceName2Construct.get(interfaceName).file;
305                         headers.addAll(semantics.srcFilesInfo.get(f).headers);
306                 }
307                 headers.add(HEADER_STDLIB);
308                 headers.add(HEADER_STDINT);
309                 headers.add(HEADER_MODELMEMORY);
310                 headers.add(HEADER_MODELTYPES);
311                 headers.add(HEADER_SPEC_LIB);
312                 headers.add(HEADER_STDINT);
313                 headers.add(HEADER_CDSANNOTATE);
314                 // headers.add(HEADER_COMMON);
315                 headers.add(HEADER_SPECANNOTATION);
316                 return headers;
317         }
318
319         private static void makeFunctionStatic(ArrayList<String> funcDefine) {
320                 String headLine = funcDefine.get(0);
321                 headLine = "inline static " + headLine;
322                 funcDefine.set(0, headLine);
323         }
324
325         private static String makeVariablesStatic(VariableDeclaration varDecl) {
326                 String res = "static " + varDecl.type + " " + varDecl.name + ";";
327                 return res;
328         }
329
330         private static FunctionHeader getFunctionHeader(SemanticsChecker semantics,
331                         Construct construct) {
332                 ArrayList<String> content = semantics.srcFilesInfo.get(construct.file).content;
333                 String headerLine = content.get(construct.beginLineNum + 1), templateLine = null;
334                 if (headerLine.startsWith("template")) {
335                         templateLine = headerLine;
336                         headerLine = content.get(construct.beginLineNum + 2);
337                 }
338                 headerLine = headerLine.substring(0, headerLine.indexOf(')') + 1);
339                 try {
340                         FunctionHeader header = UtilParser.parseFuncHeader(headerLine);
341                         if (templateLine != null) {
342                                 ArrayList<VariableDeclaration> templateArgs = UtilParser
343                                                 .getTemplateArg(templateLine);
344                                 header.setTemplateList(templateArgs);
345                         }
346                         return header;
347                 } catch (ParseException e) {
348                         e.printStackTrace();
349                 }
350                 return null;
351         }
352
353         public static ArrayList<String> generateGlobalVarDeclaration(
354                         SemanticsChecker semantics, GlobalConstruct construct) {
355                 ArrayList<String> newCode = new ArrayList<String>();
356                 HashSet<String> allHeaders = getAllHeaders(semantics);
357
358                 SequentialDefineSubConstruct code = construct.code;
359                 // User-defined structs first
360                 newCode.add(COMMENT("All other user-defined structs"));
361                 ArrayList<ArrayList<String>> declareStructs = code.declareStructs;
362                 for (int i = 0; i < declareStructs.size(); i++) {
363                         ArrayList<String> declareStruct = declareStructs.get(i);
364                         newCode.addAll(declareStruct);
365                         newCode.add("");
366                 }
367                 // User-defined variables
368                 ArrayList<VariableDeclaration> varDecls = code.declareVar;
369                 for (int i = 0; i < varDecls.size(); i++) {
370                         VariableDeclaration varDecl = varDecls.get(i);
371                         // Don't forget to make them static
372                         newCode.add(makeVariablesStatic(varDecl));
373                 }
374                 // User-defined functions
375                 newCode.add(COMMENT("All other user-defined functions"));
376                 ArrayList<ArrayList<String>> defineFuncs = code.defineFuncs;
377                 for (int i = 0; i < defineFuncs.size(); i++) {
378                         ArrayList<String> defineFunc = defineFuncs.get(i);
379                         makeFunctionStatic(defineFunc);
380                         newCode.addAll(defineFunc);
381                         newCode.add("");
382                 }
383
384                 for (String interfaceName : semantics.interfaceName2Construct.keySet()) {
385                         InterfaceConstruct iConstruct = semantics.interfaceName2Construct
386                                         .get(interfaceName);
387                         FunctionHeader funcHeader = getFunctionHeader(semantics, iConstruct);
388                         // Define necessary info structure
389                         if (!funcHeader.returnType.equals("void")
390                                         || funcHeader.args.size() > 0) {
391                                 newCode.add(COMMENT("Definition of interface info struct: "
392                                                 + interfaceName));
393                                 newCode.addAll(DEFINE_INFO_STRUCT(interfaceName, funcHeader));
394                                 newCode.add(COMMENT("End of info struct definition: "
395                                                 + interfaceName));
396                                 newCode.add("");
397                         }
398
399                         // Define ID function
400                         newCode.add(COMMENT("ID function of interface: " + interfaceName));
401                         newCode.addAll(DEFINE_ID_FUNC(iConstruct, funcHeader));
402                         newCode.add(COMMENT("End of ID function: " + interfaceName));
403                         newCode.add("");
404
405                         // Define check_action function
406                         newCode.add(COMMENT("Check action function of interface: "
407                                         + interfaceName));
408                         newCode.addAll(DEFINE_CHECK_ACTION_FUNC(iConstruct, funcHeader));
409                         newCode.add(COMMENT("End of check action function: "
410                                         + interfaceName));
411                         newCode.add("");
412                 }
413                 // Interface function pointer table
414                 String interfaceSize = Integer
415                                 .toString(semantics.interfaceName2Construct.size());
416                 newCode.add(DEFINE("INTERFACE_SIZE", interfaceSize));
417                 // Make it static
418                 newCode.add("static " + DECLARE("void**", "func_ptr_table"));
419                 // Happens-before initialization rules
420                 // Should make it static
421                 newCode.add("static " + DECLARE(HB_RULE + "**", "hb_rule_table"));
422
423                 // Declare the Commutativity Rule table
424                 newCode.add("static "
425                                 + DECLARE(COMMUTATIVITY_RULE + "**", "commutativity_rule_table"));
426                 // Define the Commutativity Rule condition functions
427                 ArrayList<CommutativityRule> rules = semantics.getGlobalConstruct().commutativityRules;
428                 for (int i = 0; i < rules.size(); i++) {
429                         CommutativityRule rule = rules.get(i);
430                         String infoStructType1 = rule.method1 + "_info";
431                         String infoStructType2 = rule.method2 + "_info";
432                         String condition = rule.condition;
433                         String conditionFuncName = "CommutativityCondition"
434                                         + Integer.toString(i);
435
436                         // Replace the "_M1." and "_M2." with the actual info struct
437                         condition = condition.replaceAll("_Method1 \\.", "_info1->");
438                         condition = condition.replaceAll("_Method2 \\.", "_info2->");
439
440                         // Declare the signature of the condition function
441                         newCode.add("inline static bool " + conditionFuncName
442                                         + "(void *info1, void *info2) {");
443
444                         // Cast the "void*" type to the actual info type
445                         newCode.add("\t"
446                                         + DECLARE_DEFINE(infoStructType1, "*_info1", "("
447                                                         + infoStructType1 + "*) info1"));
448                         newCode.add("\t"
449                                         + DECLARE_DEFINE(infoStructType2, "*_info2", "("
450                                                         + infoStructType2 + "*) info2"));
451                         newCode.add("\treturn " + condition + ";");
452
453                         // End of the condition function
454                         newCode.add("}");
455                 }
456
457                 newCode.add("");
458
459                 // Beginning initialization
460                 // Define the __SPEC_INIT__ function to initialize user-defined
461                 // variables
462                 newCode.add(COMMENT("Initialization of sequential varialbes"));
463                 newCode.add("static void __SPEC_INIT__() {");
464                 addAllCodeWithIndent(newCode, construct.code.initVar, "\t");
465                 newCode.add("}");
466                 newCode.add("");
467
468                 // Define the __SPEC_CLEAN__ function for clean-up
469                 newCode.add(COMMENT("Cleanup routine of sequential variables"));
470                 newCode.add("static bool __SPEC_CLEANUP__() {");
471                 if (construct.code.cleanupCode.size() > 0) {
472                         addAllCodeWithIndent(newCode, construct.code.cleanupCode, "\t");        
473                 } else {
474                         newCode.add("\treturn true;"); // If not specified return true
475                 }
476                 
477                 newCode.add("}");
478                 newCode.add("");
479
480                 newCode.add(COMMENT("Define function for sequential code initialization"));
481                 newCode.add("inline static void __sequential_init() {");
482
483                 // Init func_ptr_table
484                 newCode.add("\t" + COMMENT("Init func_ptr_table"));
485                 newCode.add("\t"
486                                 + ASSIGN("func_ptr_table", "(void**) malloc(sizeof(void*) * "
487                                                 + semantics.interface2Num.size() + " * 2)"));
488                 for (String interfaceName : semantics.interfaceName2Construct.keySet()) {
489                         String interfaceNum = Integer.toString(semantics.interface2Num
490                                         .get(interfaceName));
491                         newCode.add("\t"
492                                         + ASSIGN("func_ptr_table[2 * " + interfaceNum + "]",
493                                                         "(void*) &" + interfaceName + "_id"));
494                         newCode.add("\t"
495                                         + ASSIGN("func_ptr_table[2 * " + interfaceNum + " + 1]",
496                                                         "(void*) &" + interfaceName + "_check_action"));
497                 }
498
499                 // Init Happens-before rules table
500                 newCode.addAll(generateHBInitAnnotation(semantics));
501
502                 // Init Commutativity rules table
503                 newCode.addAll(generateCommutativityAnnotation(semantics));
504
505                 // Pass init info, including function table info & HB rules
506                 newCode.add("\t"
507                                 + COMMENT("Pass init info, including function table info & HB rules & Commutativity Rules"));
508                 String structName = "anno_init", anno = "init";
509                 newCode.add("\t" + STRUCT_NEW_DECLARE_DEFINE(ANNO_INIT, structName));
510                 newCode.add("\t"
511                                 + ASSIGN_TO_PTR(structName, "init_func",
512                                                 "(void_func_t) __SPEC_INIT__"));
513                 newCode.add("\t"
514                                 + ASSIGN_TO_PTR(structName, "cleanup_func",
515                                                 "(cleanup_func_t) __SPEC_CLEANUP__"));
516                 newCode.add("\t"
517                                 + ASSIGN_TO_PTR(structName, "func_table", "func_ptr_table"));
518                 newCode.add("\t"
519                                 + ASSIGN_TO_PTR(structName, "func_table_size", "INTERFACE_SIZE"));
520                 newCode.add("\t"
521                                 + ASSIGN_TO_PTR(structName, "hb_rule_table", "hb_rule_table"));
522                 newCode.add("\t"
523                                 + ASSIGN_TO_PTR(structName, "hb_rule_table_size",
524                                                 "HB_RULE_TABLE_SIZE"));
525                 newCode.add("\t"
526                                 + ASSIGN_TO_PTR(structName, "commutativity_rule_table",
527                                                 "commutativity_rule_table"));
528                 newCode.add("\t"
529                                 + ASSIGN_TO_PTR(structName, "commutativity_rule_table_size",
530                                                 Integer.toString(rules.size())));
531
532                 newCode.add("\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
533                 newCode.add("\t" + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_INIT));
534                 newCode.add("\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
535                 newCode.add("\t" + ANNOTATE(semantics, anno));
536
537                 newCode.add("");
538                 newCode.add("}");
539                 newCode.add("");
540
541                 newCode.add(COMMENT("End of Global construct generation in class"));
542
543                 // printCode(newCode);
544                 return newCode;
545         }
546
547         public static ArrayList<String> generateStaticVarDefine(
548                         SemanticsChecker semantics, GlobalConstruct construct) {
549                 ArrayList<String> newCode = new ArrayList<String>();
550                 String className = semantics.getClassName();
551                 if (className == null)
552                         return newCode; // No need to define any static variables
553                 String templateList = semantics.getTemplateStr();
554                 String varPrefix;
555                 if (templateList == null) {
556                         varPrefix = className + "::";
557                 } else {
558                         varPrefix = className + templateList + "::";
559                 }
560                 String templateDecl = semantics.getTemplateFullStr();
561                 if (templateList == null) {
562                         newCode.add(DECLARE("void**", varPrefix + "func_ptr_table"));
563                         newCode.add(DECLARE("hb_rule**", varPrefix + "hb_rule_table"));
564                         newCode.add(DECLARE("commutativity_rule**", varPrefix + "commutativity_rule_table"));
565                         for (int i = 0; i < construct.code.declareVar.size(); i++) {
566                                 VariableDeclaration varDecl = construct.code.declareVar.get(i);
567                                 newCode.add(DECLARE(varDecl.type, varPrefix + varDecl.name));
568                         }
569                 } else {
570                         newCode.add(templateDecl);
571                         newCode.add(DECLARE("void**", varPrefix + "func_ptr_table"));
572                         newCode.add(templateDecl);
573                         newCode.add(DECLARE("hb_rule**", varPrefix + "hb_rule_table"));
574                         newCode.add(DECLARE("commutativity_rule**", varPrefix + "commutativity_rule_table"));
575                         for (int i = 0; i < construct.code.declareVar.size(); i++) {
576                                 VariableDeclaration varDecl = construct.code.declareVar.get(i);
577                                 newCode.add(templateDecl);
578                                 newCode.add(DECLARE(varDecl.type, varPrefix + varDecl.name));
579                         }
580                 }
581                 return newCode;
582         }
583
584         private static ArrayList<String> generateHBInitAnnotation(
585                         SemanticsChecker semantics) {
586                 ArrayList<String> newCode = new ArrayList<String>();
587
588                 int hbConditionInitIdx = 0;
589                 for (ConditionalInterface left : semantics.getHBConditions().keySet()) {
590                         for (ConditionalInterface right : semantics.getHBConditions().get(
591                                         left)) {
592                                 String structVarName = "hbConditionInit" + hbConditionInitIdx;
593                                 // String annotationVarName = "hb_rule" + hbConditionInitIdx;
594                                 hbConditionInitIdx++;
595                                 String interfaceNumBefore = Integer
596                                                 .toString(semantics.interface2Num
597                                                                 .get(left.interfaceName)), hbLabelNumBefore = Integer
598                                                 .toString(semantics.hbLabel2Num
599                                                                 .get(left.hbConditionLabel)), interfaceNumAfter = Integer
600                                                 .toString(semantics.interface2Num
601                                                                 .get(right.interfaceName)), hbLabelNumAfter = Integer
602                                                 .toString(semantics.hbLabel2Num
603                                                                 .get(right.hbConditionLabel));
604                                 newCode.add("\t" + COMMENT(left + " -> " + right));
605
606                                 newCode.add("\t"
607                                                 + STRUCT_NEW_DECLARE_DEFINE(HB_RULE, structVarName));
608                                 newCode.add("\t"
609                                                 + ASSIGN_TO_PTR(structVarName, "interface_num_before",
610                                                                 interfaceNumBefore)
611                                                 + SHORT_COMMENT(left.interfaceName));
612                                 newCode.add("\t"
613                                                 + ASSIGN_TO_PTR(structVarName,
614                                                                 "hb_condition_num_before", hbLabelNumBefore)
615                                                 + SHORT_COMMENT(left.hbConditionLabel));
616                                 newCode.add("\t"
617                                                 + ASSIGN_TO_PTR(structVarName, "interface_num_after",
618                                                                 interfaceNumAfter)
619                                                 + SHORT_COMMENT(right.interfaceName));
620                                 newCode.add("\t"
621                                                 + ASSIGN_TO_PTR(structVarName,
622                                                                 "hb_condition_num_after", hbLabelNumAfter)
623                                                 + SHORT_COMMENT(right.hbConditionLabel));
624                         }
625                 }
626                 // Init hb_rule_table
627                 newCode.add("\t" + COMMENT("Init hb_rule_table"));
628                 newCode.add("\t"
629                                 + ASSIGN("hb_rule_table", "(" + HB_RULE
630                                                 + "**) malloc(sizeof(" + HB_RULE + "*) * "
631                                                 + hbConditionInitIdx + ")"));
632                 // Define HB_RULE_TABLE_SIZE
633                 newCode.add("\t"
634                                 + DEFINE("HB_RULE_TABLE_SIZE",
635                                                 Integer.toString(hbConditionInitIdx)));
636                 for (int i = 0; i < hbConditionInitIdx; i++) {
637                         newCode.add("\t"
638                                         + ASSIGN("hb_rule_table[" + i + "]", "hbConditionInit" + i));
639                 }
640                 return newCode;
641         }
642
643         private static ArrayList<String> generateCommutativityAnnotation(
644                         SemanticsChecker semantics) {
645                 ArrayList<String> newCode = new ArrayList<String>();
646                 ArrayList<CommutativityRule> rules = semantics.getGlobalConstruct().commutativityRules;
647
648                 // Init commutativity_rule_table
649                 newCode.add("\t" + COMMENT("Init commutativity_rule_table"));
650
651                 // Users have not defined any commutativity rules
652                 if (rules.size() == 0)
653                         return newCode;
654
655                 newCode.add("\t"
656                                 + ASSIGN("commutativity_rule_table", "(" + COMMUTATIVITY_RULE
657                                                 + "**) malloc(sizeof(" + COMMUTATIVITY_RULE + "*) * "
658                                                 + rules.size() + ")"));
659
660                 // Declare a rule pointer
661                 newCode.add("\t" + DECLARE("commutativity_rule*", "rule"));
662
663                 for (int i = 0; i < rules.size(); i++) {
664                         CommutativityRule rule = rules.get(i);
665                         Integer method = semantics.interface2Num.get(rule.method1);
666                         if (method == null) {
667                                 System.out.println("Wrong method label in commutativity rule: " + rule.method1);
668                         }
669                         String interfaceNumBefore = Integer.toString(method);
670                         String interfaceNumAfter = Integer.toString(semantics.interface2Num
671                                         .get(rule.method2));
672                         String conditionFuncName = "CommutativityCondition" + i;
673
674                         // Construct a new rule
675                         newCode.add("\t"
676                                         + ASSIGN("rule",
677                                                         "(commutativity_rule*) malloc (sizeof(commutativity_rule))"));
678                         newCode.add("\t"
679                                         + ASSIGN_TO_PTR("rule", "interface_num_before",
680                                                         interfaceNumBefore));
681                         newCode.add("\t"
682                                         + ASSIGN_TO_PTR("rule", "interface_num_after",
683                                                         interfaceNumAfter));
684                         newCode.add("\t"
685                                         + ASSIGN_TO_PTR("rule", "rule",
686                                                         "\"" + rule.condition + "\""));
687                         
688                         newCode.add("\t"
689                                         + ASSIGN_TO_PTR("rule", "condition", conditionFuncName));
690
691                         // Assign the rule to the corresponding commutativity table slot
692                         newCode.add("\t"
693                                         + ASSIGN("commutativity_rule_table[" + i + "]", "rule"));
694                 }
695
696                 return newCode;
697         }
698
699         public static ArrayList<String> generateEntryPointInitCall() {
700                 ArrayList<String> newCode = new ArrayList<String>();
701                 newCode.add("\t" + "__sequential_init();");
702                 return newCode;
703         }
704
705         public static ArrayList<String> generateInterfaceWrapperDeclaration(
706                         SemanticsChecker semantics, InterfaceConstruct construct) {
707                 FunctionHeader header = getFunctionHeader(semantics, construct);
708                 ArrayList<String> declaration = new ArrayList<String>();
709                 declaration.add(header.getRenamedHeader(SPEC_INTERFACE_WRAPPER)
710                                 .getDeclaration() + ";");
711                 return declaration;
712         }
713
714         // Only generate the definition of the wrapper, don't do any renaming
715         public static ArrayList<String> generateInterfaceWrapperDefinition(
716                         SemanticsChecker semantics, InterfaceConstruct construct) {
717                 ArrayList<String> newCode = new ArrayList<String>();
718                 String interfaceName = construct.name;
719
720                 FunctionHeader header = getFunctionHeader(semantics, construct);
721                 String interfaceNum = Integer.toString(semantics.interface2Num
722                                 .get(construct.name));
723
724                 newCode.add(header.getTemplateFullStr());
725                 newCode.add(header.getFuncStr() + " {");
726                 // Wrapper function body
727                 newCode.add("\t" + COMMENT("Interface begins"));
728                 // Interface begin
729                 String structName = "interface_begin";
730                 newCode.add("\t"
731                                 + STRUCT_NEW_DECLARE_DEFINE(ANNO_INTERFACE_BEGIN,
732                                                 "interface_begin"));
733                 newCode.add("\t"
734                                 + ASSIGN_TO_PTR(structName, "interface_num", interfaceNum)
735                                 + SHORT_COMMENT(construct.name));
736                 newCode.add("\t\t"
737                                 + ASSIGN_TO_PTR(structName, "interface_name", "\""
738                                                 + construct.name + "\""));
739
740                 String anno = "annotation_interface_begin";
741                 newCode.add("\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
742                 newCode.add("\t"
743                                 + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_INTERFACE_BEGIN));
744                 newCode.add("\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
745                 newCode.add("\t" + ANNOTATE(semantics, anno));
746                 // Call original renamed function
747                 if (header.returnType.equals("void")) {
748                         newCode.add("\t" + header.getRenamedCall(SPEC_INTERFACE_WRAPPER)
749                                         + ";");
750                 } else {
751                         newCode.add("\t"
752                                         + DECLARE_DEFINE(header.returnType, MACRO_RETURN,
753                                                         header.getRenamedCall(SPEC_INTERFACE_WRAPPER)));
754                 }
755                 // HB conditions
756                 for (String label : construct.hbConditions.keySet()) {
757                         String condition = construct.hbConditions.get(label);
758                         String hbCondNum = Integer.toString(semantics.hbLabel2Num
759                                         .get(label));
760                         newCode.add("\t" + "if " + BRACE(condition) + " {");
761                         structName = "hb_condition";
762                         newCode.add("\t\t"
763                                         + STRUCT_NEW_DECLARE_DEFINE(ANNO_HB_CONDITION, structName));
764                         newCode.add("\t\t"
765                                         + ASSIGN_TO_PTR(structName, "interface_num", interfaceNum)
766                                         + SHORT_COMMENT(construct.name));
767
768                         newCode.add("\t\t"
769                                         + ASSIGN_TO_PTR(structName, "hb_condition_num", hbCondNum));
770                         anno = "annotation_hb_condition";
771                         newCode.add("\t\t"
772                                         + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
773                         newCode.add("\t\t"
774                                         + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_HB_CONDITION));
775                         newCode.add("\t\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
776                         newCode.add("\t\t" + ANNOTATE(semantics, anno));
777                         newCode.add("\t" + "}");
778                         newCode.add("");
779                 }
780                 // Also add the true condition if any
781                 if (semantics.containsConditionalInterface(new ConditionalInterface(
782                                 interfaceName, ""))) {
783                         structName = "hb_condition";
784                         newCode.add("\t"
785                                         + STRUCT_NEW_DECLARE_DEFINE(ANNO_HB_CONDITION, structName));
786                         newCode.add("\t"
787                                         + ASSIGN_TO_PTR(structName, "interface_num", interfaceNum)
788                                         + SHORT_COMMENT(construct.name));
789                         newCode.add("\t"
790                                         + ASSIGN_TO_PTR(structName, "hb_condition_num", "0"));
791                         anno = "annotation_hb_condition";
792                         newCode.add("\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
793                         newCode.add("\t"
794                                         + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_HB_CONDITION));
795                         newCode.add("\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
796                         newCode.add("\t" + ANNOTATE(semantics, anno));
797                         newCode.add("");
798                 }
799                 // Interface end
800                 String infoStructType = null, infoName = null;
801                 if (!header.returnType.equals("void") || header.args.size() > 0) {
802                         infoStructType = interfaceName + "_info";
803                         infoName = "info";
804                         newCode.add("\t"
805                                         + DECLARE_DEFINE(infoStructType + "*", infoName,
806                                                         BRACE(infoStructType + "*") + " malloc(sizeof("
807                                                                         + infoStructType + "))"));
808                         if (!header.returnType.equals("void")) {
809                                 newCode.add("\t"
810                                                 + ASSIGN_TO_PTR(infoName, MACRO_RETURN, MACRO_RETURN));
811                         }
812                         for (int i = 0; i < header.args.size(); i++) {
813                                 String argName = header.args.get(i).name;
814                                 newCode.add("\t" + ASSIGN_TO_PTR(infoName, argName, argName));
815                         }
816                 } else {
817                         infoName = "NULL";
818                 }
819                 structName = "interface_end";
820                 anno = "annoation_interface_end";
821                 newCode.add("\t"
822                                 + STRUCT_NEW_DECLARE_DEFINE(ANNO_INTERFACE_END, structName));
823                 newCode.add("\t"
824                                 + ASSIGN_TO_PTR(structName, "interface_num", interfaceNum)
825                                 + SHORT_COMMENT(construct.name));
826                 newCode.add("\t" + ASSIGN_TO_PTR(structName, "info", infoName));
827                 newCode.add("\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
828                 newCode.add("\t"
829                                 + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_INTERFACE_END));
830                 newCode.add("\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
831                 newCode.add("\t" + ANNOTATE(semantics, anno));
832                 // Return __RET__ if it's not void
833                 if (!header.returnType.equals("void")) {
834                         newCode.add("\t" + "return " + MACRO_RETURN + ";");
835                 }
836                 // End of the wrapper function
837                 newCode.add("}");
838
839                 // printCode(newCode);
840                 return newCode;
841         }
842
843         // Rename the interface name for declaration or definition
844         public static void renameInterface(SemanticsChecker semantics,
845                         Construct construct) {
846                 FunctionHeader header = getFunctionHeader(semantics, construct);
847                 ArrayList<String> content = semantics.srcFilesInfo.get(construct.file).content;
848                 int lineNum = construct.beginLineNum;
849                 String headerLine = content.get(construct.beginLineNum);
850                 if (headerLine.startsWith("template")) {
851                         headerLine = content.get(construct.beginLineNum + 1);
852                         lineNum++;
853                 }
854                 String newLine = header.getRenamedHeader(SPEC_INTERFACE_WRAPPER)
855                                 .toString();
856                 String oldLine = content.get(lineNum + 1);
857
858                 if (construct instanceof InterfaceConstruct) {
859                         InterfaceConstruct iConstruct = (InterfaceConstruct) construct;
860                         InterfaceDefineConstruct defineConstruct = semantics.interfaceName2DefineConstruct
861                                         .get(iConstruct.name);
862                         if (defineConstruct != null) { // There is a defineConstruct
863                                 newLine = newLine + " ;";
864                                 renameInterface(semantics, defineConstruct);
865                         } else { // This is a declare & define construct
866                                 if (oldLine.indexOf('{') != -1)
867                                         newLine = newLine + " {";
868                         }
869                 } else {
870                         if (oldLine.indexOf('{') != -1)
871                                 newLine = newLine + " {";
872                 }
873
874                 content.set(lineNum + 1, newLine);
875         }
876
877         public static void addAtomicReturn(SemanticsChecker semantics,
878                         Construct construct) {
879                 int lineNum = construct.beginLineNum - 1;
880                 ArrayList<String> content = semantics.srcFilesInfo.get(construct.file).content;
881                 String oldLine = content.get(lineNum);
882                 String newLine = "uint64_t " + MACRO_ATOMIC_RETURN + " = " + oldLine;
883                 content.set(lineNum, newLine);
884         }
885
886         public static ArrayList<String> generatePotentialCPDefine(
887                         SemanticsChecker semantics, PotentialCPDefineConstruct construct) {
888                 ArrayList<String> newCode = new ArrayList<String>();
889                 // Add atomic return variable if the predicate accesses to it
890                 if (construct.condition.indexOf(MACRO_ATOMIC_RETURN) != -1) {
891                         addAtomicReturn(semantics, construct);
892                 }
893                 // Generate redundant header files
894                 newCode.add("\t"
895                                 + COMMENT("Automatically generated code for potential commit point: "
896                                                 + construct.label));
897                 newCode.add("");
898                 // Add annotation
899                 newCode.add("\t" + "if (" + construct.condition + ") {");
900                 String structName = "potential_cp_define", anno = "annotation_potential_cp_define";
901                 newCode.add("\t\t"
902                                 + STRUCT_NEW_DECLARE_DEFINE(ANNO_POTENTIAL_CP_DEFINE,
903                                                 structName));
904                 String labelNum = Integer.toString(semantics.commitPointLabel2Num
905                                 .get(construct.label));
906                 newCode.add("\t\t" + ASSIGN_TO_PTR(structName, "label_num", labelNum));
907                 newCode.add("\t\t"
908                                 + ASSIGN_TO_PTR(structName, "label_name", "\""
909                                                 + construct.label + "\""));
910
911                 newCode.add("\t\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
912                 newCode.add("\t\t"
913                                 + ASSIGN_TO_PTR(anno, "type",
914                                                 SPEC_ANNO_TYPE_POTENTIAL_CP_DEFINE));
915                 newCode.add("\t\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
916                 newCode.add("\t\t" + ANNOTATE(semantics, anno));
917                 newCode.add("\t" + "}");
918                 return newCode;
919         }
920
921         public static String getCPInterfaceNum(SemanticsChecker semantics,
922                         String commitPointLabel) {
923                 HashMap<String, InterfaceConstruct> cp2Interface = semantics.CPLabel2InterfaceConstruct;
924                 InterfaceConstruct iConstruct = cp2Interface.get(commitPointLabel);
925                 String interfaceName = iConstruct.name;
926                 String interfaceNum = Integer.toString(semantics.interface2Num
927                                 .get(interfaceName));
928                 return interfaceNum;
929         }
930
931         /**
932          * <p>
933          * Commit point define check should be unique to each interface, meaning
934          * that they are not shared between different interfaces
935          * </p>
936          * 
937          * @param semantics
938          * @param construct
939          * @return
940          */
941         public static ArrayList<String> generateCPDefineCheck(
942                         SemanticsChecker semantics, CPDefineCheckConstruct construct) {
943                 ArrayList<String> newCode = new ArrayList<String>();
944                 // Add atomic return variable if the predicate accesses to it
945                 if (construct.condition.indexOf(MACRO_ATOMIC_RETURN) != -1) {
946                         addAtomicReturn(semantics, construct);
947                 }
948                 // Generate redundant header files
949                 newCode.add("\t"
950                                 + COMMENT("Automatically generated code for commit point define check: "
951                                                 + construct.label));
952                 newCode.add("");
953                 // Add annotation
954
955                 newCode.add("\t" + "if (" + construct.condition + ") {");
956                 String structName = "cp_define_check", anno = "annotation_cp_define_check";
957                 newCode.add("\t\t"
958                                 + STRUCT_NEW_DECLARE_DEFINE(ANNO_CP_DEFINE_CHECK, structName));
959                 String labelNum = Integer.toString(semantics.commitPointLabel2Num
960                                 .get(construct.label));
961                 String interfaceNum = getCPInterfaceNum(semantics, construct.label);
962                 newCode.add("\t\t" + ASSIGN_TO_PTR(structName, "label_num", labelNum));
963                 newCode.add("\t\t"
964                                 + ASSIGN_TO_PTR(structName, "label_name", "\""
965                                                 + construct.label + "\""));
966                 newCode.add("\t\t"
967                                 + ASSIGN_TO_PTR(structName, "interface_num", interfaceNum));
968
969                 newCode.add("\t\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
970                 newCode.add("\t\t"
971                                 + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_CP_DEFINE_CHECK));
972                 newCode.add("\t\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
973                 newCode.add("\t\t" + ANNOTATE(semantics, anno));
974                 newCode.add("\t" + "}");
975                 return newCode;
976         }
977
978         /**
979          * <p>
980          * Commit point define check should be unique to each interface, meaning
981          * that they are not shared between different interfaces
982          * </p>
983          * 
984          * @param semantics
985          * @param construct
986          * @return
987          */
988         public static ArrayList<String> generateCPClear(SemanticsChecker semantics,
989                         CPClearConstruct construct) {
990                 ArrayList<String> newCode = new ArrayList<String>();
991                 // Add atomic return variable if the predicate accesses to it
992                 if (construct.condition.indexOf(MACRO_ATOMIC_RETURN) != -1) {
993                         addAtomicReturn(semantics, construct);
994                 }
995                 // Generate redundant header files
996                 newCode.add("\t"
997                                 + COMMENT("Automatically generated code for commit point clear: "
998                                                 + construct.label));
999                 newCode.add("");
1000                 // Add annotation
1001
1002                 newCode.add("\t" + "if (" + construct.condition + ") {");
1003                 String structName = "cp_clear", anno = "annotation_cp_clear";
1004                 newCode.add("\t\t"
1005                                 + STRUCT_NEW_DECLARE_DEFINE(ANNO_CP_CLEAR, structName));
1006                  
1007                 String labelNum = Integer.toString(semantics.commitPointLabel2Num
1008                                 .get(construct.label));
1009                 String labelName = construct.label;
1010                 newCode.add("\t\t" + ASSIGN_TO_PTR(structName, "label_name",
1011                                 "\"" + labelName + "\""));
1012                 newCode.add("\t\t" + ASSIGN_TO_PTR(structName, "label_num",
1013                                 labelNum));
1014                 
1015                 newCode.add("\t\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
1016                 newCode.add("\t\t"
1017                                 + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_CP_CLEAR));
1018                 newCode.add("\t\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
1019                 newCode.add("\t\t" + ANNOTATE(semantics, anno));
1020                 newCode.add("\t" + "}");
1021                 return newCode;
1022         }
1023
1024         /**
1025          * <p>
1026          * Commit point define should be unique to each interface, meaning that they
1027          * are not shared between different interfaces
1028          * </p>
1029          * 
1030          * @param semantics
1031          * @param construct
1032          * @return
1033          */
1034         public static ArrayList<String> generateCPDefine(
1035                         SemanticsChecker semantics, CPDefineConstruct construct) {
1036                 ArrayList<String> newCode = new ArrayList<String>();
1037                 // Generate redundant header files
1038                 newCode.add("\t"
1039                                 + COMMENT("Automatically generated code for commit point define: "
1040                                                 + construct.label));
1041                 newCode.add("");
1042                 // Add annotation
1043                 newCode.add("\t" + "if (" + construct.condition + ") {");
1044                 String structName = "cp_define", anno = "annotation_cp_define";
1045                 newCode.add("\t\t"
1046                                 + STRUCT_NEW_DECLARE_DEFINE(ANNO_CP_DEFINE, structName));
1047                 String labelNum = Integer.toString(semantics.commitPointLabel2Num
1048                                 .get(construct.label));
1049                 String interfaceNum = getCPInterfaceNum(semantics, construct.label);
1050                 String potentialLabelNum = Integer
1051                                 .toString(semantics.commitPointLabel2Num
1052                                                 .get(construct.potentialCPLabel));
1053                 newCode.add("\t\t" + ASSIGN_TO_PTR(structName, "label_num", labelNum));
1054                 newCode.add("\t\t"
1055                                 + ASSIGN_TO_PTR(structName, "label_name", "\""
1056                                                 + construct.label + "\""));
1057                 newCode.add("\t\t"
1058                                 + ASSIGN_TO_PTR(structName, "potential_cp_label_num",
1059                                                 potentialLabelNum));
1060                 newCode.add("\t\t"
1061                                 + ASSIGN_TO_PTR(structName, "potential_label_name", "\""
1062                                                 + construct.potentialCPLabel + "\""));
1063                 newCode.add("\t\t"
1064                                 + ASSIGN_TO_PTR(structName, "interface_num", interfaceNum));
1065                 newCode.add("\t\t" + STRUCT_NEW_DECLARE_DEFINE(SPEC_ANNOTATION, anno));
1066                 newCode.add("\t\t"
1067                                 + ASSIGN_TO_PTR(anno, "type", SPEC_ANNO_TYPE_CP_DEFINE));
1068                 newCode.add("\t\t" + ASSIGN_TO_PTR(anno, "annotation", structName));
1069                 newCode.add("\t\t" + ANNOTATE(semantics, anno));
1070                 newCode.add("\t" + "}");
1071                 return newCode;
1072         }
1073 }