1 #include <msp/stringcodec/utf8.h>
2 #include <msp/strings/format.h>
11 const std::string &DumpTree::apply(Stage &stage)
13 formatted = format("Stage: %s\n", Stage::get_stage_name(stage.type));
14 tree.push_back(BRANCH);
15 append(format("Version: %d.%02d", stage.required_features.glsl_version.major, stage.required_features.glsl_version.minor));
17 for(std::map<string, TypeDeclaration *>::const_iterator i=stage.types.begin(); i!=stage.types.end(); ++i)
18 append(format("Type: %%%d %s", get_label(*i->second), i->first));
20 set<InterfaceBlock *> seen_interfaces;
21 for(std::map<string, InterfaceBlock *>::const_iterator i=stage.interface_blocks.begin(); i!=stage.interface_blocks.end(); ++i)
22 if(seen_interfaces.insert(i->second).second)
24 string text = format("Interface block: %%%d %s %s", get_label(*i->second), i->second->interface, i->second->name);
25 if(!i->second->instance_name.empty())
26 text += format(" %s", i->second->instance_name);
30 for(std::map<string, FunctionDeclaration *>::const_iterator i=stage.functions.begin(); i!=stage.functions.end(); ++i)
31 append(format("Function: %%%d %s", get_label(*i->second), i->first));
34 stage.content.visit(*this);
38 void DumpTree::append(const string &line)
40 StringCodec::Utf8::Encoder enc;
41 for(vector<TreeChars>::const_iterator i=tree.begin(); i!=tree.end(); )
43 enc.encode_char(*i++, formatted);
44 enc.encode_char((i==tree.end() ? REACH : EMPTY), formatted);
50 void DumpTree::append_subtree(const vector<Branch> &branches)
53 for(vector<Branch>::const_iterator i=branches.begin(); i!=branches.end(); )
55 vector<Branch>::const_iterator j = increment(i, branches);
59 annotated_branch(j->text, *j->node);
64 j->node->visit(*this);
69 void DumpTree::begin_sub()
71 tree.back() = (tree.back()==BRANCH_LAST ? EMPTY : STRAIGHT);
72 tree.push_back(BRANCH);
75 void DumpTree::last_branch()
77 tree.back() = BRANCH_LAST;
80 void DumpTree::end_sub()
83 if(tree.back()==STRAIGHT)
87 void DumpTree::annotated_branch(const string &annotation, Node &node)
96 unsigned DumpTree::get_label(const Node &node)
98 unsigned &label = node_labels[&node];
100 label = node_labels.size();
104 string DumpTree::format_type(TypeDeclaration *type)
106 return (type ? type->name : "?");
110 typename T::const_iterator DumpTree::increment(typename T::const_iterator &iter, const T &container)
112 typename T::const_iterator ret = iter++;
113 if(iter==container.end())
118 void DumpTree::visit(Block &block)
120 append(format("Block %s", (block.use_braces ? "{}" : "(inline)")));
123 for(std::map<string, VariableDeclaration *>::const_iterator i=block.variables.begin(); i!=block.variables.end(); ++i)
124 append(format("Variable: %%%d %s %s", get_label(*i->second), i->second->type, i->first));
126 bool labeled_body = !block.variables.empty();
133 for(NodeList<Statement>::const_iterator i=block.body.begin(); i!=block.body.end(); )
135 NodeList<Statement>::const_iterator j = increment(i, block.body);
144 void DumpTree::visit(Literal &literal)
146 append(format("Literal: %s -> %s", literal.token, format_type(literal.type)));
149 void DumpTree::visit(ParenthesizedExpression &parexpr)
151 annotated_branch(format("(expr) -> %s", format_type(parexpr.type)), *parexpr.expression);
154 void DumpTree::visit(VariableReference &var)
158 text += format("%%%d ", get_label(*var.declaration));
159 text += format("%s (var) -> %s", var.name, format_type(var.type));
163 void DumpTree::visit(InterfaceBlockReference &iface)
166 if(iface.declaration)
167 text += format("%%%d ", get_label(*iface.declaration));
168 text += format("%s (iface) -> %s", iface.name, format_type(iface.type));
172 void DumpTree::visit(MemberAccess &memacc)
174 string text = "Member access:";
175 if(memacc.declaration)
176 text += format(" %%%d", get_label(*memacc.declaration));
177 text += format(" .%s -> %s", memacc.member, format_type(memacc.type));
178 annotated_branch(text, *memacc.left);
181 void DumpTree::visit(Swizzle &swizzle)
183 static const char components[4] = { 'x', 'y', 'z', 'w' };
184 string text = "Swizzle: .";
185 for(unsigned i=0; i<swizzle.count; ++i)
186 text += components[swizzle.components[i]];
187 text += format(" -> %s", format_type(swizzle.type));
188 annotated_branch(text, *swizzle.left);
191 void DumpTree::visit(UnaryExpression &unary)
193 string text = format("Unary: %s, %sfix -> %s", unary.oper->token, (unary.oper->type==Operator::PREFIX ? "pre" : "post"), format_type(unary.type));
194 annotated_branch(text, *unary.expression);
197 void DumpTree::visit(BinaryExpression &binary)
199 append(format("Binary: %s -> %s", (binary.oper->token[0]=='[' ? "[]" : binary.oper->token), format_type(binary.type)));
201 binary.left->visit(*this);
203 binary.right->visit(*this);
207 void DumpTree::visit(Assignment &assign)
209 append(format("Assignment: %s%s -> %s", assign.oper->token, (assign.self_referencing ? " (self-referencing)" : ""), format_type(assign.type)));
211 if(assign.target_declaration)
212 append(format("Target: %%%d %s %s", get_label(*assign.target_declaration), assign.target_declaration->type, assign.target_declaration->name));
213 assign.left->visit(*this);
215 assign.right->visit(*this);
219 void DumpTree::visit(FunctionCall &call)
221 string head = "Function call: ";
223 head += format("%%%d ", get_label(*call.declaration));
226 head += " (constructor)";
227 head += format(" -> %s", format_type(call.type));
231 for(NodeArray<Expression>::const_iterator i=call.arguments.begin(); i!=call.arguments.end(); )
233 NodeArray<Expression>::const_iterator j = increment(i, call.arguments);
239 void DumpTree::visit(ExpressionStatement &expr)
241 annotated_branch("expr;", *expr.expression);
244 void DumpTree::visit(Import &import)
246 append(format("import %s", import.module));
249 void DumpTree::visit(Precision &prec)
251 append(format("precision %s %s", prec.precision, prec.type));
254 void DumpTree::visit(Layout &layout)
258 for(vector<Layout::Qualifier>::const_iterator i=layout.qualifiers.begin(); i!=layout.qualifiers.end(); )
260 vector<Layout::Qualifier>::const_iterator j = increment(i, layout.qualifiers);
261 string qualifier = j->name;
263 qualifier += format("=%d", j->value);
269 void DumpTree::visit(InterfaceLayout &layout)
271 annotated_branch(format("Layout: %s", layout.interface), layout.layout);
274 void DumpTree::visit(BasicTypeDeclaration &type)
276 append(format("%%%d typedef %s", get_label(type), type.name));
278 vector<Branch> branches;
280 branches.push_back(format("%s: %%%d %s", (type.kind==BasicTypeDeclaration::ALIAS ? "Alias of" : "Base"), get_label(*type.base_type), type.base_type->name));
281 if(type.kind==BasicTypeDeclaration::VECTOR)
282 branches.push_back(format("Vector: %d", type.size));
283 else if(type.kind==BasicTypeDeclaration::MATRIX)
284 branches.push_back(format("Matrix: %dx%d", type.size&0xFFFF, type.size>>16));
285 append_subtree(branches);
288 void DumpTree::visit(ImageTypeDeclaration &type)
290 static const char *dims[] = { "1D", "2D", "3D", "Cube" };
292 append(format("%%%d typedef %s", get_label(type), type.name));
294 vector<Branch> branches;
295 branches.push_back(format("Dimensions: %s%s", dims[type.dimensions-1], (type.array ? " array" : "")));
297 branches.push_back(format("Element type: %%%d %s", get_label(*type.base_type), type.base_type->name));
299 branches.push_back("Shadow");
300 append_subtree(branches);
303 void DumpTree::visit(StructDeclaration &strct)
305 annotated_branch(format("%%%d struct %s", get_label(strct), strct.name), strct.members);
308 void DumpTree::visit(VariableDeclaration &var)
310 string decl = format("%%%d ", get_label(var));
313 if(!var.interpolation.empty())
314 decl += format("%s ", var.interpolation);
315 if(!var.sampling.empty())
316 decl += format("%s ", var.sampling);
317 if(!var.interface.empty())
318 decl += format("%s ", var.interface);
319 if(!var.precision.empty())
320 decl += format("%s ", var.precision);
321 decl += format("%s %s", var.type, var.name);
322 if(var.source==BUILTIN_SOURCE)
323 decl += " (builtin)";
324 else if(var.linked_declaration)
328 vector<Branch> branches;
329 if(var.type_declaration)
330 branches.push_back(format("Type: %%%d %s", get_label(*var.type_declaration), var.type_declaration->name));
332 branches.push_back(var.layout.get());
336 branches.push_back(Branch("Array []", var.array_size.get()));
338 branches.push_back("Array []");
340 if(var.init_expression)
341 branches.push_back(var.init_expression.get());
342 append_subtree(branches);
345 void DumpTree::visit(InterfaceBlock &block)
348 if(!block.instance_name.empty())
349 head += format("%%%d ", get_label(block));
350 head += format("%s %s", block.interface, block.name);
351 if(!block.instance_name.empty())
352 head += format(" %s", block.instance_name);
355 if(block.source==BUILTIN_SOURCE)
356 head += " (builtin)";
357 else if(block.linked_block)
363 if(block.type_declaration)
364 append(format("Type: %%%d %s", get_label(*block.type_declaration), block.type_declaration->name));
365 else if(block.members)
366 block.members->visit(*this);
370 void DumpTree::visit(FunctionDeclaration &func)
372 string text = format("%%%d %s %s", get_label(func), func.return_type, func.name);
373 if(func.source==BUILTIN_SOURCE)
374 text += " (builtin)";
375 else if(!func.definition)
376 text += " (undefined)";
380 for(NodeArray<VariableDeclaration>::const_iterator i=func.parameters.begin(); i!=func.parameters.end(); ++i)
383 if(func.definition==&func)
384 func.body.visit(*this);
385 else if(func.definition)
386 append(format("Definition: %%%d", get_label(*func.definition)));
390 void DumpTree::visit(Conditional &cond)
394 vector<Branch> branches;
395 branches.push_back(cond.condition.get());
396 branches.push_back(&cond.body);
397 if(!cond.else_body.body.empty())
398 branches.push_back(&cond.else_body);
399 append_subtree(branches);
402 void DumpTree::visit(Iteration &iter)
407 if(iter.init_statement)
408 annotated_branch("Initialization", *iter.init_statement);
410 annotated_branch("Condition", *iter.condition);
411 if(iter.loop_expression)
412 annotated_branch("Loop", *iter.loop_expression);
414 annotated_branch("Body", iter.body);
418 void DumpTree::visit(Passthrough &pass)
421 annotated_branch("passthrough[]", *pass.subscript);
423 append("passthrough;");
426 void DumpTree::visit(Return &ret)
429 annotated_branch("return", *ret.expression);
434 void DumpTree::visit(Jump &jump)
436 append(format("%s;", jump.keyword));