blob: 9fa2ee7bf5b682b6a724ae889c61fb5499d37eec [file] [log] [blame]
/********************************************************************
* AUTHORS: Trevor Hansen
*
* BEGIN DATE: Mar, 2012
*
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
********************************************************************/
#ifndef REWRITERULE_H
#define REWRITERULE_H
#include "misc.h"
#include "stp/STPManager/STPManager.h"
#include <signal.h>
#include <sys/time.h>
using std::endl;
using std::cout;
using std::cerr;
extern ASTNode v, v0, w, w0;
extern NodeFactory* nf;
extern stp::STPMgr* mgr;
bool orderEquivalence(ASTNode& from, ASTNode& to);
class Rewrite_rule
{
ASTNode from;
ASTNode to;
ASTNode n;
int time_to_verify;
int verified_to_bits;
// Only used to build the NULL rule
Rewrite_rule()
{
from = mgr->CreateZeroConst(1);
to = mgr->CreateZeroConst(1);
n = mgr->ASTTrue;
time_to_verify = 0;
verified_to_bits = 0;
}
public:
static Rewrite_rule getNullRule() { return Rewrite_rule(); }
void writeOut(ostream& outputFileSMT2) const
{
outputFileSMT2 << ";id:0"
<< "\tverified_to:" << verified_to_bits
<< "\ttime:" << getTime() << "\tfrom_difficulty:"
<< getDifficulty(/*getFrom()*/ mgr->CreateBVConst(32, 0))
<< "\tto_difficulty:"
<< getDifficulty(/*getTo()*/ mgr->CreateBVConst(32, 0))
<< "\n";
outputFileSMT2 << "(push 1)" << endl;
printer::SMTLIB2_PrintBack(outputFileSMT2, getN(), mgr, true);
outputFileSMT2 << "(exit)" << endl;
}
// If we've verified it to bigger than before. Then store the bit / time.
void setVerified(int bits_, int time_)
{
if (bits_ >= verified_to_bits)
{
verified_to_bits = bits_;
time_to_verify = time_;
}
}
int getVerifiedToBits() const { return verified_to_bits; }
const ASTNode& getFrom() const { return from; }
const ASTNode& getTo() const { return to; }
int getTime() const { return time_to_verify; }
ASTNode getN() const { return n; }
bool operator==(const Rewrite_rule& t) const { return (n == t.n); }
// The "from" and "to" should be ordered with the orderEquivalence function.
Rewrite_rule(stp::STPMgr* bm, const stp::ASTNode& from_,
const stp::ASTNode& to_, const int t, int _id = -1)
: from(from_), to(to_)
{
#if 0
if (_id ==-1)
id = static_id++;
else
{
id =_id; // relied on to be unique. So be careful.
static_id =id+1;// assuming we are loading them all up..
}
#endif
verified_to_bits = 0;
time_to_verify = t;
ASTVec c;
c.push_back(to_);
c.push_back(from_);
n = bm->hashingNodeFactory->CreateNode(stp::EQ, c);
assert(orderEquivalence(from, to));
assert(from == from_);
assert(to == to_);
assert(BVTypeCheckRecursive(n));
assert(!n.isConstant());
}
bool operator<(const Rewrite_rule& t) const { return (n < t.n); }
// Tests for the timeout amount of time. FALSE if a bad instance was found.
// Otherwise true.
bool timedCheck(int timeout_ms, VariableAssignment& bad)
{
mgr->soft_timeout_expired = false;
const long st = stp::getCurrentTime();
int checked_to = 0;
// Start it verifying where we left off..
for (int new_bitwidth = std::max(bits, getVerifiedToBits() + 1);
new_bitwidth < 1024; new_bitwidth++)
{
// cout << i << " ";
ASTVec children;
children.push_back(from);
children.push_back(to);
const ASTNode n = mgr->hashingNodeFactory->CreateNode(stp::EQ, children);
const ASTNode& widened = widen(n, new_bitwidth);
if (widened == mgr->ASTUndefined)
{
cout << "cannot widen";
cerr << from << to;
}
bool result = isConstant(widened, bad, new_bitwidth, timeout_ms);
if (!result && !mgr->soft_timeout_expired)
{
// not a constant, and not timed out!
cerr << "FAILED:" << endl << new_bitwidth << from << to;
writeOut(cerr);
// The timer might not have expired yet.
setitimer(ITIMER_VIRTUAL, NULL, NULL);
mgr->soft_timeout_expired = false;
return false;
}
if (mgr->soft_timeout_expired)
break;
checked_to = new_bitwidth;
}
if (getVerifiedToBits() <= checked_to)
setVerified(checked_to, getTime() + (stp::getCurrentTime() - st));
// The timer might not have expired yet.
setitimer(ITIMER_VIRTUAL, NULL, NULL);
mgr->soft_timeout_expired = false;
return true;
}
};
#endif