/******************************************************************** * AUTHORS: Vijay Ganesh, Trevor Hansen * * BEGIN DATE: November, 2005 * 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. ********************************************************************/ // to get the PRIu64 macro from inttypes, this needs to be defined. #include "stp/STPManager/STPManager.h" #include "stp/Printer/SMTLIBPrinter.h" #include "stp/Util/NodeIterator.h" #include #include namespace stp { using std::cout; using std::endl; ASTInterior* STPMgr::LookupOrCreateInterior(ASTInterior* n_ptr) { ASTInteriorSet::iterator it = _interior_unique_table.find(n_ptr); if (it == _interior_unique_table.end()) { // Make a new ASTInterior node We want (NOT alpha) always to // have alpha.nodenum + 1. if (n_ptr->GetKind() == NOT) { // The internal node can't be a NOT, because then we'd add // 1 to the NOT's node number, meaning we'd hit an even number, // which could duplicate the next newNodeNum(). assert(n_ptr->GetChildren()[0].GetKind() != NOT); } std::pair p = _interior_unique_table.insert(n_ptr); return *(p.first); } // Delete the temporary node, and return the found node. delete n_ptr; return *it; } ASTInterior* STPMgr::CreateInteriorNode(Kind /*kind*/, // children array of this // node will be modified. ASTInterior* n_ptr, const ASTVec& back_children) { // insert back_children at end of front_children ASTVec& front_children = n_ptr->_children; front_children.reserve(front_children.size() + back_children.size()); front_children.insert(front_children.end(), back_children.begin(), back_children.end()); // check for undefined nodes. ASTVec::const_iterator it_end = front_children.end(); for (ASTVec::const_iterator it = front_children.begin(); it != it_end; it++) { if (it->IsNull()) { FatalError("CreateInteriorNode:" "Undefined childnode in CreateInteriorNode: ", ASTUndefined); } } return LookupOrCreateInterior(n_ptr); } ostream& operator<<(ostream& os, const ASTNodeMap& nmap) { ASTNodeMap::const_iterator iend = nmap.end(); for (ASTNodeMap::const_iterator i = nmap.begin(); i != iend; i++) { os << "Key: " << i->first << endl; os << "Value: " << i->second << endl; } return os; } //////////////////////////////////////////////////////////////// // STPMgr member functions to create ASTSymbol and ASTBVConst //////////////////////////////////////////////////////////////// ASTNode STPMgr::LookupOrCreateSymbol(const char* const name) { ASTSymbol temp_sym(this, name); ASTNode n(LookupOrCreateSymbol(temp_sym)); return n; } // FIXME: _name is now a constant field, and this assigns to it // because it tries not to copy the string unless it needs to. How // do I avoid copying children in ASTInterior? Perhaps I don't! // Note: There seems to be a limitation of std::unordered_set, in that insert // returns a const iterator to the value. That prevents us from // modifying the name (in a hash-preserving way) after the symbol is // inserted. FIXME: Is there a way to do this with insert? Need a // function to make a new object in the middle of insert. Read STL // documentation. ASTSymbol* STPMgr::LookupOrCreateSymbol(ASTSymbol& s) { ASTSymbol* s_ptr = &s; // it's a temporary key. //_symbol_unique_table.insert(s_ptr); // return s_ptr; // Do an explicit lookup to see if we need to create a copy of the // string. ASTSymbolSet::const_iterator it = _symbol_unique_table.find(s_ptr); if (it == _symbol_unique_table.end()) { // Make a new ASTSymbol with duplicated string (can't assign // _name because it's const). Can cast the iterator to // non-const -- carefully. // std::string strname(s_ptr->GetName()); ASTSymbol* s_ptr1 = new ASTSymbol(this, strdup(s_ptr->GetName())); s_ptr1->_value_width = s_ptr->_value_width; std::pair p = _symbol_unique_table.insert(s_ptr1); return *p.first; } else { // return symbol found in table. return *it; } } bool STPMgr::LookupSymbol(ASTSymbol& s) { ASTSymbol* s_ptr = &s; // it's a temporary key. if (_symbol_unique_table.find(s_ptr) == _symbol_unique_table.end()) return false; else return true; } bool STPMgr::LookupSymbol(const char* const name) { ASTSymbol s(this, name); ASTSymbol* s_ptr = &s; // it's a temporary key. if (_symbol_unique_table.find(s_ptr) == _symbol_unique_table.end()) return false; else return true; } bool STPMgr::LookupSymbol(const char* const name, ASTNode& output) { ASTSymbol temp_sym(this, name); ASTSymbolSet::const_iterator it = _symbol_unique_table.find(&temp_sym); if (it != _symbol_unique_table.end()) { output = ASTNode(*it); return true; } return false; } // Create a ASTBVConst node ASTNode STPMgr::CreateBVConst(unsigned int width, unsigned long long int bvconst) { if (width > (sizeof(unsigned long long int) * 8) || width <= 0) FatalError("CreateBVConst: " "trying to create bvconst using " "unsigned long long of width: ", ASTUndefined, width); // We create a single bvconst that gets reused. if (NULL == CreateBVConstVal) CreateBVConstVal = CONSTANTBV::BitVector_Create(65, true); CreateBVConstVal = CONSTANTBV::BitVector_Resize(CreateBVConstVal, width); CONSTANTBV::BitVector_Empty(CreateBVConstVal); unsigned long c_val = (~((unsigned long)0)) & bvconst; unsigned int copied = 0; // sizeof(unsigned long) returns the number of bytes in unsigned // long. In order to convert it to bits, we need to shift left by // 3. Hence, sizeof(unsigned long)*8 // The algo below works as follows: It starts by copying the // lower-order bits of the input "bvconst" in chunks of size = // number of bits in unsigned long. The variable "copied" keeps // track of the number of chunks copied so far const int shift_amount = sizeof(unsigned long) * 8; while (copied + shift_amount < width) { CONSTANTBV::BitVector_Chunk_Store(CreateBVConstVal, shift_amount, copied, c_val); if (shift_amount < (sizeof(bvconst) * 8)) { bvconst >>= shift_amount; } else { bvconst = 0; } c_val = (~((unsigned long)0)) & bvconst; copied += shift_amount; } CONSTANTBV::BitVector_Chunk_Store(CreateBVConstVal, width - copied, copied, c_val); ASTBVConst temp_bvconst(this, CreateBVConstVal, width, true); return ASTNode(LookupOrCreateBVConst(temp_bvconst)); } ASTNode STPMgr::charToASTNode(unsigned char* strval, int base, int bit_width) { if (base != 2 && base != 10 && base != 16) { FatalError("Base must be 2, 10, or 16"); } assert((2 == base || 10 == base || 16 == base)); if (bit_width <= 0) { FatalError("Bit width of constant must be greater than 0"); } assert(bit_width > 0); // We create a single bvconst that gets reused. if (NULL == CreateBVConstVal) CreateBVConstVal = CONSTANTBV::BitVector_Create(65, true); CreateBVConstVal = CONSTANTBV::BitVector_Resize(CreateBVConstVal, bit_width); CONSTANTBV::BitVector_Empty(CreateBVConstVal); CONSTANTBV::ErrCode e; if (2 == base) { e = CONSTANTBV::BitVector_from_Bin(CreateBVConstVal, strval); } else if (10 == base) { e = CONSTANTBV::BitVector_from_Dec(CreateBVConstVal, strval); } else // (16 == base) { e = CONSTANTBV::BitVector_from_Hex(CreateBVConstVal, strval); } if (0 != e) { std::cerr << "CreateBVConst: " << BitVector_Error(e); FatalError("", ASTUndefined); } ASTBVConst temp_bvconst(this, CreateBVConstVal, bit_width, true); ASTNode n(LookupOrCreateBVConst(temp_bvconst)); return n; } ASTNode STPMgr::CreateBVConst(string strval, int base, int bit_width) { if (bit_width <= 0) { FatalError("Bit width of constant must be greater than 0"); } assert(bit_width > 0); return charToASTNode((unsigned char*)strval.c_str(), base, bit_width); } // Create a ASTBVConst node from a char* ASTNode STPMgr::CreateBVConst(const char* const strval, int base) { assert((2 == base || 10 == base || 16 == base)); size_t width = strlen((const char*)strval); // FIXME Tim: Earlier versions of the code assume that the length of // binary strings is 32 bits. if (10 == base) width = 32; if (16 == base) width = width * 4; return charToASTNode((unsigned char*)strval, base, width); } // NB Assumes that it will destroy the bitvector passed to it ASTNode STPMgr::CreateBVConst(CBV bv, unsigned width) { ASTBVConst temp_bvconst(this, bv, width, true); ASTNode n(LookupOrCreateBVConst(temp_bvconst)); CONSTANTBV::BitVector_Destroy(bv); return n; } ASTNode STPMgr::CreateZeroConst(unsigned width) { assert(width > 0); if (zeroes.size() == 0) { zeroes.push_back(ASTNode()); // null for (int i = 1; i < 65; i++) zeroes.push_back(CreateZeroConst(i)); } if (width < zeroes.size()) return zeroes[width]; else { CBV z = CONSTANTBV::BitVector_Create(width, true); return CreateBVConst(z, width); } } ASTNode STPMgr::CreateOneConst(unsigned width) { assert(width > 0); if (ones.size() == 0) { ones.push_back(ASTNode()); // null for (int i = 1; i < 65; i++) ones.push_back(CreateOneConst(i)); } if (width < ones.size()) return ones[width]; else { CBV o = CONSTANTBV::BitVector_Create(width, true); CONSTANTBV::BitVector_increment(o); return CreateBVConst(o, width); } } ASTNode STPMgr::CreateTwoConst(unsigned width) { CBV two = CONSTANTBV::BitVector_Create(width, true); CONSTANTBV::BitVector_increment(two); CONSTANTBV::BitVector_increment(two); return CreateBVConst(two, width); } ASTNode STPMgr::CreateMaxConst(unsigned width) { assert(width > 0); if (max.size() == 0) { max.push_back(ASTNode()); // null for (int i = 1; i < 65; i++) max.push_back(CreateMaxConst(i)); } if (width < max.size()) return max[width]; else { CBV max = CONSTANTBV::BitVector_Create(width, false); CONSTANTBV::BitVector_Fill(max); return CreateBVConst(max, width); } } // To ensure unique BVConst nodes, lookup the node in unique-table // before creating a new one. ASTBVConst* STPMgr::LookupOrCreateBVConst(ASTBVConst& s) { ASTBVConst* s_ptr = &s; // it's a temporary key. // Do an explicit lookup to see if we need to create a copy of the string. ASTBVConstSet::const_iterator it; if ((it = _bvconst_unique_table.find(s_ptr)) == _bvconst_unique_table.end()) { // Make a new ASTBVConst with duplicated constant. ASTBVConst* s_copy = new ASTBVConst(s); std::pair p = _bvconst_unique_table.insert(s_copy); return *p.first; } else { // return constant found in table. return *it; } } //////////////////////////////////////////////////////////////// // // IO manipulators for Lisp format printing of AST. // //////////////////////////////////////////////////////////////// // FIXME: Additional controls // * Print node numbers (addresses/nums) // * Printlength limit // * Printdepth limit /** Print a vector of ASTNodes in lisp format */ ostream& LispPrintVec(ostream& os, const ASTVec& v, int indentation = 0) { printer::Lisp_AlreadyPrintedSet.clear(); // Print the children ASTVec::const_iterator iend = v.end(); for (ASTVec::const_iterator i = v.begin(); i != iend; i++) { i->LispPrint_indent(os, indentation); } return os; } // add an assertion to the current logical context void STPMgr::AddAssert(const ASTNode& assert) { if (!(is_Form_kind(assert.GetKind()) && BOOLEAN_TYPE == assert.GetType())) { FatalError("AddAssert:Trying to assert a non-formula:", assert); } if (_asserts.empty()) _asserts.push_back(new ASTVec()); ASTVec& v = *_asserts.back(); v.push_back(assert); } void STPMgr::Push(void) { _asserts.push_back(new ASTVec()); } void STPMgr::Pop(void) { if (_asserts.empty()) FatalError("POP on empty."); ASTVec* c = _asserts.back(); delete c; _asserts.pop_back(); } //BUG this is most probably wrongly handled. It gets propagated and messed up //with the state. On the next query, this mixed state then causes trouble void STPMgr::SetQuery(const ASTNode& q) { _current_query = q; } const ASTNode STPMgr::GetQuery() { return _current_query; } // return a vector of the levels. // before returning any vector with >1 nodes is turned into a conjunct. const ASTVec STPMgr::getVectorOfAsserts() { vector::iterator it = _asserts.begin(); vector::iterator itend = _asserts.end(); ASTVec result; for (; it != itend; it++) { ASTVec& a = (**it); if (a.size() == 0) a.push_back(ASTTrue); else if (a.size() > 1) { ASTNode conjunct = defaultNodeFactory->CreateNode(AND, a); a.resize(0); a.push_back(conjunct); } result.push_back(a[0]); } return result; } const ASTVec STPMgr::GetAsserts(void) { vector::iterator it = _asserts.begin(); vector::iterator itend = _asserts.end(); ASTVec v; for (; it != itend; it++) { if (!(*it)->empty()) v.insert(v.end(), (*it)->begin(), (*it)->end()); } return v; } // prints statistics for the ASTNode void STPMgr::ASTNodeStats(const char* c, const ASTNode& a) { if (!UserFlags.stats_flag) return; cout << "[" << GetRunTimes()->getDifference() << "]" << c; if (UserFlags.print_nodes_flag) cout << a << endl; cout << "Node size is: " << NodeSize(a) << endl; } unsigned int STPMgr::NodeSize(const ASTNode& a) { unsigned int result = 0; NodeIterator ni(a, ASTUndefined, *this); ASTNode current; while ((current = ni.next()) != ni.end()) { result++; } return result; } bool STPMgr::VarSeenInTerm(const ASTNode& var, const ASTNode& term) { if (READ == term.GetKind() && WRITE == term[0].GetKind() /*&& !GetRemoveWritesFlag()*/) { return false; } if (READ == term.GetKind() && WRITE == term[0].GetKind() /*&& GetRemoveWritesFlag()*/) { return true; } ASTNodeMap::iterator it; if ((it = TermsAlreadySeenMap.find(term)) != TermsAlreadySeenMap.end()) { if (it->second == var) { return false; } } if (var == term) { return true; } for (ASTVec::const_iterator it = term.begin(), itend = term.end(); it != itend; it++) { if (VarSeenInTerm(var, *it)) { return true; } else { TermsAlreadySeenMap[*it] = var; } } TermsAlreadySeenMap[term] = var; return false; } ASTNode STPMgr::NewParameterized_BooleanVar(const ASTNode& var, const ASTNode& constant) { std::ostringstream outVar; std::ostringstream outNum; // Get the name of Boolean Var var.PL_Print(outVar, this); constant.PL_Print(outNum, this); std::string str(outVar.str()); str += "("; str += outNum.str(); str += ")"; ASTNode CurrentSymbol = CreateSymbol(str.c_str(), 0, 0); return CurrentSymbol; } // If ASTNode remain with references (somewhere), this will segfault. STPMgr::~STPMgr() { ClearAllTables(); printer::NodeLetVarMap.clear(); printer::NodeLetVarVec.clear(); printer::NodeLetVarMap1.clear(); printer::Lisp_AlreadyPrintedSet.clear(); delete runTimes; runTimes = NULL; ASTFalse = ASTNode(0); ASTTrue = ASTNode(0); ASTUndefined = ASTNode(0); _current_query = ASTNode(0); // dummy_node = ASTNode(0); zeroes.clear(); ones.clear(); max.clear(); if (NULL != CreateBVConstVal) CONSTANTBV::BitVector_Destroy(CreateBVConstVal); Introduced_SymbolsSet.clear(); _symbol_unique_table.clear(); _bvconst_unique_table.clear(); vector::iterator it = _asserts.begin(); vector::iterator itend = _asserts.end(); for (; it != itend; it++) { ASTVec* j = (*it); j->clear(); delete j; } _asserts.clear(); delete hashingNodeFactory; _interior_unique_table.clear(); } } // end namespace beev