Get rid of all dynamic_cast<>s while working on LTL formulae.

They are too slow.

* src/ltlast/formula.hh (opkind, kind, kind_): Use an enum
to indicate the actual kind of the formula.  This way we can
check the kind of a formula without relying on dynamic_cast.
* src/ltlast/atomic_prop.cc, src/ltlast/automatop.cc,
src/ltlast/binop.cc, src/ltlast/bunop.cc, src/ltlast/constant.cc,
src/ltlast/multop.cc, src/ltlast/refformula.cc,
src/ltlast/refformula.hh, src/ltlast/unop.cc: Adjust constructors.
* src/ltlvisit/basicreduce.cc, src/ltlvisit/mark.cc,
src/ltlvisit/reduce.cc, src/ltlvisit/syntimpl.cc,
src/ltlvisit/tostring.cc: Replace all dynamic_cast by a
call to kind() followed by a static_cast.
This commit is contained in:
Alexandre Duret-Lutz 2010-12-09 13:19:44 +01:00
parent 48cde88b9b
commit 957ba664b7
15 changed files with 743 additions and 609 deletions

View file

@ -32,7 +32,7 @@ namespace spot
{
atomic_prop::atomic_prop(const std::string& name, environment& env)
: name_(name), env_(&env)
: ref_formula(AtomicProp), name_(name), env_(&env)
{
is.boolean = true;
is.sugar_free_boolean = true;

View file

@ -28,7 +28,7 @@ namespace spot
namespace ltl
{
automatop::automatop(const nfa::ptr nfa, vec* v, bool negated)
: nfa_(nfa), children_(v), negated_(negated)
: ref_formula(AutomatOp), nfa_(nfa), children_(v), negated_(negated)
{
is.boolean = false;
is.sugar_free_boolean = true;

View file

@ -34,7 +34,7 @@ namespace spot
namespace ltl
{
binop::binop(type op, formula* first, formula* second)
: op_(op), first_(first), second_(second)
: ref_formula(BinOp), op_(op), first_(first), second_(second)
{
// Beware: (f U g) is purely eventual if both operands
// are purely eventual, unlike in the proceedings of

View file

@ -31,7 +31,7 @@ namespace spot
namespace ltl
{
bunop::bunop(type op, formula* child, unsigned min, unsigned max)
: op_(op), child_(child), min_(min), max_(max)
: ref_formula(BUnOp), op_(op), child_(child), min_(min), max_(max)
{
props = child->get_props();
@ -314,9 +314,9 @@ namespace spot
// - Exp[*i..j][*min..max] = Exp[*i(min)..j(max)]
// if i*(min+1)<=j(min)+1.
bunop* s = dynamic_cast<bunop*>(child);
if (s)
if (child->kind() == BUnOp)
{
bunop* s = static_cast<bunop*>(child);
unsigned i = s->min();
unsigned j = s->max();

View file

@ -34,7 +34,7 @@ namespace spot
constant constant::empty_word_instance_(constant::EmptyWord);
constant::constant(type val)
: val_(val)
: formula(Constant), val_(val)
{
switch (val)
{

View file

@ -71,11 +71,20 @@ namespace spot
class formula
{
public:
formula() : count_(max_count++)
/// Kind of a sub-formula
enum opkind { Constant,
AtomicProp,
UnOp,
BinOp,
MultOp,
BUnOp,
AutomatOp };
formula(opkind k) : count_(max_count++), kind_(k)
{
// If the counter of formulae ever loops, we want to skip the
// first three values, because they are permanently associated
// to constants, and its convenient to have constants smaller
// to constants, and it is convenient to have constants smaller
// than all other formulae.
if (max_count == 0)
max_count = 3;
@ -100,6 +109,12 @@ namespace spot
/// Return a canonic representation of the formula
virtual std::string dump() const = 0;
/// Return the kind of the top-level operator.
opkind kind() const
{
return kind_;
}
////////////////
// Properties //
////////////////
@ -279,6 +294,7 @@ namespace spot
private:
/// \brief Number of formulae created so far.
static size_t max_count;
opkind kind_;
};
/// \brief Strict Weak Ordering for <code>const formula*</code>.

View file

@ -34,7 +34,7 @@ namespace spot
namespace ltl
{
multop::multop(type op, vec* v)
: op_(op), children_(v)
: ref_formula(MultOp), op_(op), children_(v)
{
unsigned s = v->size();
assert(s > 1);
@ -177,26 +177,27 @@ namespace spot
vec::iterator i = v->begin();
while (i != v->end())
{
multop* p = dynamic_cast<multop*>(*i);
if (p && p->op() == op)
if ((*i)->kind() == MultOp)
{
unsigned ps = p->size();
for (unsigned n = 0; n < ps; ++n)
inlined.push_back(p->nth(n)->clone());
(*i)->destroy();
i = v->erase(i);
}
else
{
// All operator except "Concat" and "Fusion" are
// commutative, so we just keep a list of the inlined
// arguments that should later be added to the vector.
// For concat we have to keep track of the order of
// all the arguments.
if (op == Concat || op == Fusion)
inlined.push_back(*i);
++i;
multop* p = static_cast<multop*>(*i);
if (p->op() == op)
{
unsigned ps = p->size();
for (unsigned n = 0; n < ps; ++n)
inlined.push_back(p->nth(n)->clone());
(*i)->destroy();
i = v->erase(i);
continue;
}
}
// All operator except "Concat" and "Fusion" are
// commutative, so we just keep a list of the inlined
// arguments that should later be added to the vector.
// For concat we have to keep track of the order of
// all the arguments.
if (op == Concat || op == Fusion)
inlined.push_back(*i);
++i;
}
if (op == Concat || op == Fusion)
*v = inlined;

View file

@ -1,3 +1,5 @@
// Copyright (C) 2010 Laboratoire de Recherche de Developpement de
// l'EPITA (LRDE).
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie.
@ -26,8 +28,8 @@ namespace spot
{
namespace ltl
{
ref_formula::ref_formula()
: ref_counter_(0)
ref_formula::ref_formula(opkind k)
: formula(k), ref_counter_(0)
{
}

View file

@ -1,6 +1,8 @@
// Copyright (C) 2003, 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie.
// Copyright (C) 2010 Laboratoire de Recherche de Developpement de
// l'EPITA (LRDE).
// Copyright (C) 2003, 2004, 2005 Laboratoire d'Informatique de Paris
// 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
// Université Pierre et Marie Curie.
//
// This file is part of Spot, a model checking library.
//
@ -37,7 +39,7 @@ namespace spot
{
protected:
virtual ~ref_formula();
ref_formula();
ref_formula(opkind k);
void ref_();
bool unref_();
/// Number of references to this formula.

View file

@ -33,13 +33,13 @@ namespace spot
namespace ltl
{
unop::unop(type op, formula* child)
: op_(op), child_(child)
: ref_formula(UnOp), op_(op), child_(child)
{
props = child->get_props();
switch (op)
{
case Not:
is.in_nenoform = !!dynamic_cast<atomic_prop*>(child);
is.in_nenoform = (child->kind() == AtomicProp);
is.accepting_eword = false;
break;
case X:
@ -163,10 +163,13 @@ namespace spot
case F:
case G:
{
// F and G are idempotent.
unop* u = dynamic_cast<unop*>(child);
if (u && u->op() == op)
return u;
if (child->kind() == UnOp)
{
// F and G are idempotent.
unop* u = static_cast<unop*>(child);
if (u->op() == op)
return u;
}
// F(0) = G(0) = 0
// F(1) = G(1) = 1
@ -191,9 +194,9 @@ namespace spot
return bunop::instance(bunop::Star,
constant::true_instance(), 1);
unop* u = dynamic_cast<unop*>(child);
if (u)
if (child->kind() == UnOp)
{
unop* u = static_cast<unop*>(child);
// "Not" is an involution.
if (u->op() == op)
{