]> sourceware.org Git - systemtap.git/blob - translate.cxx
Process extra_offset for kernel symbols with dwfl_module_relocate_address.
[systemtap.git] / translate.cxx
1 // translation pass
2 // Copyright (C) 2005-2008 Red Hat Inc.
3 // Copyright (C) 2005-2008 Intel Corporation.
4 //
5 // This file is part of systemtap, and is free software. You can
6 // redistribute it and/or modify it under the terms of the GNU General
7 // Public License (GPL); either version 2, or (at your option) any
8 // later version.
9
10 #include "config.h"
11 #include "staptree.h"
12 #include "elaborate.h"
13 #include "translate.h"
14 #include "session.h"
15 #include "tapsets.h"
16 #include "util.h"
17 #include "dwarf_wrappers.h"
18
19 #include <cstdlib>
20 #include <iostream>
21 #include <set>
22 #include <sstream>
23 #include <string>
24 #include <cassert>
25 #include <cstring>
26
27 extern "C" {
28 #include <elfutils/libdwfl.h>
29 #ifdef HAVE_ELFUTILS_VERSION_H
30 #include <elfutils/version.h>
31 #endif
32 }
33
34 using namespace std;
35
36 struct var;
37 struct tmpvar;
38 struct aggvar;
39 struct mapvar;
40 struct itervar;
41
42 struct c_unparser: public unparser, public visitor
43 {
44 systemtap_session* session;
45 translator_output* o;
46
47 derived_probe* current_probe;
48 functiondecl* current_function;
49 unsigned tmpvar_counter;
50 unsigned label_counter;
51 unsigned action_counter;
52 bool probe_or_function_needs_deref_fault_handler;
53
54 varuse_collecting_visitor vcv_needs_global_locks;
55
56 map<string, string> probe_contents;
57
58 c_unparser (systemtap_session* ss):
59 session (ss), o (ss->op), current_probe(0), current_function (0),
60 tmpvar_counter (0), label_counter (0) {}
61 ~c_unparser () {}
62
63 void emit_map_type_instantiations ();
64 void emit_common_header ();
65 void emit_global (vardecl* v);
66 void emit_global_init (vardecl* v);
67 void emit_global_param (vardecl* v);
68 void emit_functionsig (functiondecl* v);
69 void emit_module_init ();
70 void emit_module_exit ();
71 void emit_function (functiondecl* v);
72 void emit_locks (const varuse_collecting_visitor& v);
73 void emit_probe (derived_probe* v);
74 void emit_unlocks (const varuse_collecting_visitor& v);
75
76 // for use by stats (pmap) foreach
77 set<string> aggregations_active;
78
79 // for use by looping constructs
80 vector<string> loop_break_labels;
81 vector<string> loop_continue_labels;
82
83 string c_typename (exp_type e);
84 string c_varname (const string& e);
85 string c_expression (expression* e);
86
87 void c_assign (var& lvalue, const string& rvalue, const token* tok);
88 void c_assign (const string& lvalue, expression* rvalue, const string& msg);
89 void c_assign (const string& lvalue, const string& rvalue, exp_type type,
90 const string& msg, const token* tok);
91
92 void c_declare(exp_type ty, const string &name);
93 void c_declare_static(exp_type ty, const string &name);
94
95 void c_strcat (const string& lvalue, const string& rvalue);
96 void c_strcat (const string& lvalue, expression* rvalue);
97
98 void c_strcpy (const string& lvalue, const string& rvalue);
99 void c_strcpy (const string& lvalue, expression* rvalue);
100
101 bool is_local (vardecl const* r, token const* tok);
102
103 tmpvar gensym(exp_type ty);
104 aggvar gensym_aggregate();
105
106 var getvar(vardecl* v, token const* tok = NULL);
107 itervar getiter(symbol* s);
108 mapvar getmap(vardecl* v, token const* tok = NULL);
109
110 void load_map_indices(arrayindex* e,
111 vector<tmpvar> & idx);
112
113 void load_aggregate (expression *e, aggvar & agg, bool pre_agg=false);
114 string histogram_index_check(var & vase, tmpvar & idx) const;
115
116 void collect_map_index_types(vector<vardecl* > const & vars,
117 set< pair<vector<exp_type>, exp_type> > & types);
118
119 void record_actions (unsigned actions, bool update=false);
120
121 void visit_block (block* s);
122 void visit_embeddedcode (embeddedcode* s);
123 void visit_null_statement (null_statement* s);
124 void visit_expr_statement (expr_statement* s);
125 void visit_if_statement (if_statement* s);
126 void visit_for_loop (for_loop* s);
127 void visit_foreach_loop (foreach_loop* s);
128 void visit_return_statement (return_statement* s);
129 void visit_delete_statement (delete_statement* s);
130 void visit_next_statement (next_statement* s);
131 void visit_break_statement (break_statement* s);
132 void visit_continue_statement (continue_statement* s);
133 void visit_literal_string (literal_string* e);
134 void visit_literal_number (literal_number* e);
135 void visit_binary_expression (binary_expression* e);
136 void visit_unary_expression (unary_expression* e);
137 void visit_pre_crement (pre_crement* e);
138 void visit_post_crement (post_crement* e);
139 void visit_logical_or_expr (logical_or_expr* e);
140 void visit_logical_and_expr (logical_and_expr* e);
141 void visit_array_in (array_in* e);
142 void visit_comparison (comparison* e);
143 void visit_concatenation (concatenation* e);
144 void visit_ternary_expression (ternary_expression* e);
145 void visit_assignment (assignment* e);
146 void visit_symbol (symbol* e);
147 void visit_target_symbol (target_symbol* e);
148 void visit_arrayindex (arrayindex* e);
149 void visit_functioncall (functioncall* e);
150 void visit_print_format (print_format* e);
151 void visit_stat_op (stat_op* e);
152 void visit_hist_op (hist_op* e);
153 };
154
155 // A shadow visitor, meant to generate temporary variable declarations
156 // for function or probe bodies. Member functions should exactly match
157 // the corresponding c_unparser logic and traversal sequence,
158 // to ensure interlocking naming and declaration of temp variables.
159 struct c_tmpcounter:
160 public traversing_visitor
161 {
162 c_unparser* parent;
163 c_tmpcounter (c_unparser* p):
164 parent (p)
165 {
166 parent->tmpvar_counter = 0;
167 }
168
169 void load_map_indices(arrayindex* e);
170
171 void visit_block (block *s);
172 void visit_for_loop (for_loop* s);
173 void visit_foreach_loop (foreach_loop* s);
174 // void visit_return_statement (return_statement* s);
175 void visit_delete_statement (delete_statement* s);
176 void visit_binary_expression (binary_expression* e);
177 // void visit_unary_expression (unary_expression* e);
178 void visit_pre_crement (pre_crement* e);
179 void visit_post_crement (post_crement* e);
180 // void visit_logical_or_expr (logical_or_expr* e);
181 // void visit_logical_and_expr (logical_and_expr* e);
182 void visit_array_in (array_in* e);
183 // void visit_comparison (comparison* e);
184 void visit_concatenation (concatenation* e);
185 // void visit_ternary_expression (ternary_expression* e);
186 void visit_assignment (assignment* e);
187 void visit_arrayindex (arrayindex* e);
188 void visit_functioncall (functioncall* e);
189 void visit_print_format (print_format* e);
190 void visit_stat_op (stat_op* e);
191 };
192
193 struct c_unparser_assignment:
194 public throwing_visitor
195 {
196 c_unparser* parent;
197 string op;
198 expression* rvalue;
199 bool post; // true == value saved before modify operator
200 c_unparser_assignment (c_unparser* p, const string& o, expression* e):
201 throwing_visitor ("invalid lvalue type"),
202 parent (p), op (o), rvalue (e), post (false) {}
203 c_unparser_assignment (c_unparser* p, const string& o, bool pp):
204 throwing_visitor ("invalid lvalue type"),
205 parent (p), op (o), rvalue (0), post (pp) {}
206
207 void prepare_rvalue (string const & op,
208 tmpvar & rval,
209 token const* tok);
210
211 void c_assignop(tmpvar & res,
212 var const & lvar,
213 tmpvar const & tmp,
214 token const* tok);
215
216 // only symbols and arrayindex nodes are possible lvalues
217 void visit_symbol (symbol* e);
218 void visit_arrayindex (arrayindex* e);
219 };
220
221
222 struct c_tmpcounter_assignment:
223 public traversing_visitor
224 // leave throwing for illegal lvalues to the c_unparser_assignment instance
225 {
226 c_tmpcounter* parent;
227 const string& op;
228 expression* rvalue;
229 bool post; // true == value saved before modify operator
230 c_tmpcounter_assignment (c_tmpcounter* p, const string& o, expression* e, bool pp = false):
231 parent (p), op (o), rvalue (e), post (pp) {}
232
233 void prepare_rvalue (tmpvar & rval);
234
235 void c_assignop(tmpvar & res);
236
237 // only symbols and arrayindex nodes are possible lvalues
238 void visit_symbol (symbol* e);
239 void visit_arrayindex (arrayindex* e);
240 };
241
242
243 ostream & operator<<(ostream & o, var const & v);
244
245
246 /*
247 Some clarification on the runtime structures involved in statistics:
248
249 The basic type for collecting statistics in the runtime is struct
250 stat_data. This contains the count, min, max, sum, and possibly
251 histogram fields.
252
253 There are two places struct stat_data shows up.
254
255 1. If you declare a statistic variable of any sort, you want to make
256 a struct _Stat. A struct _Stat* is also called a Stat. Struct _Stat
257 contains a per-CPU array of struct stat_data values, as well as a
258 struct stat_data which it aggregates into. Writes into a Struct
259 _Stat go into the per-CPU struct stat. Reads involve write-locking
260 the struct _Stat, aggregating into its aggregate struct stat_data,
261 unlocking, read-locking the struct _Stat, then reading values out of
262 the aggregate and unlocking.
263
264 2. If you declare a statistic-valued map, you want to make a
265 pmap. This is a per-CPU array of maps, each of which holds struct
266 stat_data values, as well as an aggregate *map*. Writes into a pmap
267 go into the per-CPU map. Reads involve write-locking the pmap,
268 aggregating into its aggregate map, unlocking, read-locking the
269 pmap, then reading values out of its aggregate (which is a normal
270 map) and unlocking.
271
272 Because, at the moment, the runtime does not support the concept of
273 a statistic which collects multiple histogram types, we may need to
274 instantiate one pmap or struct _Stat for each histogram variation
275 the user wants to track.
276 */
277
278 class var
279 {
280
281 protected:
282 bool local;
283 exp_type ty;
284 statistic_decl sd;
285 string name;
286
287 public:
288
289 var(bool local, exp_type ty, statistic_decl const & sd, string const & name)
290 : local(local), ty(ty), sd(sd), name(name)
291 {}
292
293 var(bool local, exp_type ty, string const & name)
294 : local(local), ty(ty), name(name)
295 {}
296
297 virtual ~var() {}
298
299 bool is_local() const
300 {
301 return local;
302 }
303
304 statistic_decl const & sdecl() const
305 {
306 return sd;
307 }
308
309 void assert_hist_compatible(hist_op const & hop)
310 {
311 // Semantic checks in elaborate should have caught this if it was
312 // false. This is just a double-check.
313 switch (sd.type)
314 {
315 case statistic_decl::linear:
316 assert(hop.htype == hist_linear);
317 assert(hop.params.size() == 3);
318 assert(hop.params[0] == sd.linear_low);
319 assert(hop.params[1] == sd.linear_high);
320 assert(hop.params[2] == sd.linear_step);
321 break;
322 case statistic_decl::logarithmic:
323 assert(hop.htype == hist_log);
324 assert(hop.params.size() == 0);
325 break;
326 case statistic_decl::none:
327 assert(false);
328 }
329 }
330
331 exp_type type() const
332 {
333 return ty;
334 }
335
336 string value() const
337 {
338 if (local)
339 return "l->" + name;
340 else
341 return "global.s_" + name;
342 }
343
344 virtual string hist() const
345 {
346 assert (ty == pe_stats);
347 assert (sd.type != statistic_decl::none);
348 return "(&(" + value() + "->hist))";
349 }
350
351 virtual string buckets() const
352 {
353 assert (ty == pe_stats);
354 assert (sd.type != statistic_decl::none);
355 return "(" + value() + "->hist.buckets)";
356 }
357
358 string init() const
359 {
360 switch (type())
361 {
362 case pe_string:
363 if (! local)
364 return ""; // module_param
365 else
366 return value() + "[0] = '\\0';";
367 case pe_long:
368 if (! local)
369 return ""; // module_param
370 else
371 return value() + " = 0;";
372 case pe_stats:
373 {
374 // See also mapvar::init().
375
376 string prefix = value() + " = _stp_stat_init (";
377 // Check for errors during allocation.
378 string suffix = "if (" + value () + " == NULL) rc = -ENOMEM;";
379
380 switch (sd.type)
381 {
382 case statistic_decl::none:
383 prefix += "HIST_NONE";
384 break;
385
386 case statistic_decl::linear:
387 prefix += string("HIST_LINEAR")
388 + ", " + stringify(sd.linear_low)
389 + ", " + stringify(sd.linear_high)
390 + ", " + stringify(sd.linear_step);
391 break;
392
393 case statistic_decl::logarithmic:
394 prefix += string("HIST_LOG");
395 break;
396
397 default:
398 throw semantic_error("unsupported stats type for " + value());
399 }
400
401 prefix = prefix + "); ";
402 return string (prefix + suffix);
403 }
404
405 default:
406 throw semantic_error("unsupported initializer for " + value());
407 }
408 }
409
410 string fini () const
411 {
412 switch (type())
413 {
414 case pe_string:
415 case pe_long:
416 return ""; // no action required
417 case pe_stats:
418 return "_stp_stat_del (" + value () + ");";
419 default:
420 throw semantic_error("unsupported deallocator for " + value());
421 }
422 }
423
424 void declare(c_unparser &c) const
425 {
426 c.c_declare(ty, name);
427 }
428 };
429
430 ostream & operator<<(ostream & o, var const & v)
431 {
432 return o << v.value();
433 }
434
435 struct stmt_expr
436 {
437 c_unparser & c;
438 stmt_expr(c_unparser & c) : c(c)
439 {
440 c.o->newline() << "({";
441 c.o->indent(1);
442 }
443 ~stmt_expr()
444 {
445 c.o->newline(-1) << "})";
446 }
447 };
448
449
450 struct tmpvar
451 : public var
452 {
453 protected:
454 bool overridden;
455 string override_value;
456
457 public:
458 tmpvar(exp_type ty,
459 unsigned & counter)
460 : var(true, ty, ("__tmp" + stringify(counter++))), overridden(false)
461 {}
462
463 tmpvar(const var& source)
464 : var(source), overridden(false)
465 {}
466
467 void override(const string &value)
468 {
469 overridden = true;
470 override_value = value;
471 }
472
473 string value() const
474 {
475 if (overridden)
476 return override_value;
477 else
478 return var::value();
479 }
480 };
481
482 ostream & operator<<(ostream & o, tmpvar const & v)
483 {
484 return o << v.value();
485 }
486
487 struct aggvar
488 : public var
489 {
490 aggvar(unsigned & counter)
491 : var(true, pe_stats, ("__tmp" + stringify(counter++)))
492 {}
493
494 string init() const
495 {
496 assert (type() == pe_stats);
497 return value() + " = NULL;";
498 }
499
500 void declare(c_unparser &c) const
501 {
502 assert (type() == pe_stats);
503 c.o->newline() << "struct stat_data *" << name << ";";
504 }
505 };
506
507 struct mapvar
508 : public var
509 {
510 vector<exp_type> index_types;
511 int maxsize;
512 mapvar (bool local, exp_type ty,
513 statistic_decl const & sd,
514 string const & name,
515 vector<exp_type> const & index_types,
516 int maxsize)
517 : var (local, ty, sd, name),
518 index_types (index_types),
519 maxsize (maxsize)
520 {}
521
522 static string shortname(exp_type e);
523 static string key_typename(exp_type e);
524 static string value_typename(exp_type e);
525
526 string keysym () const
527 {
528 string result;
529 vector<exp_type> tmp = index_types;
530 tmp.push_back (type ());
531 for (unsigned i = 0; i < tmp.size(); ++i)
532 {
533 switch (tmp[i])
534 {
535 case pe_long:
536 result += 'i';
537 break;
538 case pe_string:
539 result += 's';
540 break;
541 case pe_stats:
542 result += 'x';
543 break;
544 default:
545 throw semantic_error("unknown type of map");
546 break;
547 }
548 }
549 return result;
550 }
551
552 string call_prefix (string const & fname, vector<tmpvar> const & indices, bool pre_agg=false) const
553 {
554 string mtype = (is_parallel() && !pre_agg) ? "pmap" : "map";
555 string result = "_stp_" + mtype + "_" + fname + "_" + keysym() + " (";
556 result += pre_agg? fetch_existing_aggregate() : value();
557 for (unsigned i = 0; i < indices.size(); ++i)
558 {
559 if (indices[i].type() != index_types[i])
560 throw semantic_error("index type mismatch");
561 result += ", ";
562 result += indices[i].value();
563 }
564
565 return result;
566 }
567
568 bool is_parallel() const
569 {
570 return type() == pe_stats;
571 }
572
573 string calculate_aggregate() const
574 {
575 if (!is_parallel())
576 throw semantic_error("aggregating non-parallel map type");
577
578 return "_stp_pmap_agg (" + value() + ")";
579 }
580
581 string fetch_existing_aggregate() const
582 {
583 if (!is_parallel())
584 throw semantic_error("fetching aggregate of non-parallel map type");
585
586 return "_stp_pmap_get_agg(" + value() + ")";
587 }
588
589 string del (vector<tmpvar> const & indices) const
590 {
591 return (call_prefix("del", indices) + ")");
592 }
593
594 string exists (vector<tmpvar> const & indices) const
595 {
596 if (type() == pe_long || type() == pe_string)
597 return (call_prefix("exists", indices) + ")");
598 else if (type() == pe_stats)
599 return ("((uintptr_t)" + call_prefix("get", indices)
600 + ") != (uintptr_t) 0)");
601 else
602 throw semantic_error("checking existence of an unsupported map type");
603 }
604
605 string get (vector<tmpvar> const & indices, bool pre_agg=false) const
606 {
607 // see also itervar::get_key
608 if (type() == pe_string)
609 // impedance matching: NULL -> empty strings
610 return ("({ char *v = " + call_prefix("get", indices, pre_agg) + ");"
611 + "if (!v) v = \"\"; v; })");
612 else if (type() == pe_long || type() == pe_stats)
613 return call_prefix("get", indices, pre_agg) + ")";
614 else
615 throw semantic_error("getting a value from an unsupported map type");
616 }
617
618 string add (vector<tmpvar> const & indices, tmpvar const & val) const
619 {
620 string res = "{ int rc = ";
621
622 // impedance matching: empty strings -> NULL
623 if (type() == pe_stats)
624 res += (call_prefix("add", indices) + ", " + val.value() + ")");
625 else
626 throw semantic_error("adding a value of an unsupported map type");
627
628 res += "; if (unlikely(rc)) { c->last_error = \"Array overflow, check " +
629 stringify(maxsize > 0 ?
630 "size limit (" + stringify(maxsize) + ")" : "MAXMAPENTRIES")
631 + "\"; goto out; }}";
632
633 return res;
634 }
635
636 string set (vector<tmpvar> const & indices, tmpvar const & val) const
637 {
638 string res = "{ int rc = ";
639
640 // impedance matching: empty strings -> NULL
641 if (type() == pe_string)
642 res += (call_prefix("set", indices)
643 + ", (" + val.value() + "[0] ? " + val.value() + " : NULL))");
644 else if (type() == pe_long)
645 res += (call_prefix("set", indices) + ", " + val.value() + ")");
646 else
647 throw semantic_error("setting a value of an unsupported map type");
648
649 res += "; if (unlikely(rc)) { c->last_error = \"Array overflow, check " +
650 stringify(maxsize > 0 ?
651 "size limit (" + stringify(maxsize) + ")" : "MAXMAPENTRIES")
652 + "\"; goto out; }}";
653
654 return res;
655 }
656
657 string hist() const
658 {
659 assert (ty == pe_stats);
660 assert (sd.type != statistic_decl::none);
661 return "(&(" + fetch_existing_aggregate() + "->hist))";
662 }
663
664 string buckets() const
665 {
666 assert (ty == pe_stats);
667 assert (sd.type != statistic_decl::none);
668 return "(" + fetch_existing_aggregate() + "->hist.buckets)";
669 }
670
671 string init () const
672 {
673 string mtype = is_parallel() ? "pmap" : "map";
674 string prefix = value() + " = _stp_" + mtype + "_new_" + keysym() + " (" +
675 (maxsize > 0 ? stringify(maxsize) : "MAXMAPENTRIES") ;
676
677 // See also var::init().
678
679 // Check for errors during allocation.
680 string suffix = "if (" + value () + " == NULL) rc = -ENOMEM;";
681
682 if (type() == pe_stats)
683 {
684 switch (sdecl().type)
685 {
686 case statistic_decl::none:
687 prefix = prefix + ", HIST_NONE";
688 break;
689
690 case statistic_decl::linear:
691 // FIXME: check for "reasonable" values in linear stats
692 prefix = prefix + ", HIST_LINEAR"
693 + ", " + stringify(sdecl().linear_low)
694 + ", " + stringify(sdecl().linear_high)
695 + ", " + stringify(sdecl().linear_step);
696 break;
697
698 case statistic_decl::logarithmic:
699 prefix = prefix + ", HIST_LOG";
700 break;
701 }
702 }
703
704 prefix = prefix + "); ";
705 return (prefix + suffix);
706 }
707
708 string fini () const
709 {
710 // NB: fini() is safe to call even for globals that have not
711 // successfully initialized (that is to say, on NULL pointers),
712 // because the runtime specifically tolerates that in its _del
713 // functions.
714
715 if (is_parallel())
716 return "_stp_pmap_del (" + value() + ");";
717 else
718 return "_stp_map_del (" + value() + ");";
719 }
720 };
721
722
723 class itervar
724 {
725 exp_type referent_ty;
726 string name;
727
728 public:
729
730 itervar (symbol* e, unsigned & counter)
731 : referent_ty(e->referent->type),
732 name("__tmp" + stringify(counter++))
733 {
734 if (referent_ty == pe_unknown)
735 throw semantic_error("iterating over unknown reference type", e->tok);
736 }
737
738 string declare () const
739 {
740 return "struct map_node *" + name + ";";
741 }
742
743 string start (mapvar const & mv) const
744 {
745 string res;
746
747 if (mv.type() != referent_ty)
748 throw semantic_error("inconsistent iterator type in itervar::start()");
749
750 if (mv.is_parallel())
751 return "_stp_map_start (" + mv.fetch_existing_aggregate() + ")";
752 else
753 return "_stp_map_start (" + mv.value() + ")";
754 }
755
756 string next (mapvar const & mv) const
757 {
758 if (mv.type() != referent_ty)
759 throw semantic_error("inconsistent iterator type in itervar::next()");
760
761 if (mv.is_parallel())
762 return "_stp_map_iter (" + mv.fetch_existing_aggregate() + ", " + value() + ")";
763 else
764 return "_stp_map_iter (" + mv.value() + ", " + value() + ")";
765 }
766
767 string value () const
768 {
769 return "l->" + name;
770 }
771
772 string get_key (exp_type ty, unsigned i) const
773 {
774 // bug translator/1175: runtime uses base index 1 for the first dimension
775 // see also mapval::get
776 switch (ty)
777 {
778 case pe_long:
779 return "_stp_key_get_int64 ("+ value() + ", " + stringify(i+1) + ")";
780 case pe_string:
781 // impedance matching: NULL -> empty strings
782 return "({ char *v = "
783 "_stp_key_get_str ("+ value() + ", " + stringify(i+1) + "); "
784 "if (! v) v = \"\"; "
785 "v; })";
786 default:
787 throw semantic_error("illegal key type");
788 }
789 }
790 };
791
792 ostream & operator<<(ostream & o, itervar const & v)
793 {
794 return o << v.value();
795 }
796
797 // ------------------------------------------------------------------------
798
799
800 translator_output::translator_output (ostream& f):
801 buf(0), o2 (0), o (f), tablevel (0)
802 {
803 }
804
805
806 translator_output::translator_output (const string& filename, size_t bufsize):
807 buf (new char[bufsize]),
808 o2 (new ofstream (filename.c_str ())),
809 o (*o2),
810 tablevel (0)
811 {
812 o2->rdbuf()->pubsetbuf(buf, bufsize);
813 }
814
815
816 translator_output::~translator_output ()
817 {
818 delete o2;
819 delete [] buf;
820 }
821
822
823 ostream&
824 translator_output::newline (int indent)
825 {
826 if (! (indent > 0 || tablevel >= (unsigned)-indent)) o.flush ();
827 assert (indent > 0 || tablevel >= (unsigned)-indent);
828
829 tablevel += indent;
830 o << "\n";
831 for (unsigned i=0; i<tablevel; i++)
832 o << " ";
833 return o;
834 }
835
836
837 void
838 translator_output::indent (int indent)
839 {
840 if (! (indent > 0 || tablevel >= (unsigned)-indent)) o.flush ();
841 assert (indent > 0 || tablevel >= (unsigned)-indent);
842 tablevel += indent;
843 }
844
845
846 ostream&
847 translator_output::line ()
848 {
849 return o;
850 }
851
852
853 // ------------------------------------------------------------------------
854
855 void
856 c_unparser::emit_common_header ()
857 {
858 o->newline();
859 o->newline() << "typedef char string_t[MAXSTRINGLEN];";
860 o->newline();
861 o->newline() << "#define STAP_SESSION_STARTING 0";
862 o->newline() << "#define STAP_SESSION_RUNNING 1";
863 o->newline() << "#define STAP_SESSION_ERROR 2";
864 o->newline() << "#define STAP_SESSION_STOPPING 3";
865 o->newline() << "#define STAP_SESSION_STOPPED 4";
866 o->newline() << "static atomic_t session_state = ATOMIC_INIT (STAP_SESSION_STARTING);";
867 o->newline() << "static atomic_t error_count = ATOMIC_INIT (0);";
868 o->newline() << "static atomic_t skipped_count = ATOMIC_INIT (0);";
869 o->newline() << "#ifdef STP_TIMING";
870 o->newline() << "static atomic_t skipped_count_lowstack = ATOMIC_INIT (0);";
871 o->newline() << "static atomic_t skipped_count_reentrant = ATOMIC_INIT (0);";
872 o->newline() << "static atomic_t skipped_count_uprobe_reg = ATOMIC_INIT (0);";
873 o->newline() << "static atomic_t skipped_count_uprobe_unreg = ATOMIC_INIT (0);";
874 o->newline() << "#endif";
875 o->newline();
876 o->newline() << "struct context {";
877 o->newline(1) << "atomic_t busy;";
878 o->newline() << "const char *probe_point;";
879 o->newline() << "int actionremaining;";
880 o->newline() << "unsigned nesting;";
881 o->newline() << "string_t error_buffer;";
882 o->newline() << "const char *last_error;";
883 // NB: last_error is used as a health flag within a probe.
884 // While it's 0, execution continues
885 // When it's "something", probe code unwinds, _stp_error's, sets error state
886 o->newline() << "const char *last_stmt;";
887 o->newline() << "struct pt_regs regs_buffer;"; // reserved for synthetic
888 o->newline() << "struct pt_regs *regs;";
889 o->newline() << "unsigned long *unwaddr;";
890 // unwaddr is caching unwound address in each probe handler on ia64.
891 o->newline() << "struct kretprobe_instance *pi;";
892 o->newline() << "int regparm;";
893 o->newline() << "va_list *mark_va_list;";
894 o->newline() << "const char * marker_name;";
895 o->newline() << "const char * marker_format;";
896 o->newline() << "void *data;";
897 o->newline() << "#ifdef STP_TIMING";
898 o->newline() << "Stat *statp;";
899 o->newline() << "#endif";
900 o->newline() << "#ifdef STP_OVERLOAD";
901 o->newline() << "cycles_t cycles_base;";
902 o->newline() << "cycles_t cycles_sum;";
903 o->newline() << "#endif";
904 o->newline() << "union {";
905 o->indent(1);
906
907 // To elide context variables for probe handler functions that
908 // themselves are about to get duplicate-eliminated, we XXX
909 // duplicate the parse-tree-hash method from ::emit_probe().
910 map<string, string> tmp_probe_contents;
911 // The reason we don't use c_unparser::probe_contents itself
912 // for this is that we don't want to muck up the data for
913 // that later routine.
914
915 for (unsigned i=0; i<session->probes.size(); i++)
916 {
917 derived_probe* dp = session->probes[i];
918
919 // NB: see c_unparser::emit_probe() for original copy of duplicate-hashing logic.
920 ostringstream oss;
921 oss << "c->statp = & time_" << dp->basest()->name << ";" << endl; // -t anti-dupe
922 oss << "# needs_global_locks: " << dp->needs_global_locks () << endl;
923 dp->body->print(oss);
924 // NB: dependent probe conditions *could* be listed here, but don't need to be.
925 // That's because they're only dependent on the probe body, which is already
926 // "hashed" in above.
927
928
929 if (tmp_probe_contents.count(oss.str()) == 0) // unique
930 {
931 tmp_probe_contents[oss.str()] = dp->name; // save it
932
933 // XXX: probe locals need not be recursion-nested, only function locals
934
935 o->newline() << "struct " << dp->name << "_locals {";
936 o->indent(1);
937 for (unsigned j=0; j<dp->locals.size(); j++)
938 {
939 vardecl* v = dp->locals[j];
940 try
941 {
942 o->newline() << c_typename (v->type) << " "
943 << c_varname (v->name) << ";";
944 } catch (const semantic_error& e) {
945 semantic_error e2 (e);
946 if (e2.tok1 == 0) e2.tok1 = v->tok;
947 throw e2;
948 }
949 }
950
951 // NB: This part is finicky. The logic here must
952 // match up with
953 c_tmpcounter ct (this);
954 dp->emit_probe_context_vars (o);
955 dp->body->visit (& ct);
956
957 o->newline(-1) << "} " << dp->name << ";";
958 }
959 }
960
961 for (map<string,functiondecl*>::iterator it = session->functions.begin(); it != session->functions.end(); it++)
962 {
963 functiondecl* fd = it->second;
964 o->newline()
965 << "struct function_" << c_varname (fd->name) << "_locals {";
966 o->indent(1);
967 for (unsigned j=0; j<fd->locals.size(); j++)
968 {
969 vardecl* v = fd->locals[j];
970 try
971 {
972 o->newline() << c_typename (v->type) << " "
973 << c_varname (v->name) << ";";
974 } catch (const semantic_error& e) {
975 semantic_error e2 (e);
976 if (e2.tok1 == 0) e2.tok1 = v->tok;
977 throw e2;
978 }
979 }
980 for (unsigned j=0; j<fd->formal_args.size(); j++)
981 {
982 vardecl* v = fd->formal_args[j];
983 try
984 {
985 o->newline() << c_typename (v->type) << " "
986 << c_varname (v->name) << ";";
987 } catch (const semantic_error& e) {
988 semantic_error e2 (e);
989 if (e2.tok1 == 0) e2.tok1 = v->tok;
990 throw e2;
991 }
992 }
993 c_tmpcounter ct (this);
994 fd->body->visit (& ct);
995 if (fd->type == pe_unknown)
996 o->newline() << "/* no return value */";
997 else
998 {
999 o->newline() << c_typename (fd->type) << " __retvalue;";
1000 }
1001 o->newline(-1) << "} function_" << c_varname (fd->name) << ";";
1002 }
1003 o->newline(-1) << "} locals [MAXNESTING];";
1004 o->newline(-1) << "};\n";
1005 o->newline() << "static void *contexts = NULL; /* alloc_percpu */\n";
1006
1007 emit_map_type_instantiations ();
1008
1009 if (!session->stat_decls.empty())
1010 o->newline() << "#include \"stat.c\"\n";
1011
1012 o->newline();
1013 }
1014
1015
1016 void
1017 c_unparser::emit_global_param (vardecl *v)
1018 {
1019 string vn = c_varname (v->name);
1020
1021 // NB: systemtap globals can collide with linux macros,
1022 // e.g. VM_FAULT_MAJOR. We want the parameter name anyway. This
1023 // #undef is spit out at the end of the C file, so that removing the
1024 // definition won't affect any other embedded-C or generated code.
1025 // XXX: better not have a global variable named module_param_named etc.!
1026 o->newline() << "#undef " << vn;
1027
1028 // Emit module_params for this global, if its type is convenient.
1029 if (v->arity == 0 && v->type == pe_long)
1030 {
1031 o->newline() << "module_param_named (" << vn << ", "
1032 << "global.s_" << vn << ", int64_t, 0);";
1033 }
1034 else if (v->arity == 0 && v->type == pe_string)
1035 {
1036 // NB: no special copying is needed.
1037 o->newline() << "module_param_string (" << vn << ", "
1038 << "global.s_" << vn
1039 << ", MAXSTRINGLEN, 0);";
1040 }
1041 }
1042
1043
1044 void
1045 c_unparser::emit_global (vardecl *v)
1046 {
1047 string vn = c_varname (v->name);
1048
1049 if (v->arity == 0)
1050 o->newline() << c_typename (v->type) << " s_" << vn << ";";
1051 else if (v->type == pe_stats)
1052 o->newline() << "PMAP s_" << vn << ";";
1053 else
1054 o->newline() << "MAP s_" << vn << ";";
1055 o->newline() << "rwlock_t s_" << vn << "_lock;";
1056 o->newline() << "#ifdef STP_TIMING";
1057 o->newline() << "atomic_t s_" << vn << "_lock_skip_count;";
1058 o->newline() << "#endif" << endl;
1059 }
1060
1061
1062 void
1063 c_unparser::emit_global_init (vardecl *v)
1064 {
1065 string vn = c_varname (v->name);
1066
1067 if (v->arity == 0) // can only statically initialize some scalars
1068 {
1069 if (v->init)
1070 {
1071 o->newline() << ".s_" << vn << " = ";
1072 v->init->visit(this);
1073 o->line() << ",";
1074 }
1075 }
1076 o->newline() << "#ifdef STP_TIMING";
1077 o->newline() << ".s_" << vn << "_lock_skip_count = ATOMIC_INIT(0),";
1078 o->newline() << "#endif";
1079 }
1080
1081
1082
1083 void
1084 c_unparser::emit_functionsig (functiondecl* v)
1085 {
1086 o->newline() << "static void function_" << v->name
1087 << " (struct context * __restrict__ c);";
1088 }
1089
1090
1091
1092 void
1093 c_unparser::emit_module_init ()
1094 {
1095 vector<derived_probe_group*> g = all_session_groups (*session);
1096 for (unsigned i=0; i<g.size(); i++)
1097 g[i]->emit_module_decls (*session);
1098
1099 o->newline();
1100 o->newline() << "static int systemtap_module_init (void) {";
1101 o->newline(1) << "int rc = 0;";
1102 o->newline() << "int i=0, j=0;"; // for derived_probe_group use
1103 o->newline() << "const char *probe_point = \"\";";
1104
1105 // Compare actual and targeted kernel releases/machines. Sometimes
1106 // one may install the incorrect debuginfo or -devel RPM, and try to
1107 // run a probe compiled for a different version. Catch this early,
1108 // just in case modversions didn't.
1109 o->newline() << "{";
1110 o->newline(1) << "const char* release = UTS_RELEASE;";
1111
1112 // NB: This UTS_RELEASE compile-time macro directly checks only that
1113 // the compile-time kbuild tree matches the compile-time debuginfo/etc.
1114 // It does not check the run time kernel value. However, this is
1115 // probably OK since the kbuild modversions system aims to prevent
1116 // mismatches between kbuild and runtime versions at module-loading time.
1117
1118 // o->newline() << "const char* machine = UTS_MACHINE;";
1119 // NB: We could compare UTS_MACHINE too, but on x86 it lies
1120 // (UTS_MACHINE=i386, but uname -m is i686). Sheesh.
1121
1122 o->newline() << "if (strcmp (release, "
1123 << lex_cast_qstring (session->kernel_release) << ")) {";
1124 o->newline(1) << "_stp_error (\"module release mismatch (%s vs %s)\", "
1125 << "release, "
1126 << lex_cast_qstring (session->kernel_release)
1127 << ");";
1128 o->newline() << "rc = -EINVAL;";
1129 o->newline(-1) << "}";
1130
1131 // perform buildid-based checking if able
1132 o->newline() << "if (_stp_module_check()) rc = -EINVAL;";
1133
1134 o->newline(-1) << "}";
1135 o->newline() << "if (rc) goto out;";
1136
1137 o->newline() << "(void) probe_point;";
1138 o->newline() << "(void) i;";
1139 o->newline() << "(void) j;";
1140 o->newline() << "atomic_set (&session_state, STAP_SESSION_STARTING);";
1141 // This signals any other probes that may be invoked in the next little
1142 // while to abort right away. Currently running probes are allowed to
1143 // terminate. These may set STAP_SESSION_ERROR!
1144
1145 // per-cpu context
1146 o->newline() << "if (sizeof (struct context) <= 131072)";
1147 o->newline(1) << "contexts = alloc_percpu (struct context);";
1148 o->newline(-1) << "if (contexts == NULL) {";
1149 o->newline(1) << "_stp_error (\"percpu context (size %lu) allocation failed\", sizeof (struct context));";
1150 o->newline() << "rc = -ENOMEM;";
1151 o->newline() << "goto out;";
1152 o->newline(-1) << "}";
1153
1154 for (unsigned i=0; i<session->globals.size(); i++)
1155 {
1156 vardecl* v = session->globals[i];
1157 if (v->index_types.size() > 0)
1158 o->newline() << getmap (v).init();
1159 else
1160 o->newline() << getvar (v).init();
1161 // NB: in case of failure of allocation, "rc" will be set to non-zero.
1162 // Allocation can in general continue.
1163
1164 o->newline() << "if (rc) {";
1165 o->newline(1) << "_stp_error (\"global variable " << v->name << " allocation failed\");";
1166 o->newline() << "goto out;";
1167 o->newline(-1) << "}";
1168
1169 o->newline() << "rwlock_init (& global.s_" << c_varname (v->name) << "_lock);";
1170 }
1171
1172 // initialize each Stat used for timing information
1173 o->newline() << "#ifdef STP_TIMING";
1174 set<string> basest_names;
1175 for (unsigned i=0; i<session->probes.size(); i++)
1176 {
1177 string nm = session->probes[i]->basest()->name;
1178 if (basest_names.find(nm) == basest_names.end())
1179 {
1180 o->newline() << "time_" << nm << " = _stp_stat_init (HIST_NONE);";
1181 // NB: we don't check for null return here, but instead at
1182 // passage to probe handlers and at final printing.
1183 basest_names.insert (nm);
1184 }
1185 }
1186 o->newline() << "#endif";
1187
1188 // Print a message to the kernel log about this module. This is
1189 // intended to help debug problems with systemtap modules.
1190
1191 o->newline() << "_stp_print_kernel_info("
1192 << "\"" << VERSION
1193 << "/" << dwfl_version (NULL) << "\""
1194 << ", (num_online_cpus() * sizeof(struct context))"
1195 << ", " << session->probes.size()
1196 << ");";
1197
1198 // Run all probe registrations. This actually runs begin probes.
1199
1200 for (unsigned i=0; i<g.size(); i++)
1201 {
1202 g[i]->emit_module_init (*session);
1203 // NB: this gives O(N**2) amount of code, but luckily there
1204 // are only seven or eight derived_probe_groups, so it's ok.
1205 o->newline() << "if (rc) {";
1206 o->newline(1) << "_stp_error (\"probe %s registration error (rc %d)\", probe_point, rc);";
1207 // NB: we need to be in the error state so timers can shutdown cleanly,
1208 // and so end probes don't run. OTOH, error probes can run.
1209 o->newline() << "atomic_set (&session_state, STAP_SESSION_ERROR);";
1210 if (i>0)
1211 for (int j=i-1; j>=0; j--)
1212 g[j]->emit_module_exit (*session);
1213 o->newline() << "goto out;";
1214 o->newline(-1) << "}";
1215 }
1216
1217 // All registrations were successful. Consider the system started.
1218 o->newline() << "if (atomic_read (&session_state) == STAP_SESSION_STARTING)";
1219 // NB: only other valid state value is ERROR, in which case we don't
1220 o->newline(1) << "atomic_set (&session_state, STAP_SESSION_RUNNING);";
1221 o->newline(-1) << "return 0;";
1222
1223 // Error handling path; by now all partially registered probe groups
1224 // have been unregistered.
1225 o->newline(-1) << "out:";
1226 o->indent(1);
1227
1228 // If any registrations failed, we will need to deregister the globals,
1229 // as this is our only chance.
1230 for (unsigned i=0; i<session->globals.size(); i++)
1231 {
1232 vardecl* v = session->globals[i];
1233 if (v->index_types.size() > 0)
1234 o->newline() << getmap (v).fini();
1235 else
1236 o->newline() << getvar (v).fini();
1237 }
1238
1239 o->newline() << "return rc;";
1240 o->newline(-1) << "}\n";
1241 }
1242
1243
1244 void
1245 c_unparser::emit_module_exit ()
1246 {
1247 o->newline() << "static void systemtap_module_exit (void) {";
1248 // rc?
1249 o->newline(1) << "int holdon;";
1250 o->newline() << "int i=0, j=0;"; // for derived_probe_group use
1251
1252 o->newline() << "(void) i;";
1253 o->newline() << "(void) j;";
1254 // If we aborted startup, then everything has been cleaned up already, and
1255 // module_exit shouldn't even have been called. But since it might be, let's
1256 // beat a hasty retreat to avoid double uninitialization.
1257 o->newline() << "if (atomic_read (&session_state) == STAP_SESSION_STARTING)";
1258 o->newline(1) << "return;";
1259 o->indent(-1);
1260
1261 o->newline() << "if (atomic_read (&session_state) == STAP_SESSION_RUNNING)";
1262 // NB: only other valid state value is ERROR, in which case we don't
1263 o->newline(1) << "atomic_set (&session_state, STAP_SESSION_STOPPING);";
1264 o->indent(-1);
1265 // This signals any other probes that may be invoked in the next little
1266 // while to abort right away. Currently running probes are allowed to
1267 // terminate. These may set STAP_SESSION_ERROR!
1268
1269 // We're processing the derived_probe_group list in reverse
1270 // order. This ensures that probes get unregistered in reverse
1271 // order of the way they were registered.
1272 vector<derived_probe_group*> g = all_session_groups (*session);
1273 for (vector<derived_probe_group*>::reverse_iterator i = g.rbegin();
1274 i != g.rend(); i++)
1275 (*i)->emit_module_exit (*session); // NB: runs "end" probes
1276
1277 // But some other probes may have launched too during unregistration.
1278 // Let's wait a while to make sure they're all done, done, done.
1279
1280 // cargo cult prologue
1281 o->newline() << "#ifdef STAPCONF_SYNCHRONIZE_SCHED";
1282 o->newline() << "synchronize_sched();";
1283 o->newline() << "#endif";
1284
1285 // NB: systemtap_module_exit is assumed to be called from ordinary
1286 // user context, say during module unload. Among other things, this
1287 // means we can sleep a while.
1288 o->newline() << "do {";
1289 o->newline(1) << "int i;";
1290 o->newline() << "holdon = 0;";
1291 o->newline() << "for (i=0; i < NR_CPUS; i++)";
1292 o->newline(1) << "if (cpu_possible (i) && "
1293 << "atomic_read (& ((struct context *)per_cpu_ptr(contexts, i))->busy)) "
1294 << "holdon = 1;";
1295 // NB: we run at least one of these during the shutdown sequence:
1296 o->newline () << "yield ();"; // aka schedule() and then some
1297 o->newline(-2) << "} while (holdon);";
1298
1299 // cargo cult epilogue
1300 o->newline() << "#ifdef STAPCONF_SYNCHRONIZE_SCHED";
1301 o->newline() << "synchronize_sched();";
1302 o->newline() << "#endif";
1303
1304 // XXX: might like to have an escape hatch, in case some probe is
1305 // genuinely stuck somehow
1306
1307 for (unsigned i=0; i<session->globals.size(); i++)
1308 {
1309 vardecl* v = session->globals[i];
1310 if (v->index_types.size() > 0)
1311 o->newline() << getmap (v).fini();
1312 else
1313 o->newline() << getvar (v).fini();
1314 }
1315
1316 o->newline() << "free_percpu (contexts);";
1317
1318 // print probe timing statistics
1319 {
1320 o->newline() << "#ifdef STP_TIMING";
1321 o->newline() << "{";
1322 o->indent(1);
1323 set<string> basest_names;
1324 for (unsigned i=0; i<session->probes.size(); i++)
1325 {
1326 probe* p = session->probes[i]->basest();
1327 string nm = p->name;
1328 if (basest_names.find(nm) == basest_names.end())
1329 {
1330 basest_names.insert (nm);
1331 // NB: check for null stat object
1332 o->newline() << "if (likely (time_" << p->name << ")) {";
1333 o->newline(1) << "const char *probe_point = "
1334 << lex_cast_qstring (* p->locations[0])
1335 << (p->locations.size() > 1 ? "\"+\"" : "")
1336 << (p->locations.size() > 1 ? lex_cast_qstring(p->locations.size()-1) : "")
1337 << ";";
1338 o->newline() << "const char *decl_location = "
1339 << lex_cast_qstring (p->tok->location)
1340 << ";";
1341 o->newline() << "struct stat_data *stats = _stp_stat_get (time_"
1342 << p->name
1343 << ", 0);";
1344 o->newline() << "if (stats->count) {";
1345 o->newline(1) << "int64_t avg = _stp_div64 (NULL, stats->sum, stats->count);";
1346 o->newline() << "_stp_printf (\"probe %s (%s), hits: %lld, cycles: %lldmin/%lldavg/%lldmax\\n\",";
1347 o->newline() << "probe_point, decl_location, (long long) stats->count, (long long) stats->min, (long long) avg, (long long) stats->max);";
1348 o->newline(-1) << "}";
1349 o->newline() << "_stp_stat_del (time_" << p->name << ");";
1350 o->newline(-1) << "}";
1351 }
1352 }
1353 o->newline() << "_stp_print_flush();";
1354 o->newline(-1) << "}";
1355 o->newline() << "#endif";
1356 }
1357
1358 // print final error/reentrancy counts if non-zero
1359 o->newline() << "if (atomic_read (& skipped_count) || "
1360 << "atomic_read (& error_count)) {";
1361 o->newline(1) << "_stp_warn (\"Number of errors: %d, "
1362 << "skipped probes: %d\\n\", "
1363 << "(int) atomic_read (& error_count), "
1364 << "(int) atomic_read (& skipped_count));";
1365 o->newline() << "#ifdef STP_TIMING";
1366 o->newline() << "{";
1367 o->newline(1) << "int ctr;";
1368 for (unsigned i=0; i<session->globals.size(); i++)
1369 {
1370 string vn = c_varname (session->globals[i]->name);
1371 o->newline() << "ctr = atomic_read (& global.s_" << vn << "_lock_skip_count);";
1372 o->newline() << "if (ctr) _stp_warn (\"Skipped due to global '%s' lock timeout: %d\\n\", "
1373 << lex_cast_qstring(vn) << ", ctr);";
1374 }
1375 o->newline() << "ctr = atomic_read (& skipped_count_lowstack);";
1376 o->newline() << "if (ctr) _stp_warn (\"Skipped due to low stack: %d\\n\", ctr);";
1377 o->newline() << "ctr = atomic_read (& skipped_count_reentrant);";
1378 o->newline() << "if (ctr) _stp_warn (\"Skipped due to reentrancy: %d\\n\", ctr);";
1379 o->newline() << "ctr = atomic_read (& skipped_count_uprobe_reg);";
1380 o->newline() << "if (ctr) _stp_warn (\"Skipped due to uprobe register failure: %d\\n\", ctr);";
1381 o->newline() << "ctr = atomic_read (& skipped_count_uprobe_unreg);";
1382 o->newline() << "if (ctr) _stp_warn (\"Skipped due to uprobe unregister failure: %d\\n\", ctr);";
1383 o->newline(-1) << "}";
1384 o->newline () << "#endif";
1385 o->newline() << "_stp_print_flush();";
1386 o->newline(-1) << "}";
1387 o->newline(-1) << "}\n";
1388 }
1389
1390
1391 void
1392 c_unparser::emit_function (functiondecl* v)
1393 {
1394 o->newline() << "static void function_" << c_varname (v->name)
1395 << " (struct context* __restrict__ c) {";
1396 o->indent(1);
1397 this->current_probe = 0;
1398 this->current_function = v;
1399 this->tmpvar_counter = 0;
1400 this->action_counter = 0;
1401
1402 o->newline()
1403 << "struct function_" << c_varname (v->name) << "_locals * "
1404 << " __restrict__ l =";
1405 o->newline(1)
1406 << "& c->locals[c->nesting+1].function_" << c_varname (v->name) // NB: nesting+1
1407 << ";";
1408 o->newline(-1) << "(void) l;"; // make sure "l" is marked used
1409 o->newline() << "#define CONTEXT c";
1410 o->newline() << "#define THIS l";
1411 o->newline() << "if (0) goto out;"; // make sure out: is marked used
1412
1413 // set this, in case embedded-c code sets last_error but doesn't otherwise identify itself
1414 o->newline() << "c->last_stmt = " << lex_cast_qstring(*v->tok) << ";";
1415
1416 // check/increment nesting level
1417 o->newline() << "if (unlikely (c->nesting+2 >= MAXNESTING)) {";
1418 o->newline(1) << "c->last_error = \"MAXNESTING exceeded\";";
1419 o->newline() << "return;";
1420 o->newline(-1) << "} else {";
1421 o->newline(1) << "c->nesting ++;";
1422 o->newline(-1) << "}";
1423
1424 // initialize locals
1425 // XXX: optimization: use memset instead
1426 for (unsigned i=0; i<v->locals.size(); i++)
1427 {
1428 if (v->locals[i]->index_types.size() > 0) // array?
1429 throw semantic_error ("array locals not supported, missing global declaration?",
1430 v->locals[i]->tok);
1431
1432 o->newline() << getvar (v->locals[i]).init();
1433 }
1434
1435 // initialize return value, if any
1436 if (v->type != pe_unknown)
1437 {
1438 var retvalue = var(true, v->type, "__retvalue");
1439 o->newline() << retvalue.init();
1440 }
1441
1442 o->newline() << "#define return goto out"; // redirect embedded-C return
1443 this->probe_or_function_needs_deref_fault_handler = false;
1444 v->body->visit (this);
1445 o->newline() << "#undef return";
1446
1447 this->current_function = 0;
1448
1449 record_actions(0, true);
1450
1451 if (this->probe_or_function_needs_deref_fault_handler) {
1452 // Emit this handler only if the body included a
1453 // print/printf/etc. using a string or memory buffer!
1454 o->newline() << "CATCH_DEREF_FAULT ();";
1455 }
1456
1457 o->newline(-1) << "out:";
1458 o->newline(1) << ";";
1459
1460 // Function prologue: this is why we redirect the "return" above.
1461 // Decrement nesting level.
1462 o->newline() << "c->nesting --;";
1463
1464 o->newline() << "#undef CONTEXT";
1465 o->newline() << "#undef THIS";
1466 o->newline(-1) << "}\n";
1467 }
1468
1469
1470 #define DUPMETHOD_CALL 0
1471 #define DUPMETHOD_ALIAS 0
1472 #define DUPMETHOD_RENAME 1
1473
1474 void
1475 c_unparser::emit_probe (derived_probe* v)
1476 {
1477 this->current_function = 0;
1478 this->current_probe = v;
1479 this->tmpvar_counter = 0;
1480 this->action_counter = 0;
1481
1482 // If we about to emit a probe that is exactly the same as another
1483 // probe previously emitted, make the second probe just call the
1484 // first one.
1485 //
1486 // Notice we're using the probe body itself instead of the emitted C
1487 // probe body to compare probes. We need to do this because the
1488 // emitted C probe body has stuff in it like:
1489 // c->last_stmt = "identifier 'printf' at foo.stp:<line>:<column>";
1490 //
1491 // which would make comparisons impossible.
1492 //
1493 // --------------------------------------------------------------------------
1494 // NB: see also c_unparser:emit_common_header(), which deliberately but sadly
1495 // duplicates this calculation.
1496 // --------------------------------------------------------------------------
1497 //
1498 ostringstream oss;
1499
1500 // NB: statp is just for avoiding designation as duplicate. It need not be C.
1501 // NB: This code *could* be enclosed in an "if (session->timing)". That would
1502 // recognize more duplicate probe handlers, but then the generated code could
1503 // be very different with or without -t.
1504 oss << "c->statp = & time_" << v->basest()->name << ";" << endl;
1505
1506 v->body->print(oss);
1507
1508 // Since the generated C changes based on whether or not the probe
1509 // needs locks around global variables, this needs to be reflected
1510 // here. We don't want to treat as duplicate the handlers of
1511 // begin/end and normal probes that differ only in need_global_locks.
1512 oss << "# needs_global_locks: " << v->needs_global_locks () << endl;
1513
1514 // If an identical probe has already been emitted, just call that
1515 // one.
1516 if (probe_contents.count(oss.str()) != 0)
1517 {
1518 string dupe = probe_contents[oss.str()];
1519
1520 // NB: Elision of context variable structs is a separate
1521 // operation which has already taken place by now.
1522 if (session->verbose > 1)
1523 clog << v->name << " elided, duplicates " << dupe << endl;
1524
1525 #if DUPMETHOD_CALL
1526 // This one emits a direct call to the first copy.
1527 o->newline();
1528 o->newline() << "static void " << v->name << " (struct context * __restrict__ c) ";
1529 o->newline() << "{ " << dupe << " (c); }";
1530 #elif DUPMETHOD_ALIAS
1531 // This one defines a function alias, arranging gcc to emit
1532 // several equivalent symbols for the same function body.
1533 // For some reason, on gcc 4.1, this is twice as slow as
1534 // the CALL option.
1535 o->newline();
1536 o->newline() << "static void " << v->name << " (struct context * __restrict__ c) ";
1537 o->line() << "__attribute__ ((alias (\"" << dupe << "\")));";
1538 #elif DUPMETHOD_RENAME
1539 // This one is sneaky. It emits nothing for duplicate probe
1540 // handlers. It instead redirects subsequent references to the
1541 // probe handler function to the first copy, *by name*.
1542 v->name = dupe;
1543 #else
1544 #error "Unknown duplicate elimination method"
1545 #endif
1546 }
1547 else // This probe is unique. Remember it and output it.
1548 {
1549 this->probe_or_function_needs_deref_fault_handler = false;
1550
1551 o->newline();
1552 o->newline() << "#ifdef STP_TIMING";
1553 o->newline() << "static __cacheline_aligned Stat " << "time_" << v->basest()->name << ";";
1554 o->newline() << "#endif";
1555 o->newline();
1556 o->newline() << "static void " << v->name << " (struct context * __restrict__ c) ";
1557 o->line () << "{";
1558 o->indent (1);
1559
1560 probe_contents[oss.str()] = v->name;
1561
1562 // initialize frame pointer
1563 o->newline() << "struct " << v->name << "_locals * __restrict__ l =";
1564 o->newline(1) << "& c->locals[0]." << v->name << ";";
1565 o->newline(-1) << "(void) l;"; // make sure "l" is marked used
1566
1567 o->newline() << "#ifdef STP_TIMING";
1568 o->newline() << "c->statp = & time_" << v->basest()->name << ";";
1569 o->newline() << "#endif";
1570
1571 // emit probe local initialization block
1572 v->emit_probe_local_init(o);
1573
1574 // emit all read/write locks for global variables
1575 varuse_collecting_visitor vut;
1576 if (v->needs_global_locks ())
1577 {
1578 v->body->visit (& vut);
1579 emit_locks (vut);
1580 }
1581
1582 // initialize locals
1583 for (unsigned j=0; j<v->locals.size(); j++)
1584 {
1585 if (v->locals[j]->index_types.size() > 0) // array?
1586 throw semantic_error ("array locals not supported, missing global declaration?",
1587 v->locals[j]->tok);
1588 else if (v->locals[j]->type == pe_long)
1589 o->newline() << "l->" << c_varname (v->locals[j]->name)
1590 << " = 0;";
1591 else if (v->locals[j]->type == pe_string)
1592 o->newline() << "l->" << c_varname (v->locals[j]->name)
1593 << "[0] = '\\0';";
1594 else
1595 throw semantic_error ("unsupported local variable type",
1596 v->locals[j]->tok);
1597 }
1598
1599 v->initialize_probe_context_vars (o);
1600
1601 v->body->visit (this);
1602
1603 record_actions(0, true);
1604
1605 if (this->probe_or_function_needs_deref_fault_handler) {
1606 // Emit this handler only if the body included a
1607 // print/printf/etc. using a string or memory buffer!
1608 o->newline() << "CATCH_DEREF_FAULT ();";
1609 }
1610
1611 o->newline(-1) << "out:";
1612 // NB: no need to uninitialize locals, except if arrays/stats can
1613 // someday be local
1614
1615 // XXX: do this flush only if the body included a
1616 // print/printf/etc. routine!
1617 o->newline(1) << "_stp_print_flush();";
1618
1619 if (v->needs_global_locks ())
1620 emit_unlocks (vut);
1621
1622 o->newline(-1) << "}\n";
1623 }
1624
1625
1626 this->current_probe = 0;
1627 }
1628
1629
1630 void
1631 c_unparser::emit_locks(const varuse_collecting_visitor& vut)
1632 {
1633 o->newline() << "{";
1634 o->newline(1) << "unsigned numtrylock = 0;";
1635 o->newline() << "(void) numtrylock;";
1636
1637 string last_locked_var;
1638 for (unsigned i = 0; i < session->globals.size(); i++)
1639 {
1640 vardecl* v = session->globals[i];
1641 bool read_p = vut.read.find(v) != vut.read.end();
1642 bool write_p = vut.written.find(v) != vut.written.end();
1643 if (!read_p && !write_p) continue;
1644
1645 if (v->type == pe_stats) // read and write locks are flipped
1646 // Specifically, a "<<<" to a stats object is considered a
1647 // "shared-lock" operation, since it's implicitly done
1648 // per-cpu. But a "@op(x)" extraction is an "exclusive-lock"
1649 // one, as is a (sorted or unsorted) foreach, so those cases
1650 // are excluded by the w & !r condition below.
1651 {
1652 if (write_p && !read_p) { read_p = true; write_p = false; }
1653 else if (read_p && !write_p) { read_p = false; write_p = true; }
1654 }
1655
1656 // We don't need to read lock "read-mostly" global variables. A
1657 // "read-mostly" global variable is only written to within
1658 // probes that don't need global variable locking (such as
1659 // begin/end probes). If vcv_needs_global_locks doesn't mark
1660 // the global as written to, then we don't have to lock it
1661 // here to read it safely.
1662 if (read_p && !write_p)
1663 {
1664 if (vcv_needs_global_locks.written.find(v)
1665 == vcv_needs_global_locks.written.end())
1666 continue;
1667 }
1668
1669 string lockcall =
1670 string (write_p ? "write" : "read") +
1671 "_trylock (& global.s_" + v->name + "_lock)";
1672
1673 o->newline() << "while (! " << lockcall
1674 << "&& (++numtrylock < MAXTRYLOCK))";
1675 o->newline(1) << "ndelay (TRYLOCKDELAY);";
1676 o->newline(-1) << "if (unlikely (numtrylock >= MAXTRYLOCK)) {";
1677 o->newline(1) << "atomic_inc (& skipped_count);";
1678 o->newline() << "#ifdef STP_TIMING";
1679 o->newline() << "atomic_inc (& global.s_" << c_varname (v->name) << "_lock_skip_count);";
1680 o->newline() << "#endif";
1681 // The following works even if i==0. Note that using
1682 // globals[i-1]->name is wrong since that global may not have
1683 // been lockworthy by this probe.
1684 o->newline() << "goto unlock_" << last_locked_var << ";";
1685 o->newline(-1) << "}";
1686
1687 last_locked_var = v->name;
1688 }
1689
1690 o->newline() << "if (0) goto unlock_;";
1691
1692 o->newline(-1) << "}";
1693 }
1694
1695
1696 void
1697 c_unparser::emit_unlocks(const varuse_collecting_visitor& vut)
1698 {
1699 unsigned numvars = 0;
1700
1701 if (session->verbose>1)
1702 clog << current_probe->name << " locks ";
1703
1704 for (int i = session->globals.size()-1; i>=0; i--) // in reverse order!
1705 {
1706 vardecl* v = session->globals[i];
1707 bool read_p = vut.read.find(v) != vut.read.end();
1708 bool write_p = vut.written.find(v) != vut.written.end();
1709 if (!read_p && !write_p) continue;
1710
1711 // Duplicate lock flipping logic from above
1712 if (v->type == pe_stats)
1713 {
1714 if (write_p && !read_p) { read_p = true; write_p = false; }
1715 else if (read_p && !write_p) { read_p = false; write_p = true; }
1716 }
1717
1718 // Duplicate "read-mostly" global variable logic from above.
1719 if (read_p && !write_p)
1720 {
1721 if (vcv_needs_global_locks.written.find(v)
1722 == vcv_needs_global_locks.written.end())
1723 continue;
1724 }
1725
1726 numvars ++;
1727 o->newline(-1) << "unlock_" << v->name << ":";
1728 o->indent(1);
1729
1730 if (session->verbose>1)
1731 clog << v->name << "[" << (read_p ? "r" : "")
1732 << (write_p ? "w" : "") << "] ";
1733
1734 if (write_p) // emit write lock
1735 o->newline() << "write_unlock (& global.s_" << v->name << "_lock);";
1736 else // (read_p && !write_p) : emit read lock
1737 o->newline() << "read_unlock (& global.s_" << v->name << "_lock);";
1738
1739 // fall through to next variable; thus the reverse ordering
1740 }
1741
1742 // emit plain "unlock" label, used if the very first lock failed.
1743 o->newline(-1) << "unlock_: ;";
1744 o->indent(1);
1745
1746 if (numvars) // is there a chance that any lock attempt failed?
1747 {
1748 // Formerly, we checked skipped_count > MAXSKIPPED here, and set
1749 // SYSTEMTAP_SESSION_ERROR if so. But now, this check is shared
1750 // via common_probe_entryfn_epilogue().
1751
1752 if (session->verbose>1)
1753 clog << endl;
1754 }
1755 else if (session->verbose>1)
1756 clog << "nothing" << endl;
1757 }
1758
1759
1760 void
1761 c_unparser::collect_map_index_types(vector<vardecl *> const & vars,
1762 set< pair<vector<exp_type>, exp_type> > & types)
1763 {
1764 for (unsigned i = 0; i < vars.size(); ++i)
1765 {
1766 vardecl *v = vars[i];
1767 if (v->arity > 0)
1768 {
1769 types.insert(make_pair(v->index_types, v->type));
1770 }
1771 }
1772 }
1773
1774 string
1775 mapvar::value_typename(exp_type e)
1776 {
1777 switch (e)
1778 {
1779 case pe_long:
1780 return "INT64";
1781 case pe_string:
1782 return "STRING";
1783 case pe_stats:
1784 return "STAT";
1785 default:
1786 throw semantic_error("array type is neither string nor long");
1787 }
1788 return "";
1789 }
1790
1791 string
1792 mapvar::key_typename(exp_type e)
1793 {
1794 switch (e)
1795 {
1796 case pe_long:
1797 return "INT64";
1798 case pe_string:
1799 return "STRING";
1800 default:
1801 throw semantic_error("array key is neither string nor long");
1802 }
1803 return "";
1804 }
1805
1806 string
1807 mapvar::shortname(exp_type e)
1808 {
1809 switch (e)
1810 {
1811 case pe_long:
1812 return "i";
1813 case pe_string:
1814 return "s";
1815 default:
1816 throw semantic_error("array type is neither string nor long");
1817 }
1818 return "";
1819 }
1820
1821
1822 void
1823 c_unparser::emit_map_type_instantiations ()
1824 {
1825 set< pair<vector<exp_type>, exp_type> > types;
1826
1827 collect_map_index_types(session->globals, types);
1828
1829 for (unsigned i = 0; i < session->probes.size(); ++i)
1830 collect_map_index_types(session->probes[i]->locals, types);
1831
1832 for (map<string,functiondecl*>::iterator it = session->functions.begin(); it != session->functions.end(); it++)
1833 collect_map_index_types(it->second->locals, types);
1834
1835 if (!types.empty())
1836 o->newline() << "#include \"alloc.c\"";
1837
1838 for (set< pair<vector<exp_type>, exp_type> >::const_iterator i = types.begin();
1839 i != types.end(); ++i)
1840 {
1841 o->newline() << "#define VALUE_TYPE " << mapvar::value_typename(i->second);
1842 for (unsigned j = 0; j < i->first.size(); ++j)
1843 {
1844 string ktype = mapvar::key_typename(i->first.at(j));
1845 o->newline() << "#define KEY" << (j+1) << "_TYPE " << ktype;
1846 }
1847 if (i->second == pe_stats)
1848 o->newline() << "#include \"pmap-gen.c\"";
1849 else
1850 o->newline() << "#include \"map-gen.c\"";
1851 o->newline() << "#undef VALUE_TYPE";
1852 for (unsigned j = 0; j < i->first.size(); ++j)
1853 {
1854 o->newline() << "#undef KEY" << (j+1) << "_TYPE";
1855 }
1856
1857 /* FIXME
1858 * For pmaps, we also need to include map-gen.c, because we might be accessing
1859 * the aggregated map. The better way to handle this is for pmap-gen.c to make
1860 * this include, but that's impossible with the way they are set up now.
1861 */
1862 if (i->second == pe_stats)
1863 {
1864 o->newline() << "#define VALUE_TYPE " << mapvar::value_typename(i->second);
1865 for (unsigned j = 0; j < i->first.size(); ++j)
1866 {
1867 string ktype = mapvar::key_typename(i->first.at(j));
1868 o->newline() << "#define KEY" << (j+1) << "_TYPE " << ktype;
1869 }
1870 o->newline() << "#include \"map-gen.c\"";
1871 o->newline() << "#undef VALUE_TYPE";
1872 for (unsigned j = 0; j < i->first.size(); ++j)
1873 {
1874 o->newline() << "#undef KEY" << (j+1) << "_TYPE";
1875 }
1876 }
1877 }
1878
1879 if (!types.empty())
1880 o->newline() << "#include \"map.c\"";
1881
1882 };
1883
1884
1885 string
1886 c_unparser::c_typename (exp_type e)
1887 {
1888 switch (e)
1889 {
1890 case pe_long: return string("int64_t");
1891 case pe_string: return string("string_t");
1892 case pe_stats: return string("Stat");
1893 case pe_unknown:
1894 default:
1895 throw semantic_error ("cannot expand unknown type");
1896 }
1897 }
1898
1899
1900 string
1901 c_unparser::c_varname (const string& e)
1902 {
1903 // XXX: safeify, uniquefy, given name
1904 return e;
1905 }
1906
1907
1908 string
1909 c_unparser::c_expression (expression *e)
1910 {
1911 // We want to evaluate expression 'e' and return its value as a
1912 // string. In the case of expressions that are just numeric
1913 // constants, if we just print the value into a string, it won't
1914 // have the same value as being visited by c_unparser. For
1915 // instance, a numeric constant evaluated using print() would return
1916 // "5", while c_unparser::visit_literal_number() would
1917 // return "((int64_t)5LL)". String constants evaluated using
1918 // print() would just return the string, while
1919 // c_unparser::visit_literal_string() would return the string with
1920 // escaped double quote characters. So, we need to "visit" the
1921 // expression.
1922
1923 // However, we have to be careful of side effects. Currently this
1924 // code is only being used for evaluating literal numbers and
1925 // strings, which currently have no side effects. Until needed
1926 // otherwise, limit the use of this function to literal numbers and
1927 // strings.
1928 if (e->tok->type != tok_number && e->tok->type != tok_string)
1929 throw semantic_error("unsupported c_expression token type");
1930
1931 // Create a fake output stream so we can grab the string output.
1932 ostringstream oss;
1933 translator_output tmp_o(oss);
1934
1935 // Temporarily swap out the real translator_output stream with our
1936 // fake one.
1937 translator_output *saved_o = o;
1938 o = &tmp_o;
1939
1940 // Visit the expression then restore the original output stream
1941 e->visit (this);
1942 o = saved_o;
1943
1944 return (oss.str());
1945 }
1946
1947
1948 void
1949 c_unparser::c_assign (var& lvalue, const string& rvalue, const token *tok)
1950 {
1951 switch (lvalue.type())
1952 {
1953 case pe_string:
1954 c_strcpy(lvalue.value(), rvalue);
1955 break;
1956 case pe_long:
1957 o->newline() << lvalue << " = " << rvalue << ";";
1958 break;
1959 default:
1960 throw semantic_error ("unknown lvalue type in assignment", tok);
1961 }
1962 }
1963
1964 void
1965 c_unparser::c_assign (const string& lvalue, expression* rvalue,
1966 const string& msg)
1967 {
1968 if (rvalue->type == pe_long)
1969 {
1970 o->newline() << lvalue << " = ";
1971 rvalue->visit (this);
1972 o->line() << ";";
1973 }
1974 else if (rvalue->type == pe_string)
1975 {
1976 c_strcpy (lvalue, rvalue);
1977 }
1978 else
1979 {
1980 string fullmsg = msg + " type unsupported";
1981 throw semantic_error (fullmsg, rvalue->tok);
1982 }
1983 }
1984
1985
1986 void
1987 c_unparser::c_assign (const string& lvalue, const string& rvalue,
1988 exp_type type, const string& msg, const token* tok)
1989 {
1990 if (type == pe_long)
1991 {
1992 o->newline() << lvalue << " = " << rvalue << ";";
1993 }
1994 else if (type == pe_string)
1995 {
1996 c_strcpy (lvalue, rvalue);
1997 }
1998 else
1999 {
2000 string fullmsg = msg + " type unsupported";
2001 throw semantic_error (fullmsg, tok);
2002 }
2003 }
2004
2005
2006 void
2007 c_unparser_assignment::c_assignop(tmpvar & res,
2008 var const & lval,
2009 tmpvar const & rval,
2010 token const * tok)
2011 {
2012 // This is common code used by scalar and array-element assignments.
2013 // It assumes an operator-and-assignment (defined by the 'pre' and
2014 // 'op' fields of c_unparser_assignment) is taking place between the
2015 // following set of variables:
2016 //
2017 // res: the result of evaluating the expression, a temporary
2018 // lval: the lvalue of the expression, which may be damaged
2019 // rval: the rvalue of the expression, which is a temporary or constant
2020
2021 // we'd like to work with a local tmpvar so we can overwrite it in
2022 // some optimized cases
2023
2024 translator_output* o = parent->o;
2025
2026 if (res.type() == pe_string)
2027 {
2028 if (post)
2029 throw semantic_error ("post assignment on strings not supported",
2030 tok);
2031 if (op == "=")
2032 {
2033 parent->c_strcpy (lval.value(), rval.value());
2034 // no need for second copy
2035 res = rval;
2036 }
2037 else if (op == ".=")
2038 {
2039 parent->c_strcat (lval.value(), rval.value());
2040 res = lval;
2041 }
2042 else
2043 throw semantic_error ("string assignment operator " +
2044 op + " unsupported", tok);
2045 }
2046 else if (op == "<<<")
2047 {
2048 assert(lval.type() == pe_stats);
2049 assert(rval.type() == pe_long);
2050 assert(res.type() == pe_long);
2051 o->newline() << res << " = " << rval << ";";
2052 o->newline() << "_stp_stat_add (" << lval << ", " << res << ");";
2053 }
2054 else if (res.type() == pe_long)
2055 {
2056 // a lot of operators come through this "gate":
2057 // - vanilla assignment "="
2058 // - stats aggregation "<<<"
2059 // - modify-accumulate "+=" and many friends
2060 // - pre/post-crement "++"/"--"
2061 // - "/" and "%" operators, but these need special handling in kernel
2062
2063 // compute the modify portion of a modify-accumulate
2064 string macop;
2065 unsigned oplen = op.size();
2066 if (op == "=")
2067 macop = "*error*"; // special shortcuts below
2068 else if (op == "++" || op == "+=")
2069 macop = "+=";
2070 else if (op == "--" || op == "-=")
2071 macop = "-=";
2072 else if (oplen > 1 && op[oplen-1] == '=') // for *=, <<=, etc...
2073 macop = op;
2074 else
2075 // internal error
2076 throw semantic_error ("unknown macop for assignment", tok);
2077
2078 if (post)
2079 {
2080 if (macop == "/" || macop == "%" || op == "=")
2081 throw semantic_error ("invalid post-mode operator", tok);
2082
2083 o->newline() << res << " = " << lval << ";";
2084
2085 if (macop == "+=" || macop == "-=")
2086 o->newline() << lval << " " << macop << " " << rval << ";";
2087 else
2088 o->newline() << lval << " = " << res << " " << macop << " " << rval << ";";
2089 }
2090 else
2091 {
2092 if (op == "=") // shortcut simple assignment
2093 {
2094 o->newline() << lval << " = " << rval << ";";
2095 res = rval;
2096 }
2097 else
2098 {
2099 if (macop == "/=" || macop == "%=")
2100 {
2101 o->newline() << "if (unlikely(!" << rval << ")) {";
2102 o->newline(1) << "c->last_error = \"division by 0\";";
2103 o->newline() << "goto out;";
2104 o->newline(-1) << "}";
2105 o->newline() << lval << " = "
2106 << ((macop == "/=") ? "_stp_div64" : "_stp_mod64")
2107 << " (NULL, " << lval << ", " << rval << ");";
2108 }
2109 else
2110 o->newline() << lval << " " << macop << " " << rval << ";";
2111 res = lval;
2112 }
2113 }
2114 }
2115 else
2116 throw semantic_error ("assignment type not yet implemented", tok);
2117 }
2118
2119
2120 void
2121 c_unparser::c_declare(exp_type ty, const string &name)
2122 {
2123 o->newline() << c_typename (ty) << " " << c_varname (name) << ";";
2124 }
2125
2126
2127 void
2128 c_unparser::c_declare_static(exp_type ty, const string &name)
2129 {
2130 o->newline() << "static " << c_typename (ty) << " " << c_varname (name) << ";";
2131 }
2132
2133
2134 void
2135 c_unparser::c_strcpy (const string& lvalue, const string& rvalue)
2136 {
2137 o->newline() << "strlcpy ("
2138 << lvalue << ", "
2139 << rvalue << ", MAXSTRINGLEN);";
2140 }
2141
2142
2143 void
2144 c_unparser::c_strcpy (const string& lvalue, expression* rvalue)
2145 {
2146 o->newline() << "strlcpy (" << lvalue << ", ";
2147 rvalue->visit (this);
2148 o->line() << ", MAXSTRINGLEN);";
2149 }
2150
2151
2152 void
2153 c_unparser::c_strcat (const string& lvalue, const string& rvalue)
2154 {
2155 o->newline() << "strlcat ("
2156 << lvalue << ", "
2157 << rvalue << ", MAXSTRINGLEN);";
2158 }
2159
2160
2161 void
2162 c_unparser::c_strcat (const string& lvalue, expression* rvalue)
2163 {
2164 o->newline() << "strlcat (" << lvalue << ", ";
2165 rvalue->visit (this);
2166 o->line() << ", MAXSTRINGLEN);";
2167 }
2168
2169
2170 bool
2171 c_unparser::is_local(vardecl const *r, token const *tok)
2172 {
2173 if (current_probe)
2174 {
2175 for (unsigned i=0; i<current_probe->locals.size(); i++)
2176 {
2177 if (current_probe->locals[i] == r)
2178 return true;
2179 }
2180 }
2181 else if (current_function)
2182 {
2183 for (unsigned i=0; i<current_function->locals.size(); i++)
2184 {
2185 if (current_function->locals[i] == r)
2186 return true;
2187 }
2188
2189 for (unsigned i=0; i<current_function->formal_args.size(); i++)
2190 {
2191 if (current_function->formal_args[i] == r)
2192 return true;
2193 }
2194 }
2195
2196 for (unsigned i=0; i<session->globals.size(); i++)
2197 {
2198 if (session->globals[i] == r)
2199 return false;
2200 }
2201
2202 if (tok)
2203 throw semantic_error ("unresolved symbol", tok);
2204 else
2205 throw semantic_error ("unresolved symbol: " + r->name);
2206 }
2207
2208
2209 tmpvar
2210 c_unparser::gensym(exp_type ty)
2211 {
2212 return tmpvar (ty, tmpvar_counter);
2213 }
2214
2215 aggvar
2216 c_unparser::gensym_aggregate()
2217 {
2218 return aggvar (tmpvar_counter);
2219 }
2220
2221
2222 var
2223 c_unparser::getvar(vardecl *v, token const *tok)
2224 {
2225 bool loc = is_local (v, tok);
2226 if (loc)
2227 return var (loc, v->type, v->name);
2228 else
2229 {
2230 statistic_decl sd;
2231 std::map<std::string, statistic_decl>::const_iterator i;
2232 i = session->stat_decls.find(v->name);
2233 if (i != session->stat_decls.end())
2234 sd = i->second;
2235 return var (loc, v->type, sd, v->name);
2236 }
2237 }
2238
2239
2240 mapvar
2241 c_unparser::getmap(vardecl *v, token const *tok)
2242 {
2243 if (v->arity < 1)
2244 throw semantic_error("attempt to use scalar where map expected", tok);
2245 statistic_decl sd;
2246 std::map<std::string, statistic_decl>::const_iterator i;
2247 i = session->stat_decls.find(v->name);
2248 if (i != session->stat_decls.end())
2249 sd = i->second;
2250 return mapvar (is_local (v, tok), v->type, sd,
2251 v->name, v->index_types, v->maxsize);
2252 }
2253
2254
2255 itervar
2256 c_unparser::getiter(symbol *s)
2257 {
2258 return itervar (s, tmpvar_counter);
2259 }
2260
2261
2262 // Queue up some actions to remove from actionremaining. Set update=true at
2263 // the end of basic blocks to actually update actionremaining and check it
2264 // against MAXACTION.
2265 void
2266 c_unparser::record_actions (unsigned actions, bool update)
2267 {
2268 action_counter += actions;
2269
2270 // Update if needed, or after queueing up a few actions, in case of very
2271 // large code sequences.
2272 if ((update && action_counter > 0) || action_counter >= 10/*<-arbitrary*/)
2273 {
2274 o->newline() << "c->actionremaining -= " << action_counter << ";";
2275 o->newline() << "if (unlikely (c->actionremaining <= 0)) {";
2276 o->newline(1) << "c->last_error = \"MAXACTION exceeded\";";
2277 o->newline() << "goto out;";
2278 o->newline(-1) << "}";
2279 action_counter = 0;
2280 }
2281 }
2282
2283
2284 void
2285 c_unparser::visit_block (block *s)
2286 {
2287 o->newline() << "{";
2288 o->indent (1);
2289
2290 for (unsigned i=0; i<s->statements.size(); i++)
2291 {
2292 try
2293 {
2294 s->statements[i]->visit (this);
2295 o->newline();
2296 }
2297 catch (const semantic_error& e)
2298 {
2299 session->print_error (e);
2300 }
2301 }
2302 o->newline(-1) << "}";
2303 }
2304
2305
2306 void
2307 c_unparser::visit_embeddedcode (embeddedcode *s)
2308 {
2309 o->newline() << "{";
2310 o->newline(1) << s->code;
2311 o->newline(-1) << "}";
2312 }
2313
2314
2315 void
2316 c_unparser::visit_null_statement (null_statement *)
2317 {
2318 o->newline() << "/* null */;";
2319 }
2320
2321
2322 void
2323 c_unparser::visit_expr_statement (expr_statement *s)
2324 {
2325 o->newline() << "(void) ";
2326 s->value->visit (this);
2327 o->line() << ";";
2328 record_actions(1);
2329 }
2330
2331
2332 void
2333 c_unparser::visit_if_statement (if_statement *s)
2334 {
2335 record_actions(1, true);
2336 o->newline() << "if (";
2337 o->indent (1);
2338 s->condition->visit (this);
2339 o->indent (-1);
2340 o->line() << ") {";
2341 o->indent (1);
2342 s->thenblock->visit (this);
2343 record_actions(0, true);
2344 o->newline(-1) << "}";
2345 if (s->elseblock)
2346 {
2347 o->newline() << "else {";
2348 o->indent (1);
2349 s->elseblock->visit (this);
2350 record_actions(0, true);
2351 o->newline(-1) << "}";
2352 }
2353 }
2354
2355
2356 void
2357 c_tmpcounter::visit_block (block *s)
2358 {
2359 // Key insight: individual statements of a block can reuse
2360 // temporary variable slots, since temporaries don't survive
2361 // statement boundaries. So we use gcc's anonymous union/struct
2362 // facility to explicitly overlay the temporaries.
2363 parent->o->newline() << "union {";
2364 parent->o->indent(1);
2365 for (unsigned i=0; i<s->statements.size(); i++)
2366 {
2367 // To avoid lots of empty structs inside the union, remember
2368 // where we are now. Then, output the struct start and remember
2369 // that positon. If when we get done with the statement we
2370 // haven't moved, then we don't really need the struct. To get
2371 // rid of the struct start we output, we'll seek back to where
2372 // we were before we output the struct.
2373 std::ostream::pos_type before_struct_pos = parent->o->tellp();
2374 parent->o->newline() << "struct {";
2375 parent->o->indent(1);
2376 std::ostream::pos_type after_struct_pos = parent->o->tellp();
2377 s->statements[i]->visit (this);
2378 parent->o->indent(-1);
2379 if (after_struct_pos == parent->o->tellp())
2380 parent->o->seekp(before_struct_pos);
2381 else
2382 parent->o->newline() << "};";
2383 }
2384 parent->o->newline(-1) << "};";
2385 }
2386
2387 void
2388 c_tmpcounter::visit_for_loop (for_loop *s)
2389 {
2390 if (s->init) s->init->visit (this);
2391 s->cond->visit (this);
2392 s->block->visit (this);
2393 if (s->incr) s->incr->visit (this);
2394 }
2395
2396
2397 void
2398 c_unparser::visit_for_loop (for_loop *s)
2399 {
2400 string ctr = stringify (label_counter++);
2401 string toplabel = "top_" + ctr;
2402 string contlabel = "continue_" + ctr;
2403 string breaklabel = "break_" + ctr;
2404
2405 // initialization
2406 if (s->init) s->init->visit (this);
2407 record_actions(1, true);
2408
2409 // condition
2410 o->newline(-1) << toplabel << ":";
2411
2412 // Emit an explicit action here to cover the act of iteration.
2413 // Equivalently, it can stand for the evaluation of the condition
2414 // expression.
2415 o->indent(1);
2416 record_actions(1);
2417
2418 o->newline() << "if (! (";
2419 if (s->cond->type != pe_long)
2420 throw semantic_error ("expected numeric type", s->cond->tok);
2421 s->cond->visit (this);
2422 o->line() << ")) goto " << breaklabel << ";";
2423
2424 // body
2425 loop_break_labels.push_back (breaklabel);
2426 loop_continue_labels.push_back (contlabel);
2427 s->block->visit (this);
2428 record_actions(0, true);
2429 loop_break_labels.pop_back ();
2430 loop_continue_labels.pop_back ();
2431
2432 // iteration
2433 o->newline(-1) << contlabel << ":";
2434 o->indent(1);
2435 if (s->incr) s->incr->visit (this);
2436 o->newline() << "goto " << toplabel << ";";
2437
2438 // exit
2439 o->newline(-1) << breaklabel << ":";
2440 o->newline(1) << "; /* dummy statement */";
2441 }
2442
2443
2444 struct arrayindex_downcaster
2445 : public traversing_visitor
2446 {
2447 arrayindex *& arr;
2448
2449 arrayindex_downcaster (arrayindex *& arr)
2450 : arr(arr)
2451 {}
2452
2453 void visit_arrayindex (arrayindex* e)
2454 {
2455 arr = e;
2456 }
2457 };
2458
2459
2460 static bool
2461 expression_is_arrayindex (expression *e,
2462 arrayindex *& hist)
2463 {
2464 arrayindex *h = NULL;
2465 arrayindex_downcaster d(h);
2466 e->visit (&d);
2467 if (static_cast<void*>(h) == static_cast<void*>(e))
2468 {
2469 hist = h;
2470 return true;
2471 }
2472 return false;
2473 }
2474
2475
2476 void
2477 c_tmpcounter::visit_foreach_loop (foreach_loop *s)
2478 {
2479 symbol *array;
2480 hist_op *hist;
2481 classify_indexable (s->base, array, hist);
2482
2483 if (array)
2484 {
2485 itervar iv = parent->getiter (array);
2486 parent->o->newline() << iv.declare();
2487 }
2488 else
2489 {
2490 // See commentary in c_tmpcounter::visit_arrayindex for
2491 // discussion of tmpvars required to look into @hist_op(...)
2492 // expressions.
2493
2494 // First make sure we have exactly one pe_long variable to use as
2495 // our bucket index.
2496
2497 if (s->indexes.size() != 1 || s->indexes[0]->referent->type != pe_long)
2498 throw semantic_error("Invalid indexing of histogram", s->tok);
2499
2500 // Then declare what we need to form the aggregate we're
2501 // iterating over, and all the tmpvars needed by our call to
2502 // load_aggregate().
2503
2504 aggvar agg = parent->gensym_aggregate ();
2505 agg.declare(*(this->parent));
2506
2507 symbol *sym = get_symbol_within_expression (hist->stat);
2508 var v = parent->getvar(sym->referent, sym->tok);
2509 if (sym->referent->arity != 0)
2510 {
2511 arrayindex *arr = NULL;
2512 if (!expression_is_arrayindex (hist->stat, arr))
2513 throw semantic_error("expected arrayindex expression in iterated hist_op", s->tok);
2514
2515 for (unsigned i=0; i<sym->referent->index_types.size(); i++)
2516 {
2517 tmpvar ix = parent->gensym (sym->referent->index_types[i]);
2518 ix.declare (*parent);
2519 arr->indexes[i]->visit(this);
2520 }
2521 }
2522 }
2523
2524 // Create a temporary for the loop limit counter and the limit
2525 // expression result.
2526 if (s->limit)
2527 {
2528 tmpvar res_limit = parent->gensym (pe_long);
2529 res_limit.declare(*parent);
2530
2531 s->limit->visit (this);
2532
2533 tmpvar limitv = parent->gensym (pe_long);
2534 limitv.declare(*parent);
2535 }
2536
2537 s->block->visit (this);
2538 }
2539
2540 void
2541 c_unparser::visit_foreach_loop (foreach_loop *s)
2542 {
2543 symbol *array;
2544 hist_op *hist;
2545 classify_indexable (s->base, array, hist);
2546
2547 if (array)
2548 {
2549 mapvar mv = getmap (array->referent, s->tok);
2550 itervar iv = getiter (array);
2551 vector<var> keys;
2552
2553 string ctr = stringify (label_counter++);
2554 string toplabel = "top_" + ctr;
2555 string contlabel = "continue_" + ctr;
2556 string breaklabel = "break_" + ctr;
2557
2558 // NB: structure parallels for_loop
2559
2560 // initialization
2561
2562 tmpvar *res_limit = NULL;
2563 if (s->limit)
2564 {
2565 // Evaluate the limit expression once.
2566 res_limit = new tmpvar(gensym(pe_long));
2567 c_assign (res_limit->value(), s->limit, "foreach limit");
2568 }
2569
2570 // aggregate array if required
2571 if (mv.is_parallel())
2572 {
2573 o->newline() << "if (unlikely(NULL == " << mv.calculate_aggregate() << ")) {";
2574 o->newline(1) << "c->last_error = \"aggregation overflow in " << mv << "\";";
2575 o->newline() << "goto out;";
2576 o->newline(-1) << "}";
2577
2578 // sort array if desired
2579 if (s->sort_direction)
2580 {
2581 int sort_column;
2582
2583 // If the user wanted us to sort by value, we'll sort by
2584 // @count instead for aggregates. '-5' tells the
2585 // runtime to sort by count.
2586 if (s->sort_column == 0)
2587 sort_column = -5;
2588 else
2589 sort_column = s->sort_column;
2590
2591 o->newline() << "else"; // only sort if aggregation was ok
2592 if (s->limit)
2593 {
2594 o->newline(1) << "_stp_map_sortn ("
2595 << mv.fetch_existing_aggregate() << ", "
2596 << *res_limit << ", " << sort_column << ", "
2597 << - s->sort_direction << ");";
2598 }
2599 else
2600 {
2601 o->newline(1) << "_stp_map_sort ("
2602 << mv.fetch_existing_aggregate() << ", "
2603 << sort_column << ", "
2604 << - s->sort_direction << ");";
2605 }
2606 o->indent(-1);
2607 }
2608 }
2609 else
2610 {
2611 // sort array if desired
2612 if (s->sort_direction)
2613 {
2614 if (s->limit)
2615 {
2616 o->newline() << "_stp_map_sortn (" << mv.value() << ", "
2617 << *res_limit << ", " << s->sort_column << ", "
2618 << - s->sort_direction << ");";
2619 }
2620 else
2621 {
2622 o->newline() << "_stp_map_sort (" << mv.value() << ", "
2623 << s->sort_column << ", "
2624 << - s->sort_direction << ");";
2625 }
2626 }
2627 }
2628
2629 // NB: sort direction sense is opposite in runtime, thus the negation
2630
2631 if (mv.is_parallel())
2632 aggregations_active.insert(mv.value());
2633 o->newline() << iv << " = " << iv.start (mv) << ";";
2634
2635 tmpvar *limitv = NULL;
2636 if (s->limit)
2637 {
2638 // Create the loop limit variable here and initialize it.
2639 limitv = new tmpvar(gensym (pe_long));
2640 o->newline() << *limitv << " = 0LL;";
2641 }
2642
2643 record_actions(1, true);
2644
2645 // condition
2646 o->newline(-1) << toplabel << ":";
2647
2648 // Emit an explicit action here to cover the act of iteration.
2649 // Equivalently, it can stand for the evaluation of the
2650 // condition expression.
2651 o->indent(1);
2652 record_actions(1);
2653
2654 o->newline() << "if (! (" << iv << ")) goto " << breaklabel << ";";
2655
2656 // body
2657 loop_break_labels.push_back (breaklabel);
2658 loop_continue_labels.push_back (contlabel);
2659 o->newline() << "{";
2660 o->indent (1);
2661
2662 if (s->limit)
2663 {
2664 // If we've been through LIMIT loop iterations, quit.
2665 o->newline() << "if (" << *limitv << "++ >= " << *res_limit
2666 << ") goto " << breaklabel << ";";
2667
2668 // We're done with limitv and res_limit.
2669 delete limitv;
2670 delete res_limit;
2671 }
2672
2673 for (unsigned i = 0; i < s->indexes.size(); ++i)
2674 {
2675 // copy the iter values into the specified locals
2676 var v = getvar (s->indexes[i]->referent);
2677 c_assign (v, iv.get_key (v.type(), i), s->tok);
2678 }
2679 s->block->visit (this);
2680 record_actions(0, true);
2681 o->newline(-1) << "}";
2682 loop_break_labels.pop_back ();
2683 loop_continue_labels.pop_back ();
2684
2685 // iteration
2686 o->newline(-1) << contlabel << ":";
2687 o->newline(1) << iv << " = " << iv.next (mv) << ";";
2688 o->newline() << "goto " << toplabel << ";";
2689
2690 // exit
2691 o->newline(-1) << breaklabel << ":";
2692 o->newline(1) << "; /* dummy statement */";
2693
2694 if (mv.is_parallel())
2695 aggregations_active.erase(mv.value());
2696 }
2697 else
2698 {
2699 // Iterating over buckets in a histogram.
2700 assert(s->indexes.size() == 1);
2701 assert(s->indexes[0]->referent->type == pe_long);
2702 var bucketvar = getvar (s->indexes[0]->referent);
2703
2704 aggvar agg = gensym_aggregate ();
2705 load_aggregate(hist->stat, agg);
2706
2707 symbol *sym = get_symbol_within_expression (hist->stat);
2708 var v = getvar(sym->referent, sym->tok);
2709 v.assert_hist_compatible(*hist);
2710
2711 tmpvar *res_limit = NULL;
2712 tmpvar *limitv = NULL;
2713 if (s->limit)
2714 {
2715 // Evaluate the limit expression once.
2716 res_limit = new tmpvar(gensym(pe_long));
2717 c_assign (res_limit->value(), s->limit, "foreach limit");
2718
2719 // Create the loop limit variable here and initialize it.
2720 limitv = new tmpvar(gensym (pe_long));
2721 o->newline() << *limitv << " = 0LL;";
2722 }
2723
2724 // XXX: break / continue don't work here yet
2725 record_actions(1, true);
2726 o->newline() << "for (" << bucketvar << " = 0; "
2727 << bucketvar << " < " << v.buckets() << "; "
2728 << bucketvar << "++) { ";
2729 o->newline(1);
2730
2731 if (s->limit)
2732 {
2733 // If we've been through LIMIT loop iterations, quit.
2734 o->newline() << "if (" << *limitv << "++ >= " << *res_limit
2735 << ") break;";
2736
2737 // We're done with limitv and res_limit.
2738 delete limitv;
2739 delete res_limit;
2740 }
2741
2742 s->block->visit (this);
2743 record_actions(1, true);
2744 o->newline(-1) << "}";
2745 }
2746 }
2747
2748
2749 void
2750 c_unparser::visit_return_statement (return_statement* s)
2751 {
2752 if (current_function == 0)
2753 throw semantic_error ("cannot 'return' from probe", s->tok);
2754
2755 if (s->value->type != current_function->type)
2756 throw semantic_error ("return type mismatch", current_function->tok,
2757 "vs", s->tok);
2758
2759 c_assign ("l->__retvalue", s->value, "return value");
2760 record_actions(1, true);
2761 o->newline() << "goto out;";
2762 }
2763
2764
2765 void
2766 c_unparser::visit_next_statement (next_statement* s)
2767 {
2768 if (current_probe == 0)
2769 throw semantic_error ("cannot 'next' from function", s->tok);
2770
2771 record_actions(1, true);
2772 o->newline() << "goto out;";
2773 }
2774
2775
2776 struct delete_statement_operand_tmp_visitor:
2777 public traversing_visitor
2778 {
2779 c_tmpcounter *parent;
2780 delete_statement_operand_tmp_visitor (c_tmpcounter *p):
2781 parent (p)
2782 {}
2783 //void visit_symbol (symbol* e);
2784 void visit_arrayindex (arrayindex* e);
2785 };
2786
2787
2788 struct delete_statement_operand_visitor:
2789 public throwing_visitor
2790 {
2791 c_unparser *parent;
2792 delete_statement_operand_visitor (c_unparser *p):
2793 throwing_visitor ("invalid operand of delete expression"),
2794 parent (p)
2795 {}
2796 void visit_symbol (symbol* e);
2797 void visit_arrayindex (arrayindex* e);
2798 };
2799
2800 void
2801 delete_statement_operand_visitor::visit_symbol (symbol* e)
2802 {
2803 assert (e->referent != 0);
2804 if (e->referent->arity > 0)
2805 {
2806 mapvar mvar = parent->getmap(e->referent, e->tok);
2807 /* NB: Memory deallocation/allocation operations
2808 are not generally safe.
2809 parent->o->newline() << mvar.fini ();
2810 parent->o->newline() << mvar.init ();
2811 */
2812 if (mvar.is_parallel())
2813 parent->o->newline() << "_stp_pmap_clear (" << mvar.value() << ");";
2814 else
2815 parent->o->newline() << "_stp_map_clear (" << mvar.value() << ");";
2816 }
2817 else
2818 {
2819 var v = parent->getvar(e->referent, e->tok);
2820 switch (e->type)
2821 {
2822 case pe_stats:
2823 parent->o->newline() << "_stp_stat_clear (" << v.value() << ");";
2824 break;
2825 case pe_long:
2826 parent->o->newline() << v.value() << " = 0;";
2827 break;
2828 case pe_string:
2829 parent->o->newline() << v.value() << "[0] = '\\0';";
2830 break;
2831 case pe_unknown:
2832 default:
2833 throw semantic_error("Cannot delete unknown expression type", e->tok);
2834 }
2835 }
2836 }
2837
2838 void
2839 delete_statement_operand_tmp_visitor::visit_arrayindex (arrayindex* e)
2840 {
2841 symbol *array;
2842 hist_op *hist;
2843 classify_indexable (e->base, array, hist);
2844
2845 if (array)
2846 {
2847 assert (array->referent != 0);
2848 vardecl* r = array->referent;
2849
2850 // One temporary per index dimension.
2851 for (unsigned i=0; i<r->index_types.size(); i++)
2852 {
2853 tmpvar ix = parent->parent->gensym (r->index_types[i]);
2854 ix.declare (*(parent->parent));
2855 e->indexes[i]->visit(parent);
2856 }
2857 }
2858 else
2859 {
2860 throw semantic_error("cannot delete histogram bucket entries\n", e->tok);
2861 }
2862 }
2863
2864 void
2865 delete_statement_operand_visitor::visit_arrayindex (arrayindex* e)
2866 {
2867 symbol *array;
2868 hist_op *hist;
2869 classify_indexable (e->base, array, hist);
2870
2871 if (array)
2872 {
2873 vector<tmpvar> idx;
2874 parent->load_map_indices (e, idx);
2875
2876 {
2877 mapvar mvar = parent->getmap (array->referent, e->tok);
2878 parent->o->newline() << mvar.del (idx) << ";";
2879 }
2880 }
2881 else
2882 {
2883 throw semantic_error("cannot delete histogram bucket entries\n", e->tok);
2884 }
2885 }
2886
2887
2888 void
2889 c_tmpcounter::visit_delete_statement (delete_statement* s)
2890 {
2891 delete_statement_operand_tmp_visitor dv (this);
2892 s->value->visit (&dv);
2893 }
2894
2895
2896 void
2897 c_unparser::visit_delete_statement (delete_statement* s)
2898 {
2899 delete_statement_operand_visitor dv (this);
2900 s->value->visit (&dv);
2901 record_actions(1);
2902 }
2903
2904
2905 void
2906 c_unparser::visit_break_statement (break_statement* s)
2907 {
2908 if (loop_break_labels.size() == 0)
2909 throw semantic_error ("cannot 'break' outside loop", s->tok);
2910
2911 record_actions(1, true);
2912 string label = loop_break_labels[loop_break_labels.size()-1];
2913 o->newline() << "goto " << label << ";";
2914 }
2915
2916
2917 void
2918 c_unparser::visit_continue_statement (continue_statement* s)
2919 {
2920 if (loop_continue_labels.size() == 0)
2921 throw semantic_error ("cannot 'continue' outside loop", s->tok);
2922
2923 record_actions(1, true);
2924 string label = loop_continue_labels[loop_continue_labels.size()-1];
2925 o->newline() << "goto " << label << ";";
2926 }
2927
2928
2929
2930 void
2931 c_unparser::visit_literal_string (literal_string* e)
2932 {
2933 const string& v = e->value;
2934 o->line() << '"';
2935 for (unsigned i=0; i<v.size(); i++)
2936 // NB: The backslash character is specifically passed through as is.
2937 // This is because our parser treats "\" as an ordinary character, not
2938 // an escape sequence, leaving it to the C compiler (and this function)
2939 // to treat it as such. If we were to escape it, there would be no way
2940 // of generating C-level escapes from script code.
2941 // See also print_format::components_to_string and lex_cast_qstring
2942 if (v[i] == '"') // or other escapeworthy characters?
2943 o->line() << '\\' << '"';
2944 else
2945 o->line() << v[i];
2946 o->line() << '"';
2947 }
2948
2949
2950 void
2951 c_unparser::visit_literal_number (literal_number* e)
2952 {
2953 // This looks ugly, but tries to be warning-free on 32- and 64-bit
2954 // hosts.
2955 // NB: this needs to be signed!
2956 if (e->value == -9223372036854775807LL-1) // PR 5023
2957 o->line() << "((int64_t)" << (unsigned long long) e->value << "ULL)";
2958 else
2959 o->line() << "((int64_t)" << e->value << "LL)";
2960 }
2961
2962
2963 void
2964 c_tmpcounter::visit_binary_expression (binary_expression* e)
2965 {
2966 if (e->op == "/" || e->op == "%")
2967 {
2968 tmpvar left = parent->gensym (pe_long);
2969 tmpvar right = parent->gensym (pe_long);
2970 if (e->left->tok->type != tok_number)
2971 left.declare (*parent);
2972 if (e->right->tok->type != tok_number)
2973 right.declare (*parent);
2974 }
2975
2976 e->left->visit (this);
2977 e->right->visit (this);
2978 }
2979
2980
2981 void
2982 c_unparser::visit_binary_expression (binary_expression* e)
2983 {
2984 if (e->type != pe_long ||
2985 e->left->type != pe_long ||
2986 e->right->type != pe_long)
2987 throw semantic_error ("expected numeric types", e->tok);
2988
2989 if (e->op == "+" ||
2990 e->op == "-" ||
2991 e->op == "*" ||
2992 e->op == "&" ||
2993 e->op == "|" ||
2994 e->op == "^")
2995 {
2996 o->line() << "((";
2997 e->left->visit (this);
2998 o->line() << ") " << e->op << " (";
2999 e->right->visit (this);
3000 o->line() << "))";
3001 }
3002 else if (e->op == ">>" ||
3003 e->op == "<<")
3004 {
3005 o->line() << "((";
3006 e->left->visit (this);
3007 o->line() << ") " << e->op << "max(min(";
3008 e->right->visit (this);
3009 o->line() << ", (int64_t)64LL), (int64_t)0LL))"; // between 0 and 64
3010 }
3011 else if (e->op == "/" ||
3012 e->op == "%")
3013 {
3014 // % and / need a division-by-zero check; and thus two temporaries
3015 // for proper evaluation order
3016 tmpvar left = gensym (pe_long);
3017 tmpvar right = gensym (pe_long);
3018
3019 o->line() << "({";
3020 o->indent(1);
3021
3022 if (e->left->tok->type == tok_number)
3023 left.override(c_expression(e->left));
3024 else
3025 {
3026 o->newline() << left << " = ";
3027 e->left->visit (this);
3028 o->line() << ";";
3029 }
3030
3031 if (e->right->tok->type == tok_number)
3032 right.override(c_expression(e->right));
3033 else
3034 {
3035 o->newline() << right << " = ";
3036 e->right->visit (this);
3037 o->line() << ";";
3038 }
3039
3040 o->newline() << "if (unlikely(!" << right << ")) {";
3041 o->newline(1) << "c->last_error = \"division by 0\";";
3042 o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3043 o->newline() << "goto out;";
3044 o->newline(-1) << "}";
3045 o->newline() << ((e->op == "/") ? "_stp_div64" : "_stp_mod64")
3046 << " (NULL, " << left << ", " << right << ");";
3047
3048 o->newline(-1) << "})";
3049 }
3050 else
3051 throw semantic_error ("operator not yet implemented", e->tok);
3052 }
3053
3054
3055 void
3056 c_unparser::visit_unary_expression (unary_expression* e)
3057 {
3058 if (e->type != pe_long ||
3059 e->operand->type != pe_long)
3060 throw semantic_error ("expected numeric types", e->tok);
3061
3062 if (e->op == "-")
3063 {
3064 // NB: Subtraction is special, since negative literals in the
3065 // script language show up as unary negations over positive
3066 // literals here. This makes it "exciting" for emitting pure
3067 // C since: - 0x8000_0000_0000_0000 ==> - (- 9223372036854775808)
3068 // This would constitute a signed overflow, which gcc warns on
3069 // unless -ftrapv/-J are in CFLAGS - which they're not.
3070
3071 o->line() << "(int64_t)(0 " << e->op << " (uint64_t)(";
3072 e->operand->visit (this);
3073 o->line() << "))";
3074 }
3075 else
3076 {
3077 o->line() << "(" << e->op << " (";
3078 e->operand->visit (this);
3079 o->line() << "))";
3080 }
3081 }
3082
3083 void
3084 c_unparser::visit_logical_or_expr (logical_or_expr* e)
3085 {
3086 if (e->type != pe_long ||
3087 e->left->type != pe_long ||
3088 e->right->type != pe_long)
3089 throw semantic_error ("expected numeric types", e->tok);
3090
3091 o->line() << "((";
3092 e->left->visit (this);
3093 o->line() << ") " << e->op << " (";
3094 e->right->visit (this);
3095 o->line() << "))";
3096 }
3097
3098
3099 void
3100 c_unparser::visit_logical_and_expr (logical_and_expr* e)
3101 {
3102 if (e->type != pe_long ||
3103 e->left->type != pe_long ||
3104 e->right->type != pe_long)
3105 throw semantic_error ("expected numeric types", e->tok);
3106
3107 o->line() << "((";
3108 e->left->visit (this);
3109 o->line() << ") " << e->op << " (";
3110 e->right->visit (this);
3111 o->line() << "))";
3112 }
3113
3114
3115 void
3116 c_tmpcounter::visit_array_in (array_in* e)
3117 {
3118 symbol *array;
3119 hist_op *hist;
3120 classify_indexable (e->operand->base, array, hist);
3121
3122 if (array)
3123 {
3124 assert (array->referent != 0);
3125 vardecl* r = array->referent;
3126
3127 // One temporary per index dimension.
3128 for (unsigned i=0; i<r->index_types.size(); i++)
3129 {
3130 tmpvar ix = parent->gensym (r->index_types[i]);
3131 ix.declare (*parent);
3132 e->operand->indexes[i]->visit(this);
3133 }
3134
3135 // A boolean result.
3136 tmpvar res = parent->gensym (e->type);
3137 res.declare (*parent);
3138 }
3139 else
3140 {
3141 // By definition:
3142 //
3143 // 'foo in @hist_op(...)' is true iff
3144 // '@hist_op(...)[foo]' is nonzero
3145 //
3146 // so we just delegate to the latter call, since int64_t is also
3147 // our boolean type.
3148 e->operand->visit(this);
3149 }
3150 }
3151
3152
3153 void
3154 c_unparser::visit_array_in (array_in* e)
3155 {
3156 symbol *array;
3157 hist_op *hist;
3158 classify_indexable (e->operand->base, array, hist);
3159
3160 if (array)
3161 {
3162 stmt_expr block(*this);
3163
3164 vector<tmpvar> idx;
3165 load_map_indices (e->operand, idx);
3166 // o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3167
3168 tmpvar res = gensym (pe_long);
3169 mapvar mvar = getmap (array->referent, e->tok);
3170 c_assign (res, mvar.exists(idx), e->tok);
3171
3172 o->newline() << res << ";";
3173 }
3174 else
3175 {
3176 // By definition:
3177 //
3178 // 'foo in @hist_op(...)' is true iff
3179 // '@hist_op(...)[foo]' is nonzero
3180 //
3181 // so we just delegate to the latter call, since int64_t is also
3182 // our boolean type.
3183 e->operand->visit(this);
3184 }
3185 }
3186
3187
3188 void
3189 c_unparser::visit_comparison (comparison* e)
3190 {
3191 o->line() << "(";
3192
3193 if (e->left->type == pe_string)
3194 {
3195 if (e->right->type != pe_string)
3196 throw semantic_error ("expected string types", e->tok);
3197
3198 o->line() << "strncmp (";
3199 e->left->visit (this);
3200 o->line() << ", ";
3201 e->right->visit (this);
3202 o->line() << ", MAXSTRINGLEN";
3203 o->line() << ") " << e->op << " 0";
3204 }
3205 else if (e->left->type == pe_long)
3206 {
3207 if (e->right->type != pe_long)
3208 throw semantic_error ("expected numeric types", e->tok);
3209
3210 o->line() << "((";
3211 e->left->visit (this);
3212 o->line() << ") " << e->op << " (";
3213 e->right->visit (this);
3214 o->line() << "))";
3215 }
3216 else
3217 throw semantic_error ("unexpected type", e->left->tok);
3218
3219 o->line() << ")";
3220 }
3221
3222
3223 void
3224 c_tmpcounter::visit_concatenation (concatenation* e)
3225 {
3226 tmpvar t = parent->gensym (e->type);
3227 t.declare (*parent);
3228 e->left->visit (this);
3229 e->right->visit (this);
3230 }
3231
3232
3233 void
3234 c_unparser::visit_concatenation (concatenation* e)
3235 {
3236 if (e->op != ".")
3237 throw semantic_error ("unexpected concatenation operator", e->tok);
3238
3239 if (e->type != pe_string ||
3240 e->left->type != pe_string ||
3241 e->right->type != pe_string)
3242 throw semantic_error ("expected string types", e->tok);
3243
3244 tmpvar t = gensym (e->type);
3245
3246 o->line() << "({ ";
3247 o->indent(1);
3248 // o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3249 c_assign (t.value(), e->left, "assignment");
3250 c_strcat (t.value(), e->right);
3251 o->newline() << t << ";";
3252 o->newline(-1) << "})";
3253 }
3254
3255
3256 void
3257 c_unparser::visit_ternary_expression (ternary_expression* e)
3258 {
3259 if (e->cond->type != pe_long)
3260 throw semantic_error ("expected numeric condition", e->cond->tok);
3261
3262 if (e->truevalue->type != e->falsevalue->type ||
3263 e->type != e->truevalue->type ||
3264 (e->truevalue->type != pe_long && e->truevalue->type != pe_string))
3265 throw semantic_error ("expected matching types", e->tok);
3266
3267 o->line() << "((";
3268 e->cond->visit (this);
3269 o->line() << ") ? (";
3270 e->truevalue->visit (this);
3271 o->line() << ") : (";
3272 e->falsevalue->visit (this);
3273 o->line() << "))";
3274 }
3275
3276
3277 void
3278 c_tmpcounter::visit_assignment (assignment *e)
3279 {
3280 c_tmpcounter_assignment tav (this, e->op, e->right);
3281 e->left->visit (& tav);
3282 }
3283
3284
3285 void
3286 c_unparser::visit_assignment (assignment* e)
3287 {
3288 if (e->op == "<<<")
3289 {
3290 if (e->type != pe_long)
3291 throw semantic_error ("non-number <<< expression", e->tok);
3292
3293 if (e->left->type != pe_stats)
3294 throw semantic_error ("non-stats left operand to <<< expression", e->left->tok);
3295
3296 if (e->right->type != pe_long)
3297 throw semantic_error ("non-number right operand to <<< expression", e->right->tok);
3298
3299 }
3300 else
3301 {
3302 if (e->type != e->left->type)
3303 throw semantic_error ("type mismatch", e->tok,
3304 "vs", e->left->tok);
3305 if (e->right->type != e->left->type)
3306 throw semantic_error ("type mismatch", e->right->tok,
3307 "vs", e->left->tok);
3308 }
3309
3310 c_unparser_assignment tav (this, e->op, e->right);
3311 e->left->visit (& tav);
3312 }
3313
3314
3315 void
3316 c_tmpcounter::visit_pre_crement (pre_crement* e)
3317 {
3318 c_tmpcounter_assignment tav (this, e->op, 0);
3319 e->operand->visit (& tav);
3320 }
3321
3322
3323 void
3324 c_unparser::visit_pre_crement (pre_crement* e)
3325 {
3326 if (e->type != pe_long ||
3327 e->type != e->operand->type)
3328 throw semantic_error ("expected numeric type", e->tok);
3329
3330 c_unparser_assignment tav (this, e->op, false);
3331 e->operand->visit (& tav);
3332 }
3333
3334
3335 void
3336 c_tmpcounter::visit_post_crement (post_crement* e)
3337 {
3338 c_tmpcounter_assignment tav (this, e->op, 0, true);
3339 e->operand->visit (& tav);
3340 }
3341
3342
3343 void
3344 c_unparser::visit_post_crement (post_crement* e)
3345 {
3346 if (e->type != pe_long ||
3347 e->type != e->operand->type)
3348 throw semantic_error ("expected numeric type", e->tok);
3349
3350 c_unparser_assignment tav (this, e->op, true);
3351 e->operand->visit (& tav);
3352 }
3353
3354
3355 void
3356 c_unparser::visit_symbol (symbol* e)
3357 {
3358 assert (e->referent != 0);
3359 vardecl* r = e->referent;
3360
3361 if (r->index_types.size() != 0)
3362 throw semantic_error ("invalid reference to array", e->tok);
3363
3364 var v = getvar(r, e->tok);
3365 o->line() << v;
3366 }
3367
3368
3369 void
3370 c_tmpcounter_assignment::prepare_rvalue (tmpvar & rval)
3371 {
3372 if (rvalue)
3373 {
3374 // literal number and strings don't need any temporaries declared
3375 if (rvalue->tok->type != tok_number && rvalue->tok->type != tok_string)
3376 rval.declare (*(parent->parent));
3377
3378 rvalue->visit (parent);
3379 }
3380 }
3381
3382 void
3383 c_tmpcounter_assignment::c_assignop(tmpvar & res)
3384 {
3385 if (res.type() == pe_string)
3386 {
3387 // string assignment doesn't need any temporaries declared
3388 }
3389 else if (op == "<<<")
3390 res.declare (*(parent->parent));
3391 else if (res.type() == pe_long)
3392 {
3393 // Only the 'post' operators ('x++') need a temporary declared.
3394 if (post)
3395 res.declare (*(parent->parent));
3396 }
3397 }
3398
3399 // Assignment expansion is tricky.
3400 //
3401 // Because assignments are nestable expressions, we have
3402 // to emit C constructs that are nestable expressions too.
3403 // We have to evaluate the given expressions the proper number of times,
3404 // including array indices.
3405 // We have to lock the lvalue (if global) against concurrent modification,
3406 // especially with modify-assignment operations (+=, ++).
3407 // We have to check the rvalue (for division-by-zero checks).
3408
3409 // In the normal "pre=false" case, for (A op B) emit:
3410 // ({ tmp = B; check(B); lock(A); res = A op tmp; A = res; unlock(A); res; })
3411 // In the "pre=true" case, emit instead:
3412 // ({ tmp = B; check(B); lock(A); res = A; A = res op tmp; unlock(A); res; })
3413 //
3414 // (op is the plain operator portion of a combined calculate/assignment:
3415 // "+" for "+=", and so on. It is in the "macop" variable below.)
3416 //
3417 // For array assignments, additional temporaries are used for each
3418 // index, which are expanded before the "tmp=B" expression, in order
3419 // to consistently order evaluation of lhs before rhs.
3420 //
3421
3422 void
3423 c_tmpcounter_assignment::visit_symbol (symbol *e)
3424 {
3425 exp_type ty = rvalue ? rvalue->type : e->type;
3426 tmpvar rval = parent->parent->gensym (ty);
3427 tmpvar res = parent->parent->gensym (ty);
3428
3429 prepare_rvalue(rval);
3430
3431 c_assignop (res);
3432 }
3433
3434
3435 void
3436 c_unparser_assignment::prepare_rvalue (string const & op,
3437 tmpvar & rval,
3438 token const * tok)
3439 {
3440 if (rvalue)
3441 {
3442 if (rvalue->tok->type == tok_number || rvalue->tok->type == tok_string)
3443 // Instead of assigning the numeric or string constant to a
3444 // temporary, then assigning the temporary to the final, let's
3445 // just override the temporary with the constant.
3446 rval.override(parent->c_expression(rvalue));
3447 else
3448 parent->c_assign (rval.value(), rvalue, "assignment");
3449 }
3450 else
3451 {
3452 if (op == "++" || op == "--")
3453 // Here is part of the conversion proccess of turning "x++" to
3454 // "x += 1".
3455 rval.override("1");
3456 else
3457 throw semantic_error ("need rvalue for assignment", tok);
3458 }
3459 }
3460
3461 void
3462 c_unparser_assignment::visit_symbol (symbol *e)
3463 {
3464 stmt_expr block(*parent);
3465
3466 assert (e->referent != 0);
3467 if (e->referent->index_types.size() != 0)
3468 throw semantic_error ("unexpected reference to array", e->tok);
3469
3470 // parent->o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3471 exp_type ty = rvalue ? rvalue->type : e->type;
3472 tmpvar rval = parent->gensym (ty);
3473 tmpvar res = parent->gensym (ty);
3474
3475 prepare_rvalue (op, rval, e->tok);
3476
3477 var lvar = parent->getvar (e->referent, e->tok);
3478 c_assignop (res, lvar, rval, e->tok);
3479
3480 parent->o->newline() << res << ";";
3481 }
3482
3483
3484 void
3485 c_unparser::visit_target_symbol (target_symbol* e)
3486 {
3487 throw semantic_error("cannot translate general target-symbol expression", e->tok);
3488 }
3489
3490
3491 void
3492 c_tmpcounter::load_map_indices(arrayindex *e)
3493 {
3494 symbol *array;
3495 hist_op *hist;
3496 classify_indexable (e->base, array, hist);
3497
3498 if (array)
3499 {
3500 assert (array->referent != 0);
3501 vardecl* r = array->referent;
3502
3503 // One temporary per index dimension, except in the case of
3504 // number or string constants.
3505 for (unsigned i=0; i<r->index_types.size(); i++)
3506 {
3507 tmpvar ix = parent->gensym (r->index_types[i]);
3508 if (e->indexes[i]->tok->type == tok_number
3509 || e->indexes[i]->tok->type == tok_string)
3510 {
3511 // Do nothing
3512 }
3513 else
3514 ix.declare (*parent);
3515 e->indexes[i]->visit(this);
3516 }
3517 }
3518 }
3519
3520
3521 void
3522 c_unparser::load_map_indices(arrayindex *e,
3523 vector<tmpvar> & idx)
3524 {
3525 symbol *array;
3526 hist_op *hist;
3527 classify_indexable (e->base, array, hist);
3528
3529 if (array)
3530 {
3531 idx.clear();
3532
3533 assert (array->referent != 0);
3534 vardecl* r = array->referent;
3535
3536 if (r->index_types.size() == 0 ||
3537 r->index_types.size() != e->indexes.size())
3538 throw semantic_error ("invalid array reference", e->tok);
3539
3540 for (unsigned i=0; i<r->index_types.size(); i++)
3541 {
3542 if (r->index_types[i] != e->indexes[i]->type)
3543 throw semantic_error ("array index type mismatch", e->indexes[i]->tok);
3544
3545 tmpvar ix = gensym (r->index_types[i]);
3546 if (e->indexes[i]->tok->type == tok_number
3547 || e->indexes[i]->tok->type == tok_string)
3548 // Instead of assigning the numeric or string constant to a
3549 // temporary, then using the temporary, let's just
3550 // override the temporary with the constant.
3551 ix.override(c_expression(e->indexes[i]));
3552 else
3553 {
3554 // o->newline() << "c->last_stmt = "
3555 // << lex_cast_qstring(*e->indexes[i]->tok) << ";";
3556 c_assign (ix.value(), e->indexes[i], "array index copy");
3557 }
3558 idx.push_back (ix);
3559 }
3560 }
3561 else
3562 {
3563 assert (e->indexes.size() == 1);
3564 assert (e->indexes[0]->type == pe_long);
3565 tmpvar ix = gensym (pe_long);
3566 // o->newline() << "c->last_stmt = "
3567 // << lex_cast_qstring(*e->indexes[0]->tok) << ";";
3568 c_assign (ix.value(), e->indexes[0], "array index copy");
3569 idx.push_back(ix);
3570 }
3571 }
3572
3573
3574 void
3575 c_unparser::load_aggregate (expression *e, aggvar & agg, bool pre_agg)
3576 {
3577 symbol *sym = get_symbol_within_expression (e);
3578
3579 if (sym->referent->type != pe_stats)
3580 throw semantic_error ("unexpected aggregate of non-statistic", sym->tok);
3581
3582 var v = getvar(sym->referent, e->tok);
3583
3584 if (sym->referent->arity == 0)
3585 {
3586 // o->newline() << "c->last_stmt = " << lex_cast_qstring(*sym->tok) << ";";
3587 o->newline() << agg << " = _stp_stat_get (" << v << ", 0);";
3588 }
3589 else
3590 {
3591 arrayindex *arr = NULL;
3592 if (!expression_is_arrayindex (e, arr))
3593 throw semantic_error("unexpected aggregate of non-arrayindex", e->tok);
3594
3595 vector<tmpvar> idx;
3596 load_map_indices (arr, idx);
3597 mapvar mvar = getmap (sym->referent, sym->tok);
3598 // o->newline() << "c->last_stmt = " << lex_cast_qstring(*sym->tok) << ";";
3599 o->newline() << agg << " = " << mvar.get(idx, pre_agg) << ";";
3600 }
3601 }
3602
3603
3604 string
3605 c_unparser::histogram_index_check(var & base, tmpvar & idx) const
3606 {
3607 return "((" + idx.value() + " >= 0)"
3608 + " && (" + idx.value() + " < " + base.buckets() + "))";
3609 }
3610
3611
3612 void
3613 c_tmpcounter::visit_arrayindex (arrayindex *e)
3614 {
3615 symbol *array;
3616 hist_op *hist;
3617 classify_indexable (e->base, array, hist);
3618
3619 if (array)
3620 {
3621 load_map_indices(e);
3622
3623 // The index-expression result.
3624 tmpvar res = parent->gensym (e->type);
3625 res.declare (*parent);
3626 }
3627 else
3628 {
3629
3630 assert(hist);
3631
3632 // Note: this is a slightly tricker-than-it-looks allocation of
3633 // temporaries. The reason is that we're in the branch handling
3634 // histogram-indexing, and the histogram might be build over an
3635 // indexable entity itself. For example if we have:
3636 //
3637 // global foo
3638 // ...
3639 // foo[getpid(), geteuid()] <<< 1
3640 // ...
3641 // print @log_hist(foo[pid, euid])[bucket]
3642 //
3643 // We are looking at the @log_hist(...)[bucket] expression, so
3644 // allocating one tmpvar for calculating bucket (the "index" of
3645 // this arrayindex expression), and one tmpvar for storing the
3646 // result in, just as normal.
3647 //
3648 // But we are *also* going to call load_aggregate on foo, which
3649 // will itself require tmpvars for each of its indices. Since
3650 // this is not handled by delving into the subexpression (it
3651 // would be if hist were first-class in the type system, but
3652 // it's not) we we allocate all the tmpvars used in such a
3653 // subexpression up here: first our own aggvar, then our index
3654 // (bucket) tmpvar, then all the index tmpvars of our
3655 // pe_stat-valued subexpression, then our result.
3656
3657
3658 // First all the stuff related to indexing into the histogram
3659
3660 if (e->indexes.size() != 1)
3661 throw semantic_error("Invalid indexing of histogram", e->tok);
3662 tmpvar ix = parent->gensym (pe_long);
3663 ix.declare (*parent);
3664 e->indexes[0]->visit(this);
3665 tmpvar res = parent->gensym (pe_long);
3666 res.declare (*parent);
3667
3668 // Then the aggregate, and all the tmpvars needed by our call to
3669 // load_aggregate().
3670
3671 aggvar agg = parent->gensym_aggregate ();
3672 agg.declare(*(this->parent));
3673
3674 symbol *sym = get_symbol_within_expression (hist->stat);
3675 var v = parent->getvar(sym->referent, sym->tok);
3676 if (sym->referent->arity != 0)
3677 {
3678 arrayindex *arr = NULL;
3679 if (!expression_is_arrayindex (hist->stat, arr))
3680 throw semantic_error("expected arrayindex expression in indexed hist_op", e->tok);
3681
3682 for (unsigned i=0; i<sym->referent->index_types.size(); i++)
3683 {
3684 tmpvar ix = parent->gensym (sym->referent->index_types[i]);
3685 ix.declare (*parent);
3686 arr->indexes[i]->visit(this);
3687 }
3688 }
3689 }
3690 }
3691
3692
3693 void
3694 c_unparser::visit_arrayindex (arrayindex* e)
3695 {
3696 symbol *array;
3697 hist_op *hist;
3698 classify_indexable (e->base, array, hist);
3699
3700 if (array)
3701 {
3702 // Visiting an statistic-valued array in a non-lvalue context is prohibited.
3703 if (array->referent->type == pe_stats)
3704 throw semantic_error ("statistic-valued array in rvalue context", e->tok);
3705
3706 stmt_expr block(*this);
3707
3708 // NB: Do not adjust the order of the next few lines; the tmpvar
3709 // allocation order must remain the same between
3710 // c_unparser::visit_arrayindex and c_tmpcounter::visit_arrayindex
3711
3712 vector<tmpvar> idx;
3713 load_map_indices (e, idx);
3714 tmpvar res = gensym (e->type);
3715
3716 mapvar mvar = getmap (array->referent, e->tok);
3717 // o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3718 c_assign (res, mvar.get(idx), e->tok);
3719
3720 o->newline() << res << ";";
3721 }
3722 else
3723 {
3724 // See commentary in c_tmpcounter::visit_arrayindex
3725
3726 assert(hist);
3727 stmt_expr block(*this);
3728
3729 // NB: Do not adjust the order of the next few lines; the tmpvar
3730 // allocation order must remain the same between
3731 // c_unparser::visit_arrayindex and c_tmpcounter::visit_arrayindex
3732
3733 vector<tmpvar> idx;
3734 load_map_indices (e, idx);
3735 tmpvar res = gensym (e->type);
3736
3737 aggvar agg = gensym_aggregate ();
3738
3739 // These should have faulted during elaboration if not true.
3740 assert(idx.size() == 1);
3741 assert(idx[0].type() == pe_long);
3742
3743 symbol *sym = get_symbol_within_expression (hist->stat);
3744
3745 var *v;
3746 if (sym->referent->arity < 1)
3747 v = new var(getvar(sym->referent, e->tok));
3748 else
3749 v = new mapvar(getmap(sym->referent, e->tok));
3750
3751 v->assert_hist_compatible(*hist);
3752
3753 if (aggregations_active.count(v->value()))
3754 load_aggregate(hist->stat, agg, true);
3755 else
3756 load_aggregate(hist->stat, agg, false);
3757
3758 o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3759
3760 // PR 2142+2610: empty aggregates
3761 o->newline() << "if (unlikely (" << agg.value() << " == NULL)"
3762 << " || " << agg.value() << "->count == 0) {";
3763 o->newline(1) << "c->last_error = \"empty aggregate\";";
3764 o->newline() << "goto out;";
3765 o->newline(-1) << "} else {";
3766 o->newline(1) << "if (" << histogram_index_check(*v, idx[0]) << ")";
3767 o->newline(1) << res << " = " << agg << "->histogram[" << idx[0] << "];";
3768 o->newline(-1) << "else {";
3769 o->newline(1) << "c->last_error = \"histogram index out of range\";";
3770 o->newline() << "goto out;";
3771 o->newline(-1) << "}";
3772
3773 o->newline(-1) << "}";
3774 o->newline() << res << ";";
3775
3776 delete v;
3777 }
3778 }
3779
3780
3781 void
3782 c_tmpcounter_assignment::visit_arrayindex (arrayindex *e)
3783 {
3784 symbol *array;
3785 hist_op *hist;
3786 classify_indexable (e->base, array, hist);
3787
3788 if (array)
3789 {
3790 parent->load_map_indices(e);
3791
3792 // The expression rval, lval, and result.
3793 exp_type ty = rvalue ? rvalue->type : e->type;
3794 tmpvar rval = parent->parent->gensym (ty);
3795 tmpvar lval = parent->parent->gensym (ty);
3796 tmpvar res = parent->parent->gensym (ty);
3797
3798 prepare_rvalue(rval);
3799 lval.declare (*(parent->parent));
3800
3801 if (op == "<<<")
3802 res.declare (*(parent->parent));
3803 else
3804 c_assignop(res);
3805 }
3806 else
3807 {
3808 throw semantic_error("cannot assign to histogram buckets", e->tok);
3809 }
3810 }
3811
3812
3813 void
3814 c_unparser_assignment::visit_arrayindex (arrayindex *e)
3815 {
3816 symbol *array;
3817 hist_op *hist;
3818 classify_indexable (e->base, array, hist);
3819
3820 if (array)
3821 {
3822
3823 stmt_expr block(*parent);
3824
3825 translator_output *o = parent->o;
3826
3827 if (array->referent->index_types.size() == 0)
3828 throw semantic_error ("unexpected reference to scalar", e->tok);
3829
3830 // nb: Do not adjust the order of the next few lines; the tmpvar
3831 // allocation order must remain the same between
3832 // c_unparser_assignment::visit_arrayindex and
3833 // c_tmpcounter_assignment::visit_arrayindex
3834
3835 vector<tmpvar> idx;
3836 parent->load_map_indices (e, idx);
3837 exp_type ty = rvalue ? rvalue->type : e->type;
3838 tmpvar rvar = parent->gensym (ty);
3839 tmpvar lvar = parent->gensym (ty);
3840 tmpvar res = parent->gensym (ty);
3841
3842 // NB: because these expressions are nestable, emit this construct
3843 // thusly:
3844 // ({ tmp0=(idx0); ... tmpN=(idxN); rvar=(rhs); lvar; res;
3845 // lock (array);
3846 // lvar = get (array,idx0...N); // if necessary
3847 // assignop (res, lvar, rvar);
3848 // set (array, idx0...N, lvar);
3849 // unlock (array);
3850 // res; })
3851 //
3852 // we store all indices in temporary variables to avoid nasty
3853 // reentrancy issues that pop up with nested expressions:
3854 // e.g. ++a[a[c]=5] could deadlock
3855 //
3856 //
3857 // There is an exception to the above form: if we're doign a <<< assigment to
3858 // a statistic-valued map, there's a special form we follow:
3859 //
3860 // ({ tmp0=(idx0); ... tmpN=(idxN); rvar=(rhs);
3861 // *no need to* lock (array);
3862 // _stp_map_add_stat (array, idx0...N, rvar);
3863 // *no need to* unlock (array);
3864 // rvar; })
3865 //
3866 // To simplify variable-allocation rules, we assign rvar to lvar and
3867 // res in this block as well, even though they are technically
3868 // superfluous.
3869
3870 prepare_rvalue (op, rvar, e->tok);
3871
3872 if (op == "<<<")
3873 {
3874 assert (e->type == pe_stats);
3875 assert (rvalue->type == pe_long);
3876
3877 mapvar mvar = parent->getmap (array->referent, e->tok);
3878 // o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3879 o->newline() << mvar.add (idx, rvar) << ";";
3880 res = rvar;
3881 // no need for these dummy assignments
3882 // o->newline() << lvar << " = " << rvar << ";";
3883 // o->newline() << res << " = " << rvar << ";";
3884 }
3885 else
3886 {
3887 mapvar mvar = parent->getmap (array->referent, e->tok);
3888 // o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
3889 if (op != "=") // don't bother fetch slot if we will just overwrite it
3890 parent->c_assign (lvar, mvar.get(idx), e->tok);
3891 c_assignop (res, lvar, rvar, e->tok);
3892 o->newline() << mvar.set (idx, lvar) << ";";
3893 }
3894
3895 o->newline() << res << ";";
3896 }
3897 else
3898 {
3899 throw semantic_error("cannot assign to histogram buckets", e->tok);
3900 }
3901 }
3902
3903
3904 void
3905 c_tmpcounter::visit_functioncall (functioncall *e)
3906 {
3907 assert (e->referent != 0);
3908 functiondecl* r = e->referent;
3909 // one temporary per argument, unless literal numbers or strings
3910 for (unsigned i=0; i<r->formal_args.size(); i++)
3911 {
3912 tmpvar t = parent->gensym (r->formal_args[i]->type);
3913 if (e->args[i]->tok->type != tok_number
3914 && e->args[i]->tok->type != tok_string)
3915 t.declare (*parent);
3916 e->args[i]->visit (this);
3917 }
3918 }
3919
3920
3921 void
3922 c_unparser::visit_functioncall (functioncall* e)
3923 {
3924 assert (e->referent != 0);
3925 functiondecl* r = e->referent;
3926
3927 if (r->formal_args.size() != e->args.size())
3928 throw semantic_error ("invalid length argument list", e->tok);
3929
3930 stmt_expr block(*this);
3931
3932 // NB: we store all actual arguments in temporary variables,
3933 // to avoid colliding sharing of context variables with
3934 // nested function calls: f(f(f(1)))
3935
3936 // compute actual arguments
3937 vector<tmpvar> tmp;
3938
3939 for (unsigned i=0; i<e->args.size(); i++)
3940 {
3941 tmpvar t = gensym(e->args[i]->type);
3942
3943 if (r->formal_args[i]->type != e->args[i]->type)
3944 throw semantic_error ("function argument type mismatch",
3945 e->args[i]->tok, "vs", r->formal_args[i]->tok);
3946
3947 if (e->args[i]->tok->type == tok_number
3948 || e->args[i]->tok->type == tok_string)
3949 t.override(c_expression(e->args[i]));
3950 else
3951 {
3952 // o->newline() << "c->last_stmt = "
3953 // << lex_cast_qstring(*e->args[i]->tok) << ";";
3954 c_assign (t.value(), e->args[i],
3955 "function actual argument evaluation");
3956 }
3957 tmp.push_back(t);
3958 }
3959
3960 // copy in actual arguments
3961 for (unsigned i=0; i<e->args.size(); i++)
3962 {
3963 if (r->formal_args[i]->type != e->args[i]->type)
3964 throw semantic_error ("function argument type mismatch",
3965 e->args[i]->tok, "vs", r->formal_args[i]->tok);
3966
3967 c_assign ("c->locals[c->nesting+1].function_" +
3968 c_varname (r->name) + "." +
3969 c_varname (r->formal_args[i]->name),
3970 tmp[i].value(),
3971 e->args[i]->type,
3972 "function actual argument copy",
3973 e->args[i]->tok);
3974 }
3975
3976 // call function
3977 o->newline() << "function_" << c_varname (r->name) << " (c);";
3978 o->newline() << "if (unlikely(c->last_error)) goto out;";
3979
3980 // return result from retvalue slot
3981 if (r->type == pe_unknown)
3982 // If we passed typechecking, then nothing will use this return value
3983 o->newline() << "(void) 0;";
3984 else
3985 o->newline() << "c->locals[c->nesting+1]"
3986 << ".function_" << c_varname (r->name)
3987 << ".__retvalue;";
3988 }
3989
3990 void
3991 c_tmpcounter::visit_print_format (print_format* e)
3992 {
3993 if (e->hist)
3994 {
3995 symbol *sym = get_symbol_within_expression (e->hist->stat);
3996 var v = parent->getvar(sym->referent, sym->tok);
3997 aggvar agg = parent->gensym_aggregate ();
3998
3999 agg.declare(*(this->parent));
4000
4001 if (sym->referent->arity != 0)
4002 {
4003 // One temporary per index dimension.
4004 for (unsigned i=0; i<sym->referent->index_types.size(); i++)
4005 {
4006 arrayindex *arr = NULL;
4007 if (!expression_is_arrayindex (e->hist->stat, arr))
4008 throw semantic_error("expected arrayindex expression in printed hist_op", e->tok);
4009
4010 tmpvar ix = parent->gensym (sym->referent->index_types[i]);
4011 ix.declare (*parent);
4012 arr->indexes[i]->visit(this);
4013 }
4014 }
4015 }
4016 else
4017 {
4018 // One temporary per argument
4019 for (unsigned i=0; i < e->args.size(); i++)
4020 {
4021 tmpvar t = parent->gensym (e->args[i]->type);
4022 if (e->args[i]->type == pe_unknown)
4023 {
4024 throw semantic_error("unknown type of arg to print operator",
4025 e->args[i]->tok);
4026 }
4027
4028 if (e->args[i]->tok->type != tok_number
4029 && e->args[i]->tok->type != tok_string)
4030 t.declare (*parent);
4031 e->args[i]->visit (this);
4032 }
4033
4034 // And the result
4035 exp_type ty = e->print_to_stream ? pe_long : pe_string;
4036 tmpvar res = parent->gensym (ty);
4037 if (ty == pe_string)
4038 res.declare (*parent);
4039 }
4040 }
4041
4042
4043 void
4044 c_unparser::visit_print_format (print_format* e)
4045 {
4046 // Print formats can contain a general argument list *or* a special
4047 // type of argument which gets its own processing: a single,
4048 // non-format-string'ed, histogram-type stat_op expression.
4049
4050 if (e->hist)
4051 {
4052 stmt_expr block(*this);
4053 symbol *sym = get_symbol_within_expression (e->hist->stat);
4054 aggvar agg = gensym_aggregate ();
4055
4056 var *v;
4057 if (sym->referent->arity < 1)
4058 v = new var(getvar(sym->referent, e->tok));
4059 else
4060 v = new mapvar(getmap(sym->referent, e->tok));
4061
4062 v->assert_hist_compatible(*e->hist);
4063
4064 {
4065 if (aggregations_active.count(v->value()))
4066 load_aggregate(e->hist->stat, agg, true);
4067 else
4068 load_aggregate(e->hist->stat, agg, false);
4069
4070 // PR 2142+2610: empty aggregates
4071 o->newline() << "if (unlikely (" << agg.value() << " == NULL)"
4072 << " || " << agg.value() << "->count == 0) {";
4073 o->newline(1) << "c->last_error = \"empty aggregate\";";
4074 o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
4075 o->newline() << "goto out;";
4076 o->newline(-1) << "} else";
4077 o->newline(1) << "_stp_stat_print_histogram (" << v->hist() << ", " << agg.value() << ");";
4078 o->indent(-1);
4079 }
4080
4081 delete v;
4082 }
4083 else
4084 {
4085 stmt_expr block(*this);
4086
4087 // Compute actual arguments
4088 vector<tmpvar> tmp;
4089
4090 for (unsigned i=0; i<e->args.size(); i++)
4091 {
4092 tmpvar t = gensym(e->args[i]->type);
4093 tmp.push_back(t);
4094
4095 // o->newline() << "c->last_stmt = "
4096 // << lex_cast_qstring(*e->args[i]->tok) << ";";
4097
4098 // If we've got a numeric or string constant, instead of
4099 // assigning the numeric or string constant to a temporary,
4100 // then passing the temporary to _stp_printf/_stp_snprintf,
4101 // let's just override the temporary with the constant.
4102 if (e->args[i]->tok->type == tok_number
4103 || e->args[i]->tok->type == tok_string)
4104 tmp[i].override(c_expression(e->args[i]));
4105 else
4106 c_assign (t.value(), e->args[i],
4107 "print format actual argument evaluation");
4108 }
4109
4110 std::vector<print_format::format_component> components;
4111
4112 if (e->print_with_format)
4113 {
4114 components = e->components;
4115 }
4116 else
4117 {
4118 // Synthesize a print-format string if the user didn't
4119 // provide one; the synthetic string simply contains one
4120 // directive for each argument.
4121 for (unsigned i = 0; i < e->args.size(); ++i)
4122 {
4123 if (i > 0 && e->print_with_delim)
4124 components.push_back (e->delimiter);
4125 print_format::format_component curr;
4126 curr.clear();
4127 switch (e->args[i]->type)
4128 {
4129 case pe_unknown:
4130 throw semantic_error("cannot print unknown expression type", e->args[i]->tok);
4131 case pe_stats:
4132 throw semantic_error("cannot print a raw stats object", e->args[i]->tok);
4133 case pe_long:
4134 curr.type = print_format::conv_signed_decimal;
4135 break;
4136 case pe_string:
4137 curr.type = print_format::conv_string;
4138 break;
4139 }
4140 components.push_back (curr);
4141 }
4142
4143 if (e->print_with_newline)
4144 {
4145 print_format::format_component curr;
4146 curr.clear();
4147 curr.type = print_format::conv_literal;
4148 curr.literal_string = "\\n";
4149 components.push_back (curr);
4150 }
4151 }
4152
4153 // Allocate the result
4154 exp_type ty = e->print_to_stream ? pe_long : pe_string;
4155 tmpvar res = gensym (ty);
4156 int use_print = 0;
4157
4158 string format_string = print_format::components_to_string(components);
4159 if (tmp.size() == 0 || (tmp.size() == 1 && format_string == "%s"))
4160 use_print = 1;
4161 else if (tmp.size() == 1
4162 && e->args[0]->tok->type == tok_string
4163 && format_string == "%s\\n")
4164 {
4165 use_print = 1;
4166 tmp[0].override(tmp[0].value() + "\"\\n\"");
4167 components[0].type = print_format::conv_literal;
4168 }
4169
4170 // Make the [s]printf call...
4171
4172 // Generate code to check that any pointer arguments are actually accessible. */
4173 int arg_ix = 0;
4174 for (unsigned i = 0; i < components.size(); ++i) {
4175 if (components[i].type == print_format::conv_literal)
4176 continue;
4177
4178 /* Take note of the width and precision arguments, if any. */
4179 int width_ix = -1, prec_ix= -1;
4180 if (components[i].widthtype == print_format::width_dynamic)
4181 width_ix = arg_ix++;
4182 if (components[i].prectype == print_format::prec_dynamic)
4183 prec_ix = arg_ix++;
4184
4185 /* Generate a noop call to deref_buffer for %m. */
4186 if (components[i].type == print_format::conv_memory
4187 || components[i].type == print_format::conv_memory_hex) {
4188 this->probe_or_function_needs_deref_fault_handler = true;
4189 o->newline() << "deref_buffer (0, " << tmp[arg_ix].value() << ", ";
4190 if (prec_ix == -1)
4191 if (width_ix != -1)
4192 prec_ix = width_ix;
4193 if (prec_ix != -1)
4194 o->line() << tmp[prec_ix].value();
4195 else
4196 o->line() << "1";
4197 o->line() << ");";
4198 }
4199
4200 ++arg_ix;
4201 }
4202
4203 if (e->print_to_stream)
4204 {
4205 if (e->print_char)
4206 {
4207 o->newline() << "_stp_print_char (";
4208 if (tmp.size())
4209 o->line() << tmp[0].value() << ");";
4210 else
4211 o->line() << '"' << format_string << "\");";
4212 return;
4213 }
4214 if (use_print)
4215 {
4216 o->newline() << "_stp_print (";
4217 if (tmp.size())
4218 o->line() << tmp[0].value() << ");";
4219 else
4220 o->line() << '"' << format_string << "\");";
4221 return;
4222 }
4223
4224 // We'll just hardcode the result of 0 instead of using the
4225 // temporary.
4226 res.override("((int64_t)0LL)");
4227 o->newline() << "_stp_printf (";
4228 }
4229 else
4230 o->newline() << "_stp_snprintf (" << res.value() << ", MAXSTRINGLEN, ";
4231
4232 o->line() << '"' << format_string << '"';
4233
4234 /* Generate the actual arguments. Make sure that they match the expected type of the
4235 format specifier. */
4236 arg_ix = 0;
4237 for (unsigned i = 0; i < components.size(); ++i) {
4238 if (components[i].type == print_format::conv_literal)
4239 continue;
4240
4241 /* Cast the width and precision arguments, if any, to 'int'. */
4242 if (components[i].widthtype == print_format::width_dynamic)
4243 o->line() << ", (int)" << tmp[arg_ix++].value();
4244 if (components[i].prectype == print_format::prec_dynamic)
4245 o->line() << ", (int)" << tmp[arg_ix++].value();
4246
4247 /* The type of the %m argument is 'char*'. */
4248 if (components[i].type == print_format::conv_memory
4249 || components[i].type == print_format::conv_memory_hex)
4250 o->line() << ", (char*)(uintptr_t)" << tmp[arg_ix++].value();
4251 /* The type of the %c argument is 'int'. */
4252 else if (components[i].type == print_format::conv_char)
4253 o->line() << ", (int)" << tmp[arg_ix++].value();
4254 else if (arg_ix < (int) tmp.size())
4255 o->line() << ", " << tmp[arg_ix++].value();
4256 }
4257
4258 o->line() << ");";
4259 o->newline() << res.value() << ";";
4260 }
4261 }
4262
4263
4264 void
4265 c_tmpcounter::visit_stat_op (stat_op* e)
4266 {
4267 symbol *sym = get_symbol_within_expression (e->stat);
4268 var v = parent->getvar(sym->referent, e->tok);
4269 aggvar agg = parent->gensym_aggregate ();
4270 tmpvar res = parent->gensym (pe_long);
4271
4272 agg.declare(*(this->parent));
4273 res.declare(*(this->parent));
4274
4275 if (sym->referent->arity != 0)
4276 {
4277 // One temporary per index dimension.
4278 for (unsigned i=0; i<sym->referent->index_types.size(); i++)
4279 {
4280 // Sorry about this, but with no dynamic_cast<> and no
4281 // constructor patterns, this is how things work.
4282 arrayindex *arr = NULL;
4283 if (!expression_is_arrayindex (e->stat, arr))
4284 throw semantic_error("expected arrayindex expression in stat_op of array", e->tok);
4285
4286 tmpvar ix = parent->gensym (sym->referent->index_types[i]);
4287 ix.declare (*parent);
4288 arr->indexes[i]->visit(this);
4289 }
4290 }
4291 }
4292
4293 void
4294 c_unparser::visit_stat_op (stat_op* e)
4295 {
4296 // Stat ops can be *applied* to two types of expression:
4297 //
4298 // 1. An arrayindex expression on a pe_stats-valued array.
4299 //
4300 // 2. A symbol of type pe_stats.
4301
4302 // FIXME: classify the expression the stat_op is being applied to,
4303 // call appropriate stp_get_stat() / stp_pmap_get_stat() helper,
4304 // then reach into resultant struct stat_data.
4305
4306 // FIXME: also note that summarizing anything is expensive, and we
4307 // really ought to pass a timeout handler into the summary routine,
4308 // check its response, possibly exit if it ran out of cycles.
4309
4310 {
4311 stmt_expr block(*this);
4312 symbol *sym = get_symbol_within_expression (e->stat);
4313 aggvar agg = gensym_aggregate ();
4314 tmpvar res = gensym (pe_long);
4315 var v = getvar(sym->referent, e->tok);
4316 {
4317 if (aggregations_active.count(v.value()))
4318 load_aggregate(e->stat, agg, true);
4319 else
4320 load_aggregate(e->stat, agg, false);
4321
4322 // PR 2142+2610: empty aggregates
4323 if (e->ctype == sc_count)
4324 {
4325 o->newline() << "if (unlikely (" << agg.value() << " == NULL))";
4326 o->indent(1);
4327 c_assign(res, "0", e->tok);
4328 o->indent(-1);
4329 }
4330 else
4331 {
4332 o->newline() << "if (unlikely (" << agg.value() << " == NULL)"
4333 << " || " << agg.value() << "->count == 0) {";
4334 o->newline(1) << "c->last_error = \"empty aggregate\";";
4335 o->newline() << "c->last_stmt = " << lex_cast_qstring(*e->tok) << ";";
4336 o->newline() << "goto out;";
4337 o->newline(-1) << "}";
4338 }
4339 o->newline() << "else";
4340 o->indent(1);
4341 switch (e->ctype)
4342 {
4343 case sc_average:
4344 c_assign(res, ("_stp_div64(NULL, " + agg.value() + "->sum, "
4345 + agg.value() + "->count)"),
4346 e->tok);
4347 break;
4348 case sc_count:
4349 c_assign(res, agg.value() + "->count", e->tok);
4350 break;
4351 case sc_sum:
4352 c_assign(res, agg.value() + "->sum", e->tok);
4353 break;
4354 case sc_min:
4355 c_assign(res, agg.value() + "->min", e->tok);
4356 break;
4357 case sc_max:
4358 c_assign(res, agg.value() + "->max", e->tok);
4359 break;
4360 }
4361 o->indent(-1);
4362 }
4363 o->newline() << res << ";";
4364 }
4365 }
4366
4367
4368 void
4369 c_unparser::visit_hist_op (hist_op*)
4370 {
4371 // Hist ops can only occur in a limited set of circumstances:
4372 //
4373 // 1. Inside an arrayindex expression, as the base referent. See
4374 // c_unparser::visit_arrayindex for handling of this case.
4375 //
4376 // 2. Inside a foreach statement, as the base referent. See
4377 // c_unparser::visit_foreach_loop for handling this case.
4378 //
4379 // 3. Inside a print_format expression, as the sole argument. See
4380 // c_unparser::visit_print_format for handling this case.
4381 //
4382 // Note that none of these cases involves the c_unparser ever
4383 // visiting this node. We should not get here.
4384
4385 assert(false);
4386 }
4387
4388
4389
4390 struct unwindsym_dump_context
4391 {
4392 systemtap_session& session;
4393 ostream& output;
4394 unsigned stp_module_index;
4395 set<string> undone_unwindsym_modules;
4396 };
4397
4398
4399 // Get the .debug_frame section for the given module.
4400 // l will be set to the length of the size of the unwind data if found.
4401 static void *get_unwind_data (Dwfl_Module *m, size_t *l)
4402 {
4403 Dwarf_Addr bias = 0;
4404 Dwarf *dw;
4405 GElf_Ehdr *ehdr, ehdr_mem;
4406 GElf_Shdr *shdr, shdr_mem;
4407 Elf_Scn *scn = NULL;
4408 Elf_Data *data = NULL;
4409
4410 dw = dwfl_module_getdwarf(m, &bias);
4411 if (dw != NULL)
4412 {
4413 Elf *elf = dwarf_getelf(dw);
4414 ehdr = gelf_getehdr(elf, &ehdr_mem);
4415 while ((scn = elf_nextscn(elf, scn)))
4416 {
4417 shdr = gelf_getshdr(scn, &shdr_mem);
4418 if (strcmp(elf_strptr(elf, ehdr->e_shstrndx, shdr->sh_name),
4419 ".debug_frame") == 0)
4420 {
4421 data = elf_rawdata(scn, NULL);
4422 break;
4423 }
4424 }
4425 }
4426
4427 if (data != NULL)
4428 {
4429 *l = data->d_size;
4430 return data->d_buf;
4431 }
4432
4433 return NULL;
4434 }
4435
4436 static int
4437 dump_unwindsyms (Dwfl_Module *m,
4438 void **userdata __attribute__ ((unused)),
4439 const char *name,
4440 Dwarf_Addr base,
4441 void *arg)
4442 {
4443 unwindsym_dump_context* c = (unwindsym_dump_context*) arg;
4444 assert (c);
4445 unsigned stpmod_idx = c->stp_module_index;
4446
4447 string modname = name;
4448
4449 // skip modules/files we're not actually interested in
4450 if (c->session.unwindsym_modules.find(modname) == c->session.unwindsym_modules.end())
4451 return DWARF_CB_OK;
4452
4453 c->stp_module_index ++;
4454
4455 if (c->session.verbose > 1)
4456 clog << "dump_unwindsyms " << name
4457 << " index=" << stpmod_idx
4458 << " base=0x" << hex << base << dec << endl;
4459
4460 // We want to extract several bits of information:
4461 //
4462 // - parts of the program-header that map the file's physical offsets to the text section
4463 // - section table: just a list of section (relocation) base addresses
4464 // - symbol table of the text-like sections, with all addresses relativized to each base
4465 // - the contents of .debug_frame section, for unwinding purposes
4466 //
4467 // In the future, we'll also care about data symbols.
4468
4469 int syments = dwfl_module_getsymtab(m);
4470 assert(syments);
4471
4472 //extract build-id from debuginfo file
4473 int build_id_len = 0;
4474 unsigned char *build_id_bits;
4475 GElf_Addr build_id_vaddr;
4476
4477 if ((build_id_len=dwfl_module_build_id(m,
4478 (const unsigned char **)&build_id_bits,
4479 &build_id_vaddr)) > 0)
4480 {
4481 // Enable workaround for elfutils dwfl bug.
4482 // see https://bugzilla.redhat.com/show_bug.cgi?id=465872
4483 // and http://sourceware.org/ml/systemtap/2008-q4/msg00579.html
4484 #ifdef _ELFUTILS_PREREQ
4485 #if _ELFUTILS_PREREQ(0,138)
4486 // Let's standardize to the buggy "end of build-id bits" behavior.
4487 build_id_vaddr += build_id_len;
4488 #endif
4489 #endif
4490 if (c->session.verbose > 1) {
4491 clog << "Found build-id in " << name
4492 << ", length " << build_id_len;
4493 clog << ", end at 0x" << hex << build_id_vaddr
4494 << dec << endl;
4495 }
4496 }
4497
4498 // Look up the relocation basis for symbols
4499 int n = dwfl_module_relocations (m);
4500
4501 dwfl_assert ("dwfl_module_relocations", n >= 0);
4502
4503
4504 // XXX: unfortunate duplication with tapsets.cxx:emit_address()
4505
4506 typedef map<Dwarf_Addr,const char*> addrmap_t; // NB: plain map, sorted by address
4507 vector<string> seclist; // encountered relocation bases (section names)
4508 map<unsigned, addrmap_t> addrmap; // per-relocation-base sorted addrmap
4509
4510 Dwarf_Addr extra_offset = 0;
4511
4512 for (int i = 1 /* XXX: why not 0? */ ; i < syments; ++i)
4513 {
4514 GElf_Sym sym;
4515 const char *name = dwfl_module_getsym(m, i, &sym, NULL);
4516 if (name)
4517 {
4518 // NB: Yey, we found the kernel's _stext value.
4519 // Sess.sym_stext may be unset (0) at this point, since
4520 // there may have been no kernel probes set. We could
4521 // use tapsets.cxx:lookup_symbol_address(), but then
4522 // we're already iterating over the same data here...
4523 if (modname == "kernel" && !strcmp(name, "_stext"))
4524 {
4525 int ki;
4526 extra_offset = sym.st_value;
4527 ki = dwfl_module_relocate_address (m, &extra_offset);
4528 dwfl_assert ("dwfl_module_relocate_address extra_offset",
4529 ki >= 0);
4530 if (c->session.verbose > 2)
4531 clog << "Found kernel _stext 0x" << hex << extra_offset << dec << endl;
4532 }
4533
4534 if (GELF_ST_TYPE (sym.st_info) == STT_FUNC &&
4535 sym.st_shndx != SHN_UNDEF)
4536 {
4537 Dwarf_Addr sym_addr = sym.st_value;
4538 const char *secname = NULL;
4539
4540 if (n > 0) // only try to relocate if there exist relocation bases
4541 {
4542 int ki = dwfl_module_relocate_address (m, &sym_addr);
4543 dwfl_assert ("dwfl_module_relocate_address", ki >= 0);
4544 secname = dwfl_module_relocation_info (m, ki, NULL);
4545 }
4546
4547 if (n == 1 && modname == "kernel")
4548 {
4549 // This is a symbol within a (possibly relocatable)
4550 // kernel image.
4551 secname = "_stext";
4552 // NB: don't subtract session.sym_stext, which could be inconveniently NULL.
4553 // Instead, sym_addr will get compensated later via extra_offset.
4554 }
4555 else if (n > 0)
4556 {
4557 assert (secname != NULL);
4558 // secname adequately set
4559
4560 // NB: it may be an empty string for ET_DYN objects
4561 // like shared libraries, as their relocation base
4562 // is implicit.
4563 if (secname[0] == '\0')
4564 secname = ".dynamic";
4565 }
4566 else
4567 {
4568 assert (n == 0);
4569 // sym_addr is absolute, as it must be since there are no relocation bases
4570 secname = ".absolute"; // sentinel
4571 }
4572
4573 // Compute our section number
4574 unsigned secidx;
4575 for (secidx=0; secidx<seclist.size(); secidx++)
4576 if (seclist[secidx]==secname) break;
4577
4578 if (secidx == seclist.size()) // new section name
4579 seclist.push_back (secname);
4580
4581 (addrmap[secidx])[sym_addr] = name;
4582 }
4583 }
4584 }
4585
4586 // Add unwind data to be included if it exists for this module.
4587 size_t len = 0;
4588 void *unwind = get_unwind_data (m, &len);
4589 if (unwind != NULL)
4590 {
4591 c->output << "#if defined(STP_USE_DWARF_UNWINDER) && defined(STP_NEED_UNWIND_DATA)" << endl;
4592 c->output << "static uint8_t _stp_module_" << stpmod_idx
4593 << "_unwind_data[] = " << endl;
4594 c->output << " {";
4595 for (size_t i = 0; i < len; i++)
4596 {
4597 int h = ((uint8_t *)unwind)[i];
4598 c->output << "0x" << hex << h << dec << ",";
4599 if ((i + 1) % 16 == 0)
4600 c->output << endl << " ";
4601 }
4602 c->output << "};" << endl;
4603 c->output << "#endif /* STP_USE_DWARF_UNWINDER && STP_NEED_UNWIND_DATA */" << endl;
4604 }
4605 else
4606 {
4607 // There would be only a small benefit to warning. A user
4608 // likely can't do anything about this; backtraces for the
4609 // affected module would just get all icky heuristicy.
4610 #if 0
4611 c->session.print_warning ("No unwind data for " + modname
4612 + ", " + dwfl_errmsg (-1));
4613 #endif
4614 }
4615
4616 for (unsigned secidx = 0; secidx < seclist.size(); secidx++)
4617 {
4618 c->output << "static struct _stp_symbol "
4619 << "_stp_module_" << stpmod_idx<< "_symbols_" << secidx << "[] = {" << endl;
4620
4621 // Only include symbols if they will be used
4622 c->output << "#ifdef STP_NEED_SYMBOL_DATA" << endl;
4623
4624 // We write out a *sorted* symbol table, so the runtime doesn't have to sort them later.
4625 for (addrmap_t::iterator it = addrmap[secidx].begin(); it != addrmap[secidx].end(); it++)
4626 {
4627 if (it->first < extra_offset)
4628 continue; // skip symbols that occur before our chosen base address
4629
4630 c->output << " { 0x" << hex << it->first-extra_offset << dec
4631 << ", " << lex_cast_qstring (it->second) << " }," << endl;
4632 }
4633
4634 c->output << "#endif /* STP_NEED_SYMBOL_DATA */" << endl;
4635
4636 c->output << "};" << endl;
4637 }
4638
4639 c->output << "static struct _stp_section _stp_module_" << stpmod_idx<< "_sections[] = {" << endl;
4640 for (unsigned secidx = 0; secidx < seclist.size(); secidx++)
4641 {
4642 c->output << "{" << endl
4643 << ".name = " << lex_cast_qstring(seclist[secidx]) << "," << endl
4644 << ".symbols = _stp_module_" << stpmod_idx << "_symbols_" << secidx << "," << endl
4645 << ".num_symbols = sizeof(_stp_module_" << stpmod_idx << "_symbols_" << secidx << ")/sizeof(struct _stp_symbol)" << endl
4646 << "}," << endl;
4647 }
4648 c->output << "};" << endl;
4649
4650 c->output << "static struct _stp_module _stp_module_" << stpmod_idx << " = {" << endl;
4651 c->output << ".name = " << lex_cast_qstring (modname) << ", " << endl;
4652 c->output << ".dwarf_module_base = 0x" << hex << base << dec << ", " << endl;
4653
4654 if (unwind != NULL)
4655 {
4656 c->output << "#if defined(STP_USE_DWARF_UNWINDER) && defined(STP_NEED_UNWIND_DATA)" << endl;
4657 c->output << ".unwind_data = "
4658 << "_stp_module_" << stpmod_idx << "_unwind_data, " << endl;
4659 c->output << ".unwind_data_len = " << len << ", " << endl;
4660 c->output << "#else" << endl;
4661 }
4662
4663 c->output << ".unwind_data = NULL, " << endl;
4664 c->output << ".unwind_data_len = 0, " << endl;
4665
4666 if (unwind != NULL)
4667 c->output << "#endif /* STP_USE_DWARF_UNWINDER && STP_NEED_UNWIND_DATA*/" << endl;
4668
4669 c->output << ".unwind_hdr = NULL, " << endl;
4670 c->output << ".unwind_hdr_len = 0, " << endl;
4671 c->output << ".unwind_is_ehframe = 0, " << endl;
4672
4673 c->output << ".sections = _stp_module_" << stpmod_idx << "_sections" << ", " << endl;
4674 c->output << ".num_sections = sizeof(_stp_module_" << stpmod_idx << "_sections)/"
4675 << "sizeof(struct _stp_section), " << endl;
4676
4677 if (build_id_len > 0) {
4678 c->output << ".build_id_bits = \"" ;
4679 for (int j=0; j<build_id_len;j++)
4680 c->output << "\\x" << hex
4681 << (unsigned short) *(build_id_bits+j) << dec;
4682
4683 c->output << "\", " << endl;
4684 c->output << ".build_id_len = " << build_id_len << ", " << endl;
4685
4686 /* XXX: kernel data boot-time relocation works differently from text.
4687 This hack disables relocation altogether, but that's not necessarily
4688 correct either. We may instead need a relocation basis different
4689 from _stext, such as __start_notes. */
4690 if (modname == "kernel")
4691 c->output << ".build_id_offset = 0x" << hex << build_id_vaddr
4692 << dec << ", " << endl;
4693 else
4694 c->output << ".build_id_offset = 0x" << hex
4695 << build_id_vaddr - base
4696 << dec << ", " << endl;
4697 } else
4698 c->output << ".build_id_len = 0, " << endl;
4699
4700 //initialize the note section representing unloaded
4701 c->output << ".notes_sect = 0," << endl;
4702
4703 c->output << "};" << endl << endl;
4704
4705 c->undone_unwindsym_modules.erase (modname);
4706
4707 return DWARF_CB_OK;
4708 }
4709
4710
4711 // Emit symbol table & unwind data, plus any calls needed to register
4712 // them with the runtime.
4713
4714 void
4715 emit_symbol_data (systemtap_session& s)
4716 {
4717 string symfile = "stap-symbols.h";
4718
4719 s.op->newline() << "#include " << lex_cast_qstring (symfile);
4720
4721 ofstream kallsyms_out ((s.tmpdir + "/" + symfile).c_str());
4722
4723 unwindsym_dump_context ctx = { s, kallsyms_out, 0, s.unwindsym_modules };
4724
4725 // XXX: copied from tapsets.cxx dwflpp::, sadly
4726 static const char *debuginfo_path_arr = "+:.debug:/usr/lib/debug:build";
4727 static const char *debuginfo_env_arr = getenv("SYSTEMTAP_DEBUGINFO_PATH");
4728 static const char *debuginfo_path = (debuginfo_env_arr ?: debuginfo_path_arr);
4729
4730 // ---- step 1: process any kernel modules listed
4731 static const Dwfl_Callbacks kernel_callbacks =
4732 {
4733 dwfl_linux_kernel_find_elf,
4734 dwfl_standard_find_debuginfo,
4735 dwfl_offline_section_address,
4736 (char **) & debuginfo_path
4737 };
4738
4739 Dwfl *dwfl = dwfl_begin (&kernel_callbacks);
4740 if (!dwfl)
4741 throw semantic_error ("cannot open dwfl");
4742 dwfl_report_begin (dwfl);
4743
4744 // We have a problem with -r REVISION vs -r BUILDDIR here. If
4745 // we're running against a fedora/rhel style kernel-debuginfo
4746 // tree, s.kernel_build_tree is not the place where the unstripped
4747 // vmlinux will be installed. Rather, it's over yonder at
4748 // /usr/lib/debug/lib/modules/$REVISION/. It seems that there is
4749 // no way to set the dwfl_callback.debuginfo_path and always
4750 // passs the plain kernel_release here. So instead we have to
4751 // hard-code this magic here.
4752 string elfutils_kernel_path;
4753 if (s.kernel_build_tree == string("/lib/modules/" + s.kernel_release + "/build"))
4754 elfutils_kernel_path = s.kernel_release;
4755 else
4756 elfutils_kernel_path = s.kernel_build_tree;
4757
4758 int rc = dwfl_linux_kernel_report_offline (dwfl,
4759 elfutils_kernel_path.c_str(),
4760 NULL /* XXX: filtering callback */);
4761 dwfl_report_end (dwfl, NULL, NULL);
4762 if (rc == 0) // tolerate missing data; will warn user about it anyway
4763 {
4764 ptrdiff_t off = 0;
4765 do
4766 {
4767 if (pending_interrupts) return;
4768 off = dwfl_getmodules (dwfl, &dump_unwindsyms, (void *) &ctx, 0);
4769 }
4770 while (off > 0);
4771 dwfl_assert("dwfl_getmodules", off == 0);
4772 }
4773 dwfl_end(dwfl);
4774
4775
4776 // ---- step 2: process any user modules (files) listed
4777 // XXX: see dwflpp::setup_user.
4778 static const Dwfl_Callbacks user_callbacks =
4779 {
4780 NULL, /* dwfl_linux_kernel_find_elf, */
4781 dwfl_standard_find_debuginfo,
4782 dwfl_offline_section_address,
4783 (char **) & debuginfo_path
4784 };
4785
4786 for (std::set<std::string>::iterator it = s.unwindsym_modules.begin();
4787 it != s.unwindsym_modules.end();
4788 it++)
4789 {
4790 string modname = *it;
4791 assert (modname.length() != 0);
4792 if (modname[0] != '/') continue; // user-space files must be full paths
4793 Dwfl *dwfl = dwfl_begin (&user_callbacks);
4794 if (!dwfl)
4795 throw semantic_error ("cannot create dwfl for " + modname);
4796
4797 dwfl_report_begin (dwfl);
4798 Dwfl_Module* mod = dwfl_report_offline (dwfl, modname.c_str(), modname.c_str(), -1);
4799 dwfl_report_end (dwfl, NULL, NULL);
4800 if (mod != 0) // tolerate missing data; will warn below
4801 {
4802 ptrdiff_t off = 0;
4803 do
4804 {
4805 if (pending_interrupts) return;
4806 off = dwfl_getmodules (dwfl, &dump_unwindsyms, (void *) &ctx, 0);
4807 }
4808 while (off > 0);
4809 dwfl_assert("dwfl_getmodules", off == 0);
4810 }
4811 dwfl_end(dwfl);
4812 }
4813
4814
4815 // Print out a definition of the runtime's _stp_modules[] globals.
4816 kallsyms_out << endl;
4817 kallsyms_out << "static struct _stp_module *_stp_modules [] = {" << endl;
4818 for (unsigned i=0; i<ctx.stp_module_index; i++)
4819 {
4820 kallsyms_out << "& _stp_module_" << i << "," << endl;
4821 }
4822 kallsyms_out << "};" << endl;
4823 kallsyms_out << "static unsigned _stp_num_modules = " << ctx.stp_module_index << ";" << endl;
4824
4825 // Some nonexistent modules may have been identified with "-d". Note them.
4826 for (set<string>::iterator it = ctx.undone_unwindsym_modules.begin();
4827 it != ctx.undone_unwindsym_modules.end();
4828 it ++)
4829 {
4830 s.print_warning ("missing unwind/symbol data for module '" + (*it) + "'");
4831 }
4832 }
4833
4834
4835 int
4836 translate_pass (systemtap_session& s)
4837 {
4838 int rc = 0;
4839
4840 s.op = new translator_output (s.translated_source);
4841 c_unparser cup (& s);
4842 s.up = & cup;
4843
4844 try
4845 {
4846 // This is at the very top of the file.
4847
4848 s.op->newline() << "#ifndef MAXNESTING";
4849 s.op->newline() << "#define MAXNESTING 10";
4850 s.op->newline() << "#endif";
4851 s.op->newline() << "#ifndef MAXSTRINGLEN";
4852 s.op->newline() << "#define MAXSTRINGLEN 128";
4853 s.op->newline() << "#endif";
4854 s.op->newline() << "#ifndef MAXACTION";
4855 s.op->newline() << "#define MAXACTION 1000";
4856 s.op->newline() << "#endif";
4857 s.op->newline() << "#ifndef MAXACTION_INTERRUPTIBLE";
4858 s.op->newline() << "#define MAXACTION_INTERRUPTIBLE (MAXACTION * 10)";
4859 s.op->newline() << "#endif";
4860 s.op->newline() << "#ifndef MAXTRYLOCK";
4861 s.op->newline() << "#define MAXTRYLOCK MAXACTION";
4862 s.op->newline() << "#endif";
4863 s.op->newline() << "#ifndef TRYLOCKDELAY";
4864 s.op->newline() << "#define TRYLOCKDELAY 100";
4865 s.op->newline() << "#endif";
4866 s.op->newline() << "#ifndef MAXMAPENTRIES";
4867 s.op->newline() << "#define MAXMAPENTRIES 2048";
4868 s.op->newline() << "#endif";
4869 s.op->newline() << "#ifndef MAXERRORS";
4870 s.op->newline() << "#define MAXERRORS 0";
4871 s.op->newline() << "#endif";
4872 s.op->newline() << "#ifndef MAXSKIPPED";
4873 s.op->newline() << "#define MAXSKIPPED 100";
4874 s.op->newline() << "#endif";
4875 s.op->newline() << "#ifndef MINSTACKSPACE";
4876 s.op->newline() << "#define MINSTACKSPACE 1024";
4877 s.op->newline() << "#endif";
4878
4879 // Overload processing
4880 s.op->newline() << "#ifndef STP_OVERLOAD_INTERVAL";
4881 s.op->newline() << "#define STP_OVERLOAD_INTERVAL 1000000000LL";
4882 s.op->newline() << "#endif";
4883 s.op->newline() << "#ifndef STP_OVERLOAD_THRESHOLD";
4884 s.op->newline() << "#define STP_OVERLOAD_THRESHOLD 500000000LL";
4885 s.op->newline() << "#endif";
4886 // We allow the user to completely turn overload processing off
4887 // (as opposed to tuning it by overriding the values above) by
4888 // running: stap -DSTP_NO_OVERLOAD {other options}
4889 s.op->newline() << "#ifndef STP_NO_OVERLOAD";
4890 s.op->newline() << "#define STP_OVERLOAD";
4891 s.op->newline() << "#endif";
4892
4893 if (s.bulk_mode)
4894 s.op->newline() << "#define STP_BULKMODE";
4895
4896 if (s.timing)
4897 s.op->newline() << "#define STP_TIMING";
4898
4899 if (s.perfmon)
4900 s.op->newline() << "#define STP_PERFMON";
4901
4902 s.op->newline() << "#include \"runtime.h\"";
4903 s.op->newline() << "#include \"regs.c\"";
4904 s.op->newline() << "#include \"stack.c\"";
4905 s.op->newline() << "#include \"regs-ia64.c\"";
4906 s.op->newline() << "#include \"stat.c\"";
4907 s.op->newline() << "#include <linux/string.h>";
4908 s.op->newline() << "#include <linux/timer.h>";
4909 s.op->newline() << "#include <linux/sched.h>";
4910 s.op->newline() << "#include <linux/delay.h>";
4911 s.op->newline() << "#include <linux/profile.h>";
4912 s.op->newline() << "#include <linux/random.h>";
4913 // s.op->newline() << "#include <linux/utsrelease.h>"; // newer kernels only
4914 s.op->newline() << "#include <linux/vermagic.h>";
4915 s.op->newline() << "#include <linux/utsname.h>";
4916 s.op->newline() << "#include <linux/version.h>";
4917 // s.op->newline() << "#include <linux/compile.h>";
4918 s.op->newline() << "#include \"loc2c-runtime.h\" ";
4919
4920 // XXX: old 2.6 kernel hack
4921 s.op->newline() << "#ifndef read_trylock";
4922 s.op->newline() << "#define read_trylock(x) ({ read_lock(x); 1; })";
4923 s.op->newline() << "#endif";
4924
4925 s.up->emit_common_header (); // context etc.
4926
4927 for (unsigned i=0; i<s.embeds.size(); i++)
4928 {
4929 s.op->newline() << s.embeds[i]->code << "\n";
4930 }
4931
4932 s.op->newline() << "static struct {";
4933 s.op->indent(1);
4934 for (unsigned i=0; i<s.globals.size(); i++)
4935 {
4936 s.up->emit_global (s.globals[i]);
4937 }
4938 s.op->newline(-1) << "} global = {";
4939 s.op->newline(1);
4940 for (unsigned i=0; i<s.globals.size(); i++)
4941 {
4942 if (pending_interrupts) return 1;
4943 s.up->emit_global_init (s.globals[i]);
4944 }
4945 s.op->newline(-1) << "};";
4946 s.op->assert_0_indent();
4947
4948 for (map<string,functiondecl*>::iterator it = s.functions.begin(); it != s.functions.end(); it++)
4949 {
4950 if (pending_interrupts) return 1;
4951 s.op->newline();
4952 s.up->emit_functionsig (it->second);
4953 }
4954 s.op->assert_0_indent();
4955
4956 for (map<string,functiondecl*>::iterator it = s.functions.begin(); it != s.functions.end(); it++)
4957 {
4958 if (pending_interrupts) return 1;
4959 s.op->newline();
4960 s.up->emit_function (it->second);
4961 }
4962 s.op->assert_0_indent();
4963
4964 // Run a varuse_collecting_visitor over probes that need global
4965 // variable locks. We'll use this information later in
4966 // emit_locks()/emit_unlocks().
4967 for (unsigned i=0; i<s.probes.size(); i++)
4968 {
4969 if (pending_interrupts) return 1;
4970 if (s.probes[i]->needs_global_locks())
4971 s.probes[i]->body->visit (&cup.vcv_needs_global_locks);
4972 }
4973 s.op->assert_0_indent();
4974
4975 for (unsigned i=0; i<s.probes.size(); i++)
4976 {
4977 if (pending_interrupts) return 1;
4978 s.up->emit_probe (s.probes[i]);
4979 }
4980 s.op->assert_0_indent();
4981
4982 s.op->newline();
4983 s.up->emit_module_init ();
4984 s.op->assert_0_indent();
4985 s.op->newline();
4986 s.up->emit_module_exit ();
4987 s.op->assert_0_indent();
4988 s.op->newline();
4989
4990 // XXX impedance mismatch
4991 s.op->newline() << "static int probe_start () {";
4992 s.op->newline(1) << "return systemtap_module_init () ? -1 : 0;";
4993 s.op->newline(-1) << "}";
4994 s.op->newline();
4995 s.op->newline() << "static void probe_exit () {";
4996 s.op->newline(1) << "systemtap_module_exit ();";
4997 s.op->newline(-1) << "}";
4998 s.op->assert_0_indent();
4999
5000 for (unsigned i=0; i<s.globals.size(); i++)
5001 {
5002 s.op->newline();
5003 s.up->emit_global_param (s.globals[i]);
5004 }
5005 s.op->assert_0_indent();
5006
5007 emit_symbol_data (s);
5008
5009 s.op->newline() << "MODULE_DESCRIPTION(\"systemtap-generated probe\");";
5010 s.op->newline() << "MODULE_LICENSE(\"GPL\");";
5011 s.op->assert_0_indent();
5012 }
5013 catch (const semantic_error& e)
5014 {
5015 s.print_error (e);
5016 }
5017
5018 s.op->line() << "\n";
5019
5020 delete s.op;
5021 s.op = 0;
5022 s.up = 0;
5023
5024 return rc + s.num_errors();
5025 }
5026
5027 /* vim: set sw=2 ts=8 cino=>4,n-2,{2,^-2,t0,(0,u0,w1,M1 : */
This page took 0.481326 seconds and 6 git commands to generate.