summaryrefslogtreecommitdiffstats
path: root/parse.cxx
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-08-03 14:45:21 -0700
committerJosh Stone <jistone@redhat.com>2009-08-03 15:14:21 -0700
commit6fda2dff51c667a8c73545dd397b844108715310 (patch)
treeb0a6be2e84f7a9ce8b0f72a3e9b4f2c329ac9ba2 /parse.cxx
parentdc5a09fc9a61c8b33078164b6855dea54a33627c (diff)
downloadsystemtap-steved-6fda2dff51c667a8c73545dd397b844108715310.tar.gz
systemtap-steved-6fda2dff51c667a8c73545dd397b844108715310.tar.xz
systemtap-steved-6fda2dff51c667a8c73545dd397b844108715310.zip
PR2049: support arbitrary $target-array indexing
Rather than just numeric literals, we can now support arbitrary expressions for the index value. Note that loc2c won't allow this for noncontiguous arrays, as the access methods need to be statically computed, but for contiguous arrays and pointers-as-arrays it works just fine. * staptree.h (target_symbol::component): Add expression_array_index. * staptree.cxx (target_symbol::visit_components): New helper. (target_symbol::assert_no_components): Recognize new array type. (target_symbol::component::print): Print subexpressions. (traversing_visitor::visit_target_symbol, visit_cast_op): Visit the indexing components too. (varuse_collecting_visitor::visit_target_symbol): Ditto. (update_visitor::visit_target_symbol, visit_cast_op): Ditto. * elaborate.cxx (void_statement_reducer::visit_target_symbol): New. (void_statement_reducer::visit_cast_op): Save indexes too. * parse.cxx (parser::parse_target_symbol_components): Parse expressions. * tapsets.cxx (dwarf_var_expanding_visitor::visit_target_symbol): Pass expression-indexes as parameters (indexN) to the dwarf function. (dwarf_cast_expanding_visitor::visit_cast_op): Ditto. (tracepoint_var_expanding_visitor::visit_target_symbol_arg): Ditto. (sdt_var_expanding_visitor::visit_target_symbol): Visit the new @cast. * dwflpp.cxx (dwflpp::translate_components): Use THIS->indexN. * translate.cxx (c_unparser::visit_target_symbol): Correct error msg. * testsuite/systemtap.base/pointer_array.stp: Use a simple index.
Diffstat (limited to 'parse.cxx')
-rw-r--r--parse.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/parse.cxx b/parse.cxx
index 9d4a06a6..41a13ca5 100644
--- a/parse.cxx
+++ b/parse.cxx
@@ -2581,9 +2581,12 @@ parser::parse_target_symbol_components (target_symbol* e)
else if (peek_op ("["))
{
const token* t = next();
- int64_t index;
- expect_number (index);
- e->components.push_back (target_symbol::component(t, index));
+ expression* index = parse_expression();
+ literal_number* ln = dynamic_cast<literal_number*>(index);
+ if (ln)
+ e->components.push_back (target_symbol::component(t, ln->value));
+ else
+ e->components.push_back (target_symbol::component(t, index));
expect_op ("]");
}
else