[DynInst_API:] Results of dyninst static code check


Date: Mon, 09 Jul 2012 12:53:44 -0400
From: William Cohen <wcohen@xxxxxxxxxx>
Subject: [DynInst_API:] Results of dyninst static code check
Hi All,

At Red Hat we have access to the Coverity static analysis tools.  This weekend I ran Coverity on the dyninst srpm available from:

http://koji.fedoraproject.org/koji/buildinfo?buildID=328273

Attached are the results.  Some of the errors are false positives. Below is a breakdown of the results by type annotated with the relative importance of the various errors (based on https://wiki.edubuntu.org/CoverityCheckerDictionary):

$ grep ^Error dyninst-7.99-0.17.fc18.err |sort|uniq -c
     18 Error: CHECKED_RETURN:			 medium
     10 Error: CTOR_DTOR_LEAK:			 high
     11 Error: DEADCODE:			 medium
      2 Error: DELETE_ARRAY:			 medium
     73 Error: FORWARD_NULL:			 high
      1 Error: INVALIDATE_ITERATOR:		 high
     21 Error: MISSING_BREAK:			 medium
      2 Error: NEGATIVE_RETURNS:		 medium
      1 Error: NO_EFFECT:			 medium
     30 Error: NULL_RETURNS:			 high
      2 Error: OVERRUN_DYNAMIC:			 high
      9 Error: OVERRUN_STATIC:			 high
    146 Error: RESOURCE_LEAK:			 high
      8 Error: REVERSE_INULL:			 high
      5 Error: SIGN_EXTENSION:			 medium
      4 Error: SIZEOF_MISMATCH:			 medium
      8 Error: STREAM_FORMAT_STATE:		 medium
     29 Error: UNINIT:				 high
    201 Error: UNINIT_CTOR:			 medium
     11 Error: UNREACHABLE:			 medium
     71 Error: UNUSED_VALUE:			 low
      8 Error: USE_AFTER_FREE:			 high
      1 Error: WRAPPER_ESCAPE:			 high


Looking through the MISSING_BREAK errors some are definitely false positives. However, there are a few that look legit:


/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/ParserDetails.C:63: unterminated_case: This case (value 0) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Expression.C:59: unterminated_case: This case (value 10) is not terminated by a 'break' statement.


A number of the UNUSED_VALUE errors look harmless and are due to code like the following from dataflowAPI/src/debug_dataflow.C:

  char *p;

  if ((p=getenv("DATAFLOW_DEBUG_STACKANALYSIS"))) {
    fprintf(stderr, "Enabling DataflowAPI stack analysis debugging\n");
    df_debug_stackanalysis = 1;
  }

It looks like it would be fairly straight forward to remove the "char *p;" declarations and the "p=" assignments in the code to eliminate those errors.

There should be a null check for:

/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux.C:427: dereference: Dereferencing a pointer that might be null "getenv("LD_LIBRARY_PATH")" when calling "strdup". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

A number of the NULL_RETURNS errors are because strdup() can return NULL, but the code does not check that condition.


Is the code flagged by the following error correct?

Error: OVERRUN_DYNAMIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5160: alloc_strlen: Allocating insufficient memory for the terminating null of the string.


The OVERRUN_STATIC errors for InstructionDecoder-x86.C should be examined more closely. 


-Will
Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5820: example_assign: Assigning: "result" = return value from "rpcMgr()->postRPCToProc(proc, int_iRPC::ptr(rpc))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5822: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1387: example_assign: Assigning: "result" = return value from "rpcMgr()->postRPCToProc(proc, int_iRPC::ptr(rpc))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1388: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5894: example_assign: Assigning: "result" = return value from "rpcMgr()->postRPCToProc(proc, int_iRPC::ptr(rpc))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5895: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1899: example_assign: Assigning: "bresult" = return value from "rpcMgr()->postRPCToProc(proc, int_iRPC::ptr(local_rpc->llrpc()->rpc))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1900: example_checked: "bresult" has its value checked in "bresult".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1874: example_assign: Assigning: "bresult" = return value from "rpcMgr()->postRPCToProc(proc, int_iRPC::ptr(local_rpc->llrpc()->rpc))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1875: example_checked: "bresult" has its value checked in "bresult".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1480: check_return: Calling function "iRPCMgr::postRPCToProc(int_process *, boost::shared_ptr<int_iRPC>)" without checking return value (as is done elsewhere 6 out of 7 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1480: unchecked_value: No check of the return value of "rpcMgr()->postRPCToProc(proc, int_iRPC::ptr(rpc))".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:2081: example_assign: Assigning: "result" = return value from "this->getObject()->getFuncBindingTable(fbt)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:2082: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:2059: example_assign: Assigning: "result" = return value from "this->getObject()->getFuncBindingTable(fbt)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:2060: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/unix.C:691: example_checked: "sym->getFuncBindingTable(fbtvector)" has its value checked in "sym->getFuncBindingTable(fbtvector)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/SymtabCodeSource.C:508: example_checked: "this->_symtab->getFuncBindingTable(fbt)" has its value checked in "this->_symtab->getFuncBindingTable(fbt)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:2216: check_return: Calling function "Dyninst::SymtabAPI::Symtab::getFuncBindingTable(std::vector<Dyninst::SymtabAPI::relocationEntry, std::allocator<Dyninst::SymtabAPI::relocationEntry> > &) const" without checking return value (as is done elsewhere 4 out of 5 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:2216: unchecked_value: No check of the return value of "this->parse_img()->getObject()->getFuncBindingTable(fbt)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:547: example_checked: "this->findVarsByAll(vrbleName, vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(vrbleName, vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:924: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, this->dyninstRT_name)" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, this->dyninstRT_name)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:925: example_checked: "this->findVarsByAll(std::string const("_libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("_libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:926: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:941: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localPid", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localPid", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:708: check_return: Calling function "AddressSpace::findVarsByAll(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &, std::vector<int_variable *, std::allocator<int_variable *> > &, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &)" without checking return value (as is done elsewhere 16 out of 19 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:708: unchecked_value: No check of the return value of "as[i]->findVarsByAll(std::string const(name, std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:547: example_checked: "this->findVarsByAll(vrbleName, vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(vrbleName, vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:924: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, this->dyninstRT_name)" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, this->dyninstRT_name)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:925: example_checked: "this->findVarsByAll(std::string const("_libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("_libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:926: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:941: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localPid", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localPid", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:719: check_return: Calling function "AddressSpace::findVarsByAll(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &, std::vector<int_variable *, std::allocator<int_variable *> > &, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &)" without checking return value (as is done elsewhere 16 out of 19 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:719: unchecked_value: No check of the return value of "as[i]->findVarsByAll(under_name, vars, std::string const("", std::allocator<char>()))".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:547: example_checked: "this->findVarsByAll(vrbleName, vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(vrbleName, vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:924: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, this->dyninstRT_name)" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, this->dyninstRT_name)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:925: example_checked: "this->findVarsByAll(std::string const("_libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("_libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:926: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localCause", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:941: example_checked: "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localPid", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))" has its value checked in "this->findVarsByAll(std::string const("libdyninstAPI_RT_init_localPid", std::allocator<char>()), vars, std::string const("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:733: check_return: Calling function "AddressSpace::findVarsByAll(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &, std::vector<int_variable *, std::allocator<int_variable *> > &, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &)" without checking return value (as is done elsewhere 16 out of 19 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:733: unchecked_value: No check of the return value of "as[i]->findVarsByAll(prefix_name, vars, std::string const("", std::allocator<char>()))".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:1343: example_assign: Assigning: "endOffset" = return value from "this->layoutRegions(lmap.tlsRegions, lmap.regionAllocs, lmap.tlsRegionOffset, globalOffset)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:1345: example_checked: "endOffset" has its value checked in "endOffset == 18446744073709551615UL".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:650: example_assign: Assigning: "currentOffset" = return value from "this->layoutRegions(lmap.codeRegions, lmap.regionAllocs, lmap.codeRegionOffset, globalOffset)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:652: example_checked: "currentOffset" has its value checked in "currentOffset == 18446744073709551615UL".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:663: example_assign: Assigning: "currentOffset" = return value from "this->layoutRegions(lmap.dataRegions, lmap.regionAllocs, lmap.dataRegionOffset, globalOffset)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:665: example_checked: "currentOffset" has its value checked in "currentOffset == 18446744073709551615UL".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:871: example_assign: Assigning: "currentOffset" = return value from "this->layoutRegions(lmap.bssRegions, lmap.regionAllocs, lmap.bssRegionOffset, globalOffset)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:873: example_checked: "currentOffset" has its value checked in "currentOffset == 18446744073709551615UL".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:1294: example_assign: Assigning: "endOffset" = return value from "this->layoutRegions(lmap.tlsRegions, lmap.regionAllocs, lmap.tlsRegionOffset, globalOffset)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:1296: example_checked: "endOffset" has its value checked in "endOffset == 18446744073709551615UL".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:643: check_return: Calling function "Dyninst::SymtabAPI::emitElfStatic::layoutRegions(std::deque<Dyninst::SymtabAPI::Region *, std::allocator<Dyninst::SymtabAPI::Region *> > &, std::map<Dyninst::SymtabAPI::Region *, std::pair<unsigned long, unsigned long>, std::less<Dyninst::SymtabAPI::Region *>, std::allocator<std::pair<Dyninst::SymtabAPI::Region * const, std::pair<unsigned long, unsigned long> > > > &, unsigned long, unsigned long)" without checking return value (as is done elsewhere 5 out of 6 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic.C:643: unchecked_value: No check of the return value of "this->layoutRegions(lmap.gotRegions, lmap.regionAllocs, lmap.gotRegionOffset, globalOffset)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1305: example_checked: "this->lladdrSpace->readDataSpace(this->address, this->size, dst, true)" has its value checked in "this->lladdrSpace->readDataSpace(this->address, this->size, dst, true)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:204: example_checked: "this->proc()->readDataSpace((void *)faa, this->proc()->getAddressWidth(), (void *)&faultAddr, true)" has its value checked in "this->proc()->readDataSpace((void *)faa, this->proc()->getAddressWidth(), (void *)&faultAddr, true)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:1738: example_checked: "this->proc()->readDataSpace((void *)readAddr, comparison_size, regBuf, true)" has its value checked in "this->proc()->readDataSpace((void *)readAddr, comparison_size, regBuf, true)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:1429: example_checked: "this->proc()->readDataSpace((void *)readAddr, copySize, regBuf, true)" has its value checked in "this->proc()->readDataSpace((void *)readAddr, copySize, regBuf, true)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:1620: example_checked: "this->proc()->readDataSpace((void *)readAddr, curB->start() - prevEndAddr, (void *)((Dyninst::Address)mappedPtr + prevEndAddr - regStart), true)" has its value checked in "this->proc()->readDataSpace((void *)readAddr, curB->start() - prevEndAddr, (void *)((Dyninst::Address)mappedPtr + prevEndAddr - regStart), true)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1332: check_return: Calling function "AddressSpace::readDataSpace(void const *, unsigned int, void *, bool)" without checking return value (as is done elsewhere 8 out of 9 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1332: unchecked_value: No check of the return value of "this->lladdrSpace->readDataSpace(this->address, len, dst, true)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:1701: example_checked: "kids[i]->initRegisters(gen)" has its value checked in "kids[i]->initRegisters(gen)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:3445: example_checked: "kids[i]->initRegisters(g)" has its value checked in "kids[i]->initRegisters(g)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:823: example_checked: "kids[i]->initRegisters(g)" has its value checked in "kids[i]->initRegisters(g)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:765: example_checked: "kids[i]->initRegisters(g)" has its value checked in "kids[i]->initRegisters(g)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:413: check_return: Calling function "AstNode::initRegisters(codeGen &)" without checking return value (as is done elsewhere 4 out of 5 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:413: unchecked_value: No check of the return value of "baseTrampAST->initRegisters(gen)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1359: example_checked: "Dyninst::SymtabAPI::Symtab::openFile(this->linkedFile, std::string(file), ((3 == mode) ? _ZN7Dyninst9SymtabAPI6Symtab9DefensiveE : _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE))" has its value checked in "Dyninst::SymtabAPI::Symtab::openFile(this->linkedFile, std::string(file), ((3 == mode) ? _ZN7Dyninst9SymtabAPI6Symtab9DefensiveE : _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/unix.C:455: example_checked: "Dyninst::SymtabAPI::Symtab::openFile(ld_file, std::string(derefPath), _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE)" has its value checked in "Dyninst::SymtabAPI::Symtab::openFile(ld_file, std::string(derefPath), _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/unix.C:589: example_checked: "Dyninst::SymtabAPI::Symtab::openFile(singleObject, std::string(*pathIter), _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE)" has its value checked in "Dyninst::SymtabAPI::Symtab::openFile(singleObject, std::string(*pathIter), _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/unix.C:304: example_assign: Assigning: "result" = return value from "Dyninst::SymtabAPI::Symtab::openFile(symt_obj, std::string(fileName), _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/unix.C:305: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/SymtabCodeSource.C:264: example_assign: Assigning: "valid" = return value from "Dyninst::SymtabAPI::Symtab::openFile(this->_symtab, std::string(file, std::allocator<char>()), _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/SymtabCodeSource.C:265: example_checked: "valid" has its value checked in "valid".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/SymtabReader.C:52: check_return: Calling function "Dyninst::SymtabAPI::Symtab::openFile(Dyninst::SymtabAPI::Symtab *&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Symtab::def_t)" without checking return value (as is done elsewhere 7 out of 8 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/SymtabReader.C:52: unchecked_value: No check of the return value of "Dyninst::SymtabAPI::Symtab::openFile(this->symtab, std::string(file_), _ZN7Dyninst9SymtabAPI6Symtab12NotDefensiveE)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:900: example_checked: "this->alloc_regresult->isReady()" has its value checked in "this->alloc_regresult->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:903: example_checked: "this->memrestore_response->isReady()" has its value checked in "this->memrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:906: example_checked: "this->regrestore_response->isReady()" has its value checked in "this->regrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1751: example_checked: "(*i)->isReady()" has its value checked in "(*i)->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1767: example_checked: "detach_response->isReady()" has its value checked in "detach_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1600: check_return: Calling function "response::isReady() const" without checking return value (as is done elsewhere 43 out of 47 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1600: unchecked_value: No check of the return value of "resp->isReady()".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:900: example_checked: "this->alloc_regresult->isReady()" has its value checked in "this->alloc_regresult->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:903: example_checked: "this->memrestore_response->isReady()" has its value checked in "this->memrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:906: example_checked: "this->regrestore_response->isReady()" has its value checked in "this->regrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1751: example_checked: "(*i)->isReady()" has its value checked in "(*i)->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1767: example_checked: "detach_response->isReady()" has its value checked in "detach_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:6042: check_return: Calling function "response::isReady() const" without checking return value (as is done elsewhere 43 out of 47 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:6042: unchecked_value: No check of the return value of "resp->isReady()".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:900: example_checked: "this->alloc_regresult->isReady()" has its value checked in "this->alloc_regresult->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:903: example_checked: "this->memrestore_response->isReady()" has its value checked in "this->memrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:906: example_checked: "this->regrestore_response->isReady()" has its value checked in "this->regrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1751: example_checked: "(*i)->isReady()" has its value checked in "(*i)->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1767: example_checked: "detach_response->isReady()" has its value checked in "detach_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:6076: check_return: Calling function "response::isReady() const" without checking return value (as is done elsewhere 43 out of 47 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:6076: unchecked_value: No check of the return value of "memresult->isReady()".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess-x86.C:53: example_checked: "this->getProc()->writeDataSpace((void *)pcAddr, 8U, &newpc)" has its value checked in "this->getProc()->writeDataSpace((void *)pcAddr, 8U, &newpc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2696: example_checked: "this->writeDataSpace((void *)this->RT_address_cache_addr_, 1024U, (void *)cacheCopy)" has its value checked in "this->writeDataSpace((void *)this->RT_address_cache_addr_, 1024U, (void *)cacheCopy)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux.C:307: example_checked: "this->writeDataSpace((char *)this->rtLibLoadHeap_, this->dyninstRT_name.length(), this->dyninstRT_name.c_str())" has its value checked in "this->writeDataSpace((char *)this->rtLibLoadHeap_, this->dyninstRT_name.length(), this->dyninstRT_name.c_str())".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux.C:354: example_checked: "this->writeDataSpace((char *)this->rtLibLoadHeap_, this->dyninstRT_name.length() + 1UL, this->dyninstRT_name.c_str())" has its value checked in "this->writeDataSpace((char *)this->rtLibLoadHeap_, this->dyninstRT_name.length() + 1UL, this->dyninstRT_name.c_str())".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux.C:369: example_checked: "this->writeDataSpace((char *)argsAddr, argsSize, argsPtr)" has its value checked in "this->writeDataSpace((char *)argsAddr, argsSize, argsPtr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux-x86.C:259: check_return: Calling function "PCProcess::writeDataSpace(void *, unsigned int, void const *)" without checking return value (as is done elsewhere 5 out of 6 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux-x86.C:259: unchecked_value: No check of the return value of "this->writeDataSpace((void *)got_entry, 8U, &target_addr)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:772: example_checked: "as[0UL]->findFuncsByAddr(addr, intfuncs, false)" has its value checked in "as[0UL]->findFuncsByAddr(addr, intfuncs, false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:687: example_checked: "as[0UL]->findFuncsByAddr((Dyninst::Address)addr, funcs, false)" has its value checked in "as[0UL]->findFuncsByAddr((Dyninst::Address)addr, funcs, false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:667: example_assign: Assigning: "result" = return value from "as[0UL]->findFuncsByAddr(addr, ifuncs, false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:668: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1493: example_checked: "this->findFuncsByAddr(addr, funcs, false)" has its value checked in "this->findFuncsByAddr(addr, funcs, false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:2088: example_checked: "this->findFuncsByAddr(relocAddr, tmpFuncs, false)" has its value checked in "this->findFuncsByAddr(relocAddr, tmpFuncs, false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2749: check_return: Calling function "AddressSpace::findFuncsByAddr(unsigned long, std::set<func_instance *, std::less<func_instance *>, std::allocator<func_instance *> > &, bool)" without checking return value (as is done elsewhere 6 out of 7 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2749: unchecked_value: No check of the return value of "this->findFuncsByAddr(framePC, curFuncs, false)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:789: example_assign: Assigning: "result" = return value from "thr->setRegister(pc, newpc_addr, result_response::ptr(this->pcset_result))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:790: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:6546: example_assign: Assigning: "result" = return value from "this->llthread_->setRegister(reg, val, result_response::ptr(response))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:6547: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:2518: example_assign: Assigning: "result" = return value from "thr->setRegister(reg, val, result_response::ptr(response))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:2519: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/x86_process.C:139: example_assign: Assigning: "result" = return value from "this->setRegister(reg, new_dr7, result_response::ptr(resp))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/x86_process.C:140: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/x86_process.C:271: example_assign: Assigning: "result" = return value from "this->setRegister(reg, addr, result_response::ptr(resp))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/x86_process.C:272: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1256: check_return: Calling function "int_thread::setRegister(Dyninst::MachRegister, unsigned long, boost::shared_ptr<result_response>)" without checking return value (as is done elsewhere 7 out of 8 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1256: unchecked_value: No check of the return value of "thrd->setRegister(pcreg, changePCTo, result_response::ptr(int_ebp->pc_regset))".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:523: example_checked: "this->memoryTracker_->find(oldSegs[i]->getRegionAddr(), segRange)" has its value checked in "this->memoryTracker_->find(oldSegs[i]->getRegionAddr(), segRange)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:64: example_checked: "this->memoryTracker_->find(addr, range)" has its value checked in "this->memoryTracker_->find(addr, range)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:90: example_checked: "this->memoryTracker_->find(addr, range)" has its value checked in "this->memoryTracker_->find(addr, range)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:234: example_assign: Assigning: "result" = return value from "this->memoryTracker_->find(item, obj)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:235: example_checked: "result" has its value checked in "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2958: example_checked: "this->signalHandlerLocations_.find(addr, handlerLoc)" has its value checked in "this->signalHandlerLocations_.find(addr, handlerLoc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:218: check_return: Calling function "codeRangeTree::find(unsigned long, codeRange *&) const" without checking return value (as is done elsewhere 6 out of 7 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:218: unchecked_value: No check of the return value of "this->memoryTracker_->find(item, obj)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1246: example_assign: Assigning: "result" = return value from "do_ptrace(PTRACE_SETOPTIONS, this->lwp, NULL, (void *)options)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1248: example_checked: "result" has its value checked in "result == -1".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1258: example_assign: Assigning: "result" = return value from "do_ptrace(PTRACE_SETOPTIONS, this->lwp, NULL, (void *)options)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1260: example_checked: "result" has its value checked in "result == -1".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2189: example_assign: Assigning: "result" = return value from "do_ptrace((__ptrace_request)25, this->lwp, (void *)entryNumber, (void *)&entryDesc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2191: example_checked: "result" has its value checked in "result == -1L".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1985: example_assign: Assigning: "result" = return value from "do_ptrace(PTRACE_POKEUSER, this->lwp, (void *)offset, (void *)value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1995: example_checked: "result" has its value checked in "result != 0".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1989: example_assign: Assigning: "result" = return value from "do_ptrace(PTRACE_POKEUSER, this->lwp, (void *)offset, (void *)value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1995: example_checked: "result" has its value checked in "result != 0".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:329: check_return: Calling function "do_ptrace(__ptrace_request, int, void *, void *)" without checking return value (as is done elsewhere 17 out of 20 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:329: unchecked_value: No check of the return value of "do_ptrace(PTRACE_GETEVENTMSG, (pid_t)thread->getLWP(), NULL, &cpid_l)".

Error: CHECKED_RETURN:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:900: example_checked: "this->alloc_regresult->isReady()" has its value checked in "this->alloc_regresult->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:903: example_checked: "this->memrestore_response->isReady()" has its value checked in "this->memrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:906: example_checked: "this->regrestore_response->isReady()" has its value checked in "this->regrestore_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1751: example_checked: "(*i)->isReady()" has its value checked in "(*i)->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1767: example_checked: "detach_response->isReady()" has its value checked in "detach_response->isReady()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1682: check_return: Calling function "response::isReady() const" without checking return value (as is done elsewhere 43 out of 47 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1682: unchecked_value: No check of the return value of "resp->isReady()".

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4885: alloc_new: Allocating memory by calling "new Dyninst::ProcControlAPI::EventNotify".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4885: var_assign: Assigning: "this->up_notify" = "new Dyninst::ProcControlAPI::EventNotify".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4885: ctor_dtor_leak: The constructor allocates field "up_notify" of "int_notify" but there is no destructor.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:55: alloc_new: Allocating memory by calling "new Dyninst::SymtabAPI::Elf_X(this->mf->getFD(), cmd, NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:55: var_assign: Assigning: "arf" = "new Dyninst::SymtabAPI::Elf_X(this->mf->getFD(), cmd, NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:66: var_assign: Assigning: "this->basePtr" = "arf".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:66: ctor_dtor_leak: The constructor allocates field "basePtr" of "Dyninst::SymtabAPI::Archive" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive.C:276: destructor: This is the destructor implementation.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:85: alloc_new: Allocating memory by calling "new Dyninst::Stackwalker::AddrRangeGroupImpl".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:85: var_assign: Assigning: "this->impl" = "new Dyninst::Stackwalker::AddrRangeGroupImpl".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:85: ctor_dtor_leak: The constructor allocates field "impl" of "Dyninst::Stackwalker::AddrRangeGroup" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:244: destructor: This is the destructor implementation.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchMgr.C:36: alloc_fn: Calling allocation function "Dyninst::PatchAPI::Instrumenter::create(Dyninst::PatchAPI::AddrSpace *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/Instrumenter.C:16: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/Instrumenter.C:16: var_assign: Assigning: "<storage from new>" = "operator new(208UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/Instrumenter.C:16: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::PatchAPI::Instrumenter::Instrumenter(Dyninst::PatchAPI::AddrSpace *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Instrumenter.h:55:14: noescape: "Dyninst::PatchAPI::Instrumenter::Instrumenter(Dyninst::PatchAPI::AddrSpace *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/Instrumenter.C:16: var_assign: Assigning: "ret" = "new Dyninst::PatchAPI::Instrumenter(as)".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/Instrumenter.C:17: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchMgr.C:36: var_assign: Assigning: "this->instor_" = "Dyninst::PatchAPI::Instrumenter::create(as)".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchMgr.C:36: ctor_dtor_leak: The constructor allocates field "instor_" of "Dyninst::PatchAPI::PatchMgr" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchMgr.C:118: destructor: This is the destructor implementation.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:74: alloc_fn: Calling allocation function "Dyninst::Stackwalker::Walker::createDefaultStepperGroup()".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:658: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:658: var_assign: Assigning: "<storage from new>" = "operator new(72UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:658: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::Stackwalker::AddrRangeGroup::AddrRangeGroup(Dyninst::Stackwalker::Walker *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:80:17: noescape: "Dyninst::Stackwalker::AddrRangeGroup::AddrRangeGroup(Dyninst::Stackwalker::Walker *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:658: return_alloc: Returning allocated memory "new Dyninst::Stackwalker::AddrRangeGroup(this)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:74: var_assign: Assigning: "this->group" = "this->createDefaultStepperGroup()".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:74: ctor_dtor_leak: The constructor allocates field "group" of "Dyninst::Stackwalker::Walker" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:280: destructor: This is the destructor implementation.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.C:69: alloc_new: Allocating memory by calling "new instMapping(parentSN->postExecInst, child)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.C:69: var_assign: Assigning: "this->postExecInst" = "new instMapping(parentSN->postExecInst, child)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.C:69: ctor_dtor_leak: The constructor allocates field "postExecInst" of "syscallNotification" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.h:78: destructor: This is the destructor implementation.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.C:76: alloc_new: Allocating memory by calling "new instMapping(parentSN->preLwpExitInst, child)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.C:76: var_assign: Assigning: "this->preLwpExitInst" = "new instMapping(parentSN->preLwpExitInst, child)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.C:76: ctor_dtor_leak: The constructor allocates field "preLwpExitInst" of "syscallNotification" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/syscallNotification.h:78: destructor: This is the destructor implementation.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/libstate.C:65: alloc_fn: Calling allocation function "Dyninst::AddressTranslate::createAddressTranslator(Dyninst::ProcessReader *, Dyninst::SymbolReaderFactory *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:373: alloc_fn: Storage is returned from allocation function "Dyninst::AddressTranslate::createAddressTranslator(int, Dyninst::ProcessReader *, Dyninst::SymbolReaderFactory *, int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:355: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:355: var_assign: Assigning: "<storage from new>" = "operator new(184UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:355: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::AddressTranslateSysV::AddressTranslateSysV(int, Dyninst::ProcessReader *, Dyninst::SymbolReaderFactory *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:390:23: noescape: "Dyninst::AddressTranslateSysV::AddressTranslateSysV(int, Dyninst::ProcessReader *, Dyninst::SymbolReaderFactory *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:355: var_assign: Assigning: "at" = "new Dyninst::AddressTranslateSysV(pid_, reader_, symfactory_, std::string(exename), interp_base)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:365: return_alloc: Returning allocated memory "at".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:373: return_alloc_fn: Directly returning storage allocated by "Dyninst::AddressTranslate::createAddressTranslator(int, Dyninst::ProcessReader *, Dyninst::SymbolReaderFactory *, int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/libstate.C:65: var_assign: Assigning: "this->translate" = "Dyninst::AddressTranslate::createAddressTranslator(&this->procreader, Dyninst::Stackwalker::TrackLibState::symfactory, std::string(executable_), 18446744073709551615UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/libstate.C:65: ctor_dtor_leak: The constructor allocates field "translate" of "Dyninst::Stackwalker::TrackLibState" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/libstate.C:218: destructor: This is the destructor implementation.

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/CFGModifier.C:372: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/CFGModifier.C:372: var_assign: Assigning: "this->buf_" = "malloc(s)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/CFGModifier.C:372: ctor_dtor_leak: The constructor allocates field "buf_" of "Dyninst::ParseAPI::InsertedRegion" but there is no destructor.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/CFGModifier.C:374: value_flow: "this->buf_" is equal to the return value of "memcpy(this->buf_, d, s)".

Error: CTOR_DTOR_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:170: alloc_new: Allocating memory by calling "new BPatch_builtInTypeCollection".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:170: var_assign: Assigning: "this->builtInTypes" = "new BPatch_builtInTypeCollection".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:170: ctor_dtor_leak: The constructor allocates field "builtInTypes" of "BPatch" but the destructor and whatever functions it calls do not free it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:265: destructor: This is the destructor implementation.

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4324: dead_error_condition: On this path, the condition "status == -1" cannot be true.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4312: const: After this line, the value of "status" is equal to 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4312: new_values: Noticing condition "status != 0".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4325: dead_error_begin: Execution cannot reach this statement "done = true;".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1237: dead_error_condition: On this path, the condition "l < 4294934528LL" cannot be false.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1235: between: After this line, the value of "l" is between -2147483648 and -1.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1235: new_values: Noticing condition "l < -2147483648LL".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1234: new_values: Noticing condition "l < 0LL".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1237: dead_error_line: Execution cannot reach this expression "h > 32767LL" inside statement "if (l < 4294934528LL || h >...".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:1018: dead_error_condition: On this path, the condition "maps" cannot be true.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:920: const: After this line, the value of "maps" is equal to 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:967: const: After this line, the value of "maps" is equal to 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:920: assignment: Assigning: "maps" = "NULL".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:967: new_values: Noticing condition "maps".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:1019: dead_error_line: Execution cannot reach this statement "free(maps);".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:278: dead_error_condition: On this path, the condition "varExprGbl != NULL" cannot be true.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:271: const: After this line, the value of "varExprGbl" is equal to 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:271: assignment: Assigning: "varExprGbl" = "NULL".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:279: dead_error_line: Execution cannot reach this statement "return varExprGbl;".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Time.C:378: dead_error_condition: On this path, the condition "prev" cannot be true.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Time.C:370: const: After this line, the value of "prev" is equal to 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Time.C:370: assignment: Assigning: "prev" = "false".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Time.C:378: dead_error_line: Execution cannot reach this expression "cSt" inside statement "((s << (prev ? cSt : "")) <...".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:857: dead_error_condition: On this path, the condition "imm == 1" cannot be true.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:842: at_least: After this line, the value of "imm" is at least 128.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:842: at_most: After this line, the value of "imm" is at most -127.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:842: new_values: Noticing condition "imm < 128".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:842: new_values: Noticing condition "imm > -127".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:858: dead_error_line: Execution cannot reach this statement "if (gen->rs()->getAddressWi...".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:245: dead_error_condition: On this path, the condition "derivedtype" cannot be false.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:220: cannot_single: After this line (or expression), the value of "derivedtype" cannot be 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:247: dead_error_line: Execution cannot reach this statement "return NULL;".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:3492: dead_error_condition: On this path, the condition "func" cannot be false.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:3485: cannot_single: After this line (or expression), the value of "func" cannot be 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:3498: dead_error_line: Execution cannot reach this statement "(out_name) = (std::string("...".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1343: dead_error_condition: On this path, the condition "inInstrumentation" cannot be false.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1307: const: After this line, the value of "inInstrumentation" is equal to 1.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1307: assignment: Assigning: "inInstrumentation" = "true".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1343: dead_error_line: Execution cannot reach this statement "return 4294967295U;".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:188: dead_error_condition: On this path, the switch value "opt" cannot reach the default case.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:184: const: After this line, the value of "opt" is equal to 1.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:180: const: After this line, the value of "opt" is equal to 2.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:176: const: After this line, the value of "opt" is equal to 3.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:176: assignment: Assigning: "opt" = "Indirect".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:184: assignment: Assigning: "opt" = "Single".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:180: assignment: Assigning: "opt" = "Taken_FT".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:303: dead_error_begin: Execution cannot reach this statement "default:".

Error: DEADCODE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:1799: dead_error_condition: On this path, the condition "inInstrumentation" cannot be false.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:1675: cannot_single: After this line (or expression), the value of "inInstrumentation" cannot be 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:1661: const: After this line, the value of "inInstrumentation" is equal to 1.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:1661: assignment: Assigning: "inInstrumentation" = "true".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:1799: dead_error_line: Execution cannot reach this statement "return 4294967295U;".

Error: DELETE_ARRAY:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_flowGraph.C:350: new_array: Using new in : "new BPatch_basicBlock *[this->allBlocks.size()]".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_flowGraph.C:350: var_assign: Assigning: "blocks" = storage from "new BPatch_basicBlock *[this->allBlocks.size()]".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_flowGraph.C:372: delete_var: Deleting array variable "blocks" with non-array delete in "delete blocks".

Error: DELETE_ARRAY:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:898: new: Calling allocating function: "BPatch_function::getParamsInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:538: new_return: Calling allocator "BPatch_localVarCollection::getAllVars()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: new_return: Using "new std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: var_assign: Assigning: "localVarVec" = "new std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >". 
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:112: return_alloc: Returning allocated storage "localVarVec".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:538: return_alloc: Returning allocated storage "this->funcParameters->getAllVars()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:898: var_assign: Assigning: "params" = storage from "this->getParamsInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:917: var_assign: Assigning: "<storage to delete>" = storage from "params".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:917: delete_array_var: Using operator delete[] on "params" in "delete [] params".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:630: dynamic_cast: Dynamic cast to pointer "dynamic_cast <SgAsmByteValueExpression *>(valexp)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:630: var_deref_model: Passing null variable "dynamic_cast <SgAsmByteValueExpression *>(valexp)" to function "SgAsmByteValueExpression::get_value() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:257: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:636: dynamic_cast: Dynamic cast to pointer "dynamic_cast <SgAsmDoubleWordValueExpression *>(valexp)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:636: var_deref_model: Passing null variable "dynamic_cast <SgAsmDoubleWordValueExpression *>(valexp)" to function "SgAsmDoubleWordValueExpression::get_value() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:317: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:639: dynamic_cast: Dynamic cast to pointer "dynamic_cast <SgAsmQuadWordValueExpression *>(valexp)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:639: var_deref_model: Passing null variable "dynamic_cast <SgAsmQuadWordValueExpression *>(valexp)" to function "SgAsmQuadWordValueExpression::get_value() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:347: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:633: dynamic_cast: Dynamic cast to pointer "dynamic_cast <SgAsmWordValueExpression *>(valexp)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:633: var_deref_model: Passing null variable "dynamic_cast <SgAsmWordValueExpression *>(valexp)" to function "SgAsmWordValueExpression::get_value() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:287: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/string-regex.C:53: assign_zero: Assigning: "resultBegins" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/string-regex.C:81: alias_transfer: Assigning null: "demangled" = "resultBegins".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/string-regex.C:83: var_deref_model: Passing null variable "demangled" to function "strrchr(char *, int)", which dereferences it. (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:584: var_compare_op: Comparing "demangled" to null implies that "demangled" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:591: var_deref_model: Passing null variable "demangled" to function "strcmp", which dereferences it. (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2184: assign_zero: Assigning: "symVersionDefs" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2218: var_deref_model: Passing null variable "symVersionDefs" to function "Dyninst::SymtabAPI::Elf_X_Verdef::get_aux() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:961: deref_parm_in_call: Function "Dyninst::SymtabAPI::Elf_X_Verdef::vd_cnt() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:937: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2185: assign_zero: Assigning: "symVersionNeeds" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2231: var_deref_model: Passing null variable "symVersionNeeds" to function "Dyninst::SymtabAPI::Elf_X_Verneed::get_aux() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1086: deref_parm_in_call: Function "Dyninst::SymtabAPI::Elf_X_Verneed::vn_cnt() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1062: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2958: assign_zero: Assigning: "stabptr" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2977: var_deref_model: Passing null variable "stabptr" to function "Dyninst::SymtabAPI::stab_entry::getStringBase()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:129: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5328: var_compare_op: Comparing "dynstr" to null implies that "dynstr" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5404: var_deref_model: Passing null variable "dynstr + dynsym.st_name(symbol_index)" to function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)", which dereferences it.

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:361: var_compare_op: Comparing "shnames" to null implies that "shnames" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:611: alias_transfer: Assigning null: "name" = "shnames + scnp->sh_name()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:612: var_deref_model: Passing null variable "name" to function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)", which dereferences it.

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:441: var_compare_op: Comparing "shnamesForDebugInfo" to null implies that "shnamesForDebugInfo" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:630: alias_transfer: Assigning null: "name" = "shnamesForDebugInfo + scnp->sh_name()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:632: var_deref_model: Passing null variable "name" to function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)", which dereferences it.

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:331: assign_zero: Assigning: "selected_thread" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:366: identity_transfer: Passing variable "selected_thread" as argument 2 to member function "this->createThreadForRPC(proc, selected_thread)", which returns that argument.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:1391: return_parm: Returning parameter "candidate".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:366: alias_transfer: Assigning null: "selected_thread" = "this->createThreadForRPC(proc, selected_thread)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:367: var_deref_model: Passing null variable "selected_thread" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1275: var_compare_op: Comparing "thr" to null implies that "thr" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1298: var_deref_model: Passing null variable "thr" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1234: var_compare_op: Comparing "thr" to null implies that "thr" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1258: var_deref_model: Passing null variable "thr" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1755: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::SymtabAPI::typeStruct *>(newType)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1755: alias_transfer: Assigning null: "newStructType" = "dynamic_cast <Dyninst::SymtabAPI::typeStruct *>(newType)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1768: var_deref_model: Passing null variable "newStructType" to function "addBaseClassToClass(Dyninst::SymtabAPI::Module *, int, Dyninst::SymtabAPI::fieldListType *, int)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1705: deref_parm_in_call: Function "Dyninst::SymtabAPI::fieldListType::addField(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Type *, int, Dyninst::SymtabAPI::visibility_t)" dereferences parameter "newType".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1519: deref_parm_field_in_call: Function "std::vector<Dyninst::SymtabAPI::Field *, std::allocator<Dyninst::SymtabAPI::Field *> >::push_back(Dyninst::SymtabAPI::Field * const &)" dereferences field "this->fieldList".
/usr/include/c++/4.7.1/bits/stl_vector.h:883: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1249: var_compare_op: Comparing "proc" to null implies that "proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:1250: var_deref_model: Passing null variable "proc" to function "int_process::getPid() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:754: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2245: var_compare_op: Comparing "newFunction2" to null implies that "newFunction2" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2255: var_deref_model: Passing null variable "newFunction2" to function "Dyninst::SymtabAPI::typeFunction::addParam(Dyninst::SymtabAPI::Type *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:545: deref_parm_field_in_call: Function "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::push_back(Dyninst::SymtabAPI::Type * const &)" dereferences field "this->params_".
/usr/include/c++/4.7.1/bits/stl_vector.h:883: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/pathName.C:87: var_compare_op: Comparing "ptr" to null implies that "ptr" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/pathName.C:106: var_deref_model: Passing null variable "ptr" to function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)", which dereferences it.

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:212: var_compare_op: Comparing "mod" to null implies that "mod" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:224: var_deref_model: Passing null variable "mod" to function "Dyninst::SymtabAPI::Module::exec() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Module.C:125: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5248: var_compare_op: Comparing "this->proc" to null implies that "this->proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5250: var_deref_model: Passing null variable "this->proc" to function "int_process::setLastError(unsigned int, char const *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1765: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:199: assign_zero: Assigning: "point" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:248: var_deref_model: Passing null variable "point" to function "Dyninst::PatchAPI::Point::empty() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Point.h:203: deref_parm_field_in_call: Function "std::list<boost::shared_ptr<Dyninst::PatchAPI::Instance>, std::allocator<boost::shared_ptr<Dyninst::PatchAPI::Instance> > >::empty() const" dereferences field "this->instanceList_".
/usr/include/c++/4.7.1/bits/stl_list.h:872: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:193: assign_zero: Assigning: "f" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:206: var_deref_model: Passing null variable "f" to function "instPoint::funcEntry(func_instance *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:69: deref_parm_in_call: Function "func_instance::funcEntryPoint(bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:672: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:209: var_deref_model: Passing null variable "f" to function "instPoint::funcExit(func_instance *, block_instance *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:73: deref_parm_in_call: Function "func_instance::funcExitPoint(block_instance *, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:677: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:212: var_deref_model: Passing null variable "f" to function "instPoint::blockEntry(func_instance *, block_instance *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:77: deref_parm_in_call: Function "func_instance::blockEntryPoint(block_instance *, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:711: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:215: var_deref_model: Passing null variable "f" to function "instPoint::blockExit(func_instance *, block_instance *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:81: deref_parm_in_call: Function "func_instance::blockExitPoint(block_instance *, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:716: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:218: var_deref_model: Passing null variable "f" to function "instPoint::edge(func_instance *, edge_instance *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:94: deref_parm_in_call: Function "func_instance::edgePoint(edge_instance *, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:749: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:221: var_deref_model: Passing null variable "f" to function "instPoint::preInsn(func_instance *, block_instance *, unsigned long, boost::shared_ptr<Dyninst::InstructionAPI::Instruction>, bool)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:102: deref_parm_in_call: Function "func_instance::preInsnPoint(block_instance *, unsigned long, boost::shared_ptr<Dyninst::InstructionAPI::Instruction>, bool, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:725: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:224: var_deref_model: Passing null variable "f" to function "instPoint::postInsn(func_instance *, block_instance *, unsigned long, boost::shared_ptr<Dyninst::InstructionAPI::Instruction>, bool)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:110: deref_parm_in_call: Function "func_instance::postInsnPoint(block_instance *, unsigned long, boost::shared_ptr<Dyninst::InstructionAPI::Instruction>, bool, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:734: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:227: var_deref_model: Passing null variable "f" to function "instPoint::preCall(func_instance *, block_instance *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:85: deref_parm_in_call: Function "func_instance::preCallPoint(block_instance *, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:692: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:230: var_deref_model: Passing null variable "f" to function "instPoint::postCall(func_instance *, block_instance *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:89: deref_parm_in_call: Function "func_instance::postCallPoint(block_instance *, bool)" dereferences parameter "f".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:697: deref_parm_in_call: Function "func_instance::proc() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:268: deref_parm_in_call: Function "func_instance::obj() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:267: deref_parm_in_call: Function "func_instance::mod() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.h:116: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:2307: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::PatchAPI::DynAddrSpace *>(this->mgr_->as())" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:2307: var_deref_model: Passing null variable "dynamic_cast <Dyninst::PatchAPI::DynAddrSpace *>(this->mgr_->as())" to function "Dyninst::PatchAPI::DynAddrSpace::loadLibrary(Dyninst::PatchAPI::DynObject *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:13: deref_parm_in_call: Function "Dyninst::PatchAPI::AddrSpace::loadObject(Dyninst::PatchAPI::PatchObject *)" dereferences parameter "this". (The dereference happens because this is a virtual function call.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:1070: var_compare_op: Comparing "this->main_function_" to null implies that "this->main_function_" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:1074: var_deref_model: Passing null variable "this->main_function_" to function "Dyninst::PatchAPI::PatchFunction::addr() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/PatchCFG.h:170: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/block.C:137: var_compare_op: Comparing "e" to null implies that "e" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/block.C:140: var_deref_model: Passing null variable "e" to function "edge_instance::trg() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/edge.C:33: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:367: dynamic_cast: Dynamic cast to pointer "dynamic_cast <BPatch_process *>(this->addSpace)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:367: var_deref_model: Passing null variable "dynamic_cast <BPatch_process *>(this->addSpace)" to function "BPatch_process::getHybridAnalysis()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_process.h:248: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_point.C:213: dynamic_cast: Dynamic cast to pointer "dynamic_cast <BPatch_process *>(this->addSpace)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_point.C:213: alias_transfer: Assigning null: "proc" = "dynamic_cast <BPatch_process *>(this->addSpace)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_point.C:215: var_deref_model: Passing null variable "proc" to function "BPatch_process::lowlevel_process() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_process.h:231: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:918: var_compare_op: Comparing "this->firstNewLoadSec" to null implies that "this->firstNewLoadSec" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1033: var_deref_op: Dereferencing null variable "this->firstNewLoadSec".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:979: var_compare_op: Comparing "this->firstNewLoadSec" to null implies that "this->firstNewLoadSec" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1090: var_deref_op: Dereferencing null variable "this->firstNewLoadSec".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:1097: dynamic_cast: Dynamic cast to pointer "dynamic_cast <parse_func *>(blockFuncs[0UL])" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:1097: var_deref_model: Passing null variable "dynamic_cast <parse_func *>(blockFuncs[0UL])" to function "parse_func::pdmod() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.h:278: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1437: dynamic_cast: Dynamic cast to pointer "dynamic_cast <thread_db_process *>(this->llproc())" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1437: alias_transfer: Assigning null: "lproc" = "dynamic_cast <thread_db_process *>(this->llproc())".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1438: var_deref_model: Passing null variable "lproc" to function "thread_db_process::getThreadDBAgent()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:918: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:1290: dynamic_cast: Dynamic cast to pointer "dynamic_cast <parse_func *>(*fIter)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:1290: alias_transfer: Assigning null: "curFunc" = "dynamic_cast <parse_func *>(*fIter)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:1291: var_deref_model: Passing null variable "curFunc" to function "parse_func::entryBlock()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.C:393: deref_parm_in_call: Function "Dyninst::ParseAPI::Function::parsed() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/h/CFG.h:470: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/sysv.C:69: dynamic_cast: Dynamic cast to pointer "dynamic_cast <sysv_process *>(p)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/sysv.C:69: alias_transfer: Assigning null: "sp" = "dynamic_cast <sysv_process *>(p)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/sysv.C:70: var_deref_op: Dereferencing null variable "sp".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridCallbacks.C:521: var_compare_op: Comparing "callObj" to null implies that "callObj" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridCallbacks.C:526: var_deref_model: Passing null variable "callObj" to function "mapped_object::parse_img() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.h:176: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridCallbacks.C:537: var_deref_model: Passing null variable "callObj" to function "mapped_object::codeBase() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.h:163: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_binaryEdit.C:306: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::PatchAPI::DynAddrSpace *>(Dyninst::PatchAPI::PatchMgrPtr(this->origBinEdit->mgr())->as())" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_binaryEdit.C:306: var_deref_model: Passing null variable "dynamic_cast <Dyninst::PatchAPI::DynAddrSpace *>(Dyninst::PatchAPI::PatchMgrPtr(this->origBinEdit->mgr())->as())" to function "Dyninst::PatchAPI::DynAddrSpace::loadLibrary(Dyninst::PatchAPI::DynObject *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:13: deref_parm_in_call: Function "Dyninst::PatchAPI::AddrSpace::loadObject(Dyninst::PatchAPI::PatchObject *)" dereferences parameter "this". (The dereference happens because this is a virtual function call.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:674: dynamic_cast: Dynamic cast to pointer "dynamic_cast <thread_db_thread *>(*i)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:674: alias_transfer: Assigning null: "tdb_thread" = "dynamic_cast <thread_db_thread *>(*i)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:676: var_deref_op: Dereferencing null variable "tdb_thread".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:1125: dynamic_cast: Dynamic cast to pointer "dynamic_cast <BPatch_process const *>(a)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:1125: alias_transfer: Assigning null: "proc" = "dynamic_cast <BPatch_process const *>(a)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:1126: var_deref_model: Passing null variable "proc" to function "BPatch_process::lowlevel_process() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_process.h:231: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:901: assign_zero: Assigning: "const_oper" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:943: var_deref_model: Passing null variable "const_oper" to function "AstNode::getOValue() const", which dereferences it. (The dereference happens because this is a virtual function call.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:282: dynamic_cast: Dynamic cast to pointer "dynamic_cast <thread_db_thread *>(tdb_proc->threadPool()->findThreadByLWP(lwp))" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:282: alias_transfer: Assigning null: "tdb_thread" = "dynamic_cast <thread_db_thread *>(tdb_proc->threadPool()->findThreadByLWP(lwp))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:285: var_deref_model: Passing null variable "tdb_thread" to function "thread_db_thread::thrdb_getThreadArea(int, unsigned long &)", which dereferences it. (The dereference happens because this is a virtual function call.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:629: var_compare_op: Comparing "ser" to null implies that "ser" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:632: var_deref_op: Dereferencing null variable "ser".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Parsing.C:194: dynamic_cast: Dynamic cast to pointer "dynamic_cast <parse_func *>(func)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Parsing.C:194: var_deref_model: Passing null variable "dynamic_cast <parse_func *>(func)" to function "parse_func::setinit_retstatus(Dyninst::ParseAPI::FuncReturnStatus)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.C:491: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/ppc_process.C:83: dynamic_cast: Dynamic cast to pointer "dynamic_cast <ppc_process *>(thr->llproc())" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/ppc_process.C:83: alias_transfer: Assigning null: "proc" = "dynamic_cast <ppc_process *>(thr->llproc())".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/ppc_process.C:84: var_deref_model: Passing null variable "proc" to function "ppc_process::cleanupSSOnContinue(int_thread *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/ppc_process.C:90: deref_parm_field_in_call: Function "std::map<int_thread *, boost::shared_ptr<reg_response>, std::less<int_thread *>, std::allocator<std::pair<int_thread * const, boost::shared_ptr<reg_response> > > >::find(int_thread * const &)" dereferences field "this->pcs_for_ss".
/usr/include/c++/4.7.1/bits/stl_map.h:749: deref_parm_field_in_call: Function "std::_Rb_tree<int_thread *, std::pair<int_thread * const, boost::shared_ptr<reg_response> >, std::_Select1st<std::pair<int_thread * const, boost::shared_ptr<reg_response> > >, std::less<int_thread *>, std::allocator<std::pair<int_thread * const, boost::shared_ptr<reg_response> > > >::find(int_thread * const &)" dereferences field "this->_M_t".
/usr/include/c++/4.7.1/bits/stl_tree.h:1544: deref_parm_in_call: Function "std::_Rb_tree<int_thread *, std::pair<int_thread * const, boost::shared_ptr<reg_response> >, std::_Select1st<std::pair<int_thread * const, boost::shared_ptr<reg_response> > >, std::less<int_thread *>, std::allocator<std::pair<int_thread * const, boost::shared_ptr<reg_response> > > >::_M_begin()" dereferences parameter "this".
/usr/include/c++/4.7.1/bits/stl_tree.h:500: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5207: var_compare_op: Comparing "this->proc" to null implies that "this->proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5209: var_deref_model: Passing null variable "this->proc" to function "int_process::setLastError(unsigned int, char const *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1765: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynCFGMaker.C:25: var_compare_op: Comparing "mod" to null implies that "mod" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynCFGMaker.C:31: var_deref_model: Passing null variable "mod" to function "func_instance::func_instance(parse_func *, unsigned long, mapped_module *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/function.C:73: deref_parm_in_call: Function "mapped_module::obj() const" dereferences parameter "mod".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_module.C:146: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1922: var_compare_op: Comparing "proc" to null implies that "proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:1936: var_deref_model: Passing null variable "proc" to function "int_process::isRunningSilent()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1966: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:188: var_compare_op: Comparing "to_assign" to null implies that "to_assign" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:193: var_deref_model: Passing null variable "to_assign" to function "std::vector<std::pair<Dyninst::SymtabAPI::dataClass, Dyninst::SymtabAPI::Type **>, std::allocator<std::pair<Dyninst::SymtabAPI::dataClass, Dyninst::SymtabAPI::Type **> > >::size() const", which dereferences it.
/usr/include/c++/4.7.1/bits/stl_vector.h:626: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:198: dynamic_cast: Dynamic cast to pointer "dynamic_cast <thread_db_thread *>(llthr)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:198: alias_transfer: Assigning null: "thr" = "dynamic_cast <thread_db_thread *>(llthr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:200: var_deref_model: Passing null variable "thr" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:705: var_compare_op: Comparing "bt" to null implies that "bt" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:713: var_deref_model: Passing null variable "bt" to function "baseTramp::saveFPRs()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:541: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:719: var_deref_model: Passing null variable "bt" to function "baseTramp::instP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:61: deref_parm_in_call: Function "baseTramp::point() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:60: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2495: var_compare_op: Comparing "bt" to null implies that "bt" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2504: var_deref_model: Passing null variable "bt" to function "baseTramp::saveFPRs()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:541: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:141: var_compare_op: Comparing "stepper" to null implies that "stepper" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:143: var_deref_model: Passing null variable "stepper" to function "Dyninst::Stackwalker::FrameStepper::getName() const", which dereferences it. (The dereference happens because this is a virtual function call.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:194: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::Stackwalker::AddrRangeStepper *>(ranges[i])" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:194: alias_transfer: Assigning null: "old_range" = "dynamic_cast <Dyninst::Stackwalker::AddrRangeStepper *>(ranges[i])".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:195: var_deref_op: Dereferencing null variable "old_range".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:214: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::Stackwalker::AddrRangeStepper *>(ranges[i])" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:214: alias_transfer: Assigning null: "ars" = "dynamic_cast <Dyninst::Stackwalker::AddrRangeStepper *>(ranges[i])".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:215: var_deref_model: Passing null variable "ars->steppers" to function "std::set<Dyninst::Stackwalker::FrameStepper *, Dyninst::Stackwalker::ltstepper, std::allocator<Dyninst::Stackwalker::FrameStepper *> >::insert(Dyninst::Stackwalker::FrameStepper * const &)", which dereferences it.
/usr/include/c++/4.7.1/bits/stl_set.h:414: deref_parm_field_in_call: Function "std::_Rb_tree<Dyninst::Stackwalker::FrameStepper *, Dyninst::Stackwalker::FrameStepper *, std::_Identity<Dyninst::Stackwalker::FrameStepper *>, Dyninst::Stackwalker::ltstepper, std::allocator<Dyninst::Stackwalker::FrameStepper *> >::_M_insert_unique(Dyninst::Stackwalker::FrameStepper * const &)" dereferences field "this->_M_t".
/usr/include/c++/4.7.1/bits/stl_tree.h:1279: deref_parm_in_call: Function "std::_Rb_tree<Dyninst::Stackwalker::FrameStepper *, Dyninst::Stackwalker::FrameStepper *, std::_Identity<Dyninst::Stackwalker::FrameStepper *>, Dyninst::Stackwalker::ltstepper, std::allocator<Dyninst::Stackwalker::FrameStepper *> >::_M_begin()" dereferences parameter "this".
/usr/include/c++/4.7.1/bits/stl_tree.h:500: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:227: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::Stackwalker::AddrRangeStepper *>(ranges[i])" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:227: alias_transfer: Assigning null: "old_range" = "dynamic_cast <Dyninst::Stackwalker::AddrRangeStepper *>(ranges[i])".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/steppergroup.C:228: var_deref_op: Dereferencing null variable "old_range".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/eventLock.C:228: var_compare_op: Comparing "this" to null implies that "this" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/eventLock.C:231: var_deref_model: Passing null variable "this" to function "eventLock::printLockStack()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/eventLock.C:338: deref_parm_field_in_call: Function "std::vector<eventLock::lock_stack_elem, std::allocator<eventLock::lock_stack_elem> >::size() const" dereferences field "this->lock_stack".
/usr/include/c++/4.7.1/bits/stl_vector.h:626: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:55: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:55: alias_transfer: Assigning null: "dobj" = "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:56: var_deref_model: Passing null variable "dobj" to function "Dyninst::PatchAPI::DynObject::as() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynObject.h:26: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:50: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:50: alias_transfer: Assigning null: "dobj" = "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:51: var_deref_model: Passing null variable "dobj" to function "Dyninst::PatchAPI::DynObject::as() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynObject.h:26: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5218: var_compare_op: Comparing "this->proc" to null implies that "this->proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5220: var_deref_model: Passing null variable "this->proc" to function "int_process::setLastError(unsigned int, char const *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1765: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5233: var_compare_op: Comparing "this->proc" to null implies that "this->proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5235: var_deref_model: Passing null variable "this->proc" to function "int_process::setLastError(unsigned int, char const *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1765: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:523: var_compare_op: Comparing "bt" to null implies that "bt" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:539: var_deref_model: Passing null variable "bt" to function "baseTramp::saveFPRs()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:541: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:561: var_compare_op: Comparing "bt" to null implies that "bt" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:562: var_deref_model: Passing null variable "bt" to function "baseTramp::instP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:61: deref_parm_in_call: Function "baseTramp::point() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:60: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:579: var_compare_op: Comparing "bt" to null implies that "bt" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:624: var_deref_model: Passing null variable "bt" to function "baseTramp::instP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:61: deref_parm_in_call: Function "baseTramp::point() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:60: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/x86_process.C:304: dynamic_cast: Dynamic cast to pointer "dynamic_cast <x86_process *>(this->llproc())" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/x86_process.C:304: alias_transfer: Assigning null: "proc" = "dynamic_cast <x86_process *>(this->llproc())".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/x86_process.C:315: var_deref_model: Passing null variable "proc" to function "int_process::getAddressWidth()", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1534: deref_parm_in_call: Function "int_process::getTargetArch()" dereferences parameter "this". (The dereference happens because this is a virtual function call.)

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:244: assign_zero: Assigning: "lproc" = 0.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:420: var_deref_model: Passing null variable "lproc" to function "sysv_process::getLibBreakpointAddr() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/sysv.C:302: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:249: dynamic_cast: Dynamic cast to pointer "dynamic_cast <linux_thread *>(thread)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:249: alias_transfer: Assigning null: "lthread" = "dynamic_cast <linux_thread *>(thread)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:281: var_deref_model: Passing null variable "lthread" to function "int_thread::hasPendingStop() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2635: deref_parm_field_in_call: Function "Counter::local() const" dereferences field "this->pending_stop".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:7188: deref_parm_in_call: Function "Counter::localCount() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:7193: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:251: var_compare_op: Comparing "proc" to null implies that "proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:321: var_deref_model: Passing null variable "proc" to function "int_process::getPid() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:754: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:343: var_deref_model: Passing null variable "proc" to function "int_process::getPid() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:754: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:356: var_deref_model: Passing null variable "proc" to function "int_process::getState() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:731: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:463: var_deref_model: Passing null variable "proc" to function "int_process::getPid() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:754: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:247: var_compare_op: Comparing "thread" to null implies that "thread" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:321: var_deref_model: Passing null variable "thread" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:343: var_deref_model: Passing null variable "thread" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:357: var_deref_model: Passing null variable "thread" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:364: var_deref_model: Passing null variable "thread" to function "int_thread::plat_getRegister(Dyninst::MachRegister, unsigned long &)", which dereferences it. (The dereference happens because this is a virtual function call.)
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:463: var_deref_model: Passing null variable "thread" to function "int_thread::getLWP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2658: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:60: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:60: alias_transfer: Assigning null: "dobj" = "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:61: var_deref_model: Passing null variable "dobj" to function "Dyninst::PatchAPI::DynObject::as() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynObject.h:26: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:120: dynamic_cast: Dynamic cast to pointer "dynamic_cast <BPatch_process *>(this->addSpace)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:120: alias_transfer: Assigning null: "bpTemp" = "dynamic_cast <BPatch_process *>(this->addSpace)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:122: var_deref_model: Passing null variable "bpTemp->threads" to function "std::vector<BPatch_thread *, std::allocator<BPatch_thread *> >::size() const", which dereferences it.
/usr/include/c++/4.7.1/bits/stl_vector.h:626: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:44: dynamic_cast: Dynamic cast to pointer "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:44: alias_transfer: Assigning null: "dobj" = "dynamic_cast <Dyninst::PatchAPI::DynObject *>(obj)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:45: var_deref_model: Passing null variable "dobj" to function "Dyninst::PatchAPI::DynObject::as() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynObject.h:26: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2337: var_compare_op: Comparing "bt" to null implies that "bt" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2338: var_deref_model: Passing null variable "bt" to function "baseTramp::instP() const", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:61: deref_parm_in_call: Function "baseTramp::point() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:60: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5259: var_compare_op: Comparing "this->proc" to null implies that "this->proc" might be null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5261: var_deref_model: Passing null variable "this->proc" to function "int_process::setLastError(unsigned int, char const *)", which dereferences it.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:1765: deref_parm: Directly dereferencing parameter "this".

Error: FORWARD_NULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1203: dynamic_cast: Dynamic cast to pointer "dynamic_cast <thread_db_thread *>(proc->threadPool()->initialThread())" can return null.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1203: alias_transfer: Assigning null: "main_thread" = "dynamic_cast <thread_db_thread *>(proc->threadPool()->initialThread())".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1204: var_deref_op: Dereferencing null variable "main_thread".

Error: INVALIDATE_ITERATOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/ppc_process.C:182: past_the_end: Function "end" creates an iterator.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/ppc_process.C:182: tested_end: "i" testing equal to "this->mem_for_ss.end()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/ppc_process.C:221: deref_iterator: Dereferencing iterator "i" though it is already past the end of its container.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/ParserDetails.C:63: unterminated_case: This case (value 0) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/ParserDetails.C:66: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:905: unterminated_case: This case (value 71) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:907: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:908: unterminated_case: This case (value 77) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:910: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1279: unterminated_case: This case (value 5) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1281: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1237: unterminated_case: This case (value 5) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1239: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/stackanalysis.C:301: unterminated_case: This case (value 371) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/stackanalysis.C:303: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/stackanalysis.C:321: unterminated_case: This case (value 375) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/stackanalysis.C:323: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/stackanalysis.C:313: unterminated_case: This case (value 435) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/stackanalysis.C:315: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:656: unterminated_case: This case (value 1) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:661: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:382: unterminated_case: This case (value 371) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:384: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:390: unterminated_case: This case (value 373) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:392: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:402: unterminated_case: This case (value 375) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:404: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:437: unterminated_case: This case (value 435) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_x86.C:439: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:2251: unterminated_case: This case (value 2) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:2254: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:2211: unterminated_case: This case (value 2) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/handler.C:2216: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2098: unterminated_case: This case (value 1001) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2100: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2105: unterminated_case: This case (value 1003) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2107: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1779: unterminated_case: This case (value 1001) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1781: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1819: unterminated_case: This case (value 1003) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/inst-x86.C:1821: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Expression.C:59: unterminated_case: This case (value 10) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Expression.C:61: fallthrough: The above case falls through to this one.

Error: MISSING_BREAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:1353: unterminated_case: This case (value 8) is not terminated by a 'break' statement.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:1357: fallthrough: The above case falls through to this one.

Error: NEGATIVE_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:291: negative_return_fn: Function "lseek(this->fd, 0L, 1)" returns a negative number.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:291: var_assign: Assigning: signed variable "old_offset" = "lseek".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:298: negative_returns: "old_offset" is passed to a parameter that cannot be negative.

Error: NEGATIVE_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:291: negative_return_fn: Function "lseek(this->fd, 0L, 1)" returns a negative number.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:291: var_assign: Assigning: signed variable "old_offset" = "lseek".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:298: negative_returns: "old_offset" is passed to a parameter that cannot be negative.

Error: NO_EFFECT:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTlinux.c:581: unsigned_compare: This greater-than-or-equal-to-zero comparison of an unsigned value is always true. "new_pos >= 0U".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:112: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:112: var_assigned: Assigning: "l_demangled_raw" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:115: dereference: Dereferencing a pointer that might be null "l_demangled_raw" when calling "strcmp". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:858: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:858: var_assigned: Assigning: "dupstring" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:859: dereference: Dereferencing a pointer that might be null "dupstring" when calling "strcpy". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:740: example_assign: Assigning: "mobj" = return value from "as[0UL]->findObject(startAddr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:741: example_checked: "mobj" has its value checked in "mobj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:799: example_assign: Assigning: "obj" = return value from "as[0UL]->findObject(addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:800: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:690: example_assign: Assigning: "obj" = return value from "as[0UL]->findObject((Dyninst::Address)addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:691: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1436: example_assign: Assigning: "obj" = return value from "this->findObject(ri.orig)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1437: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1457: example_assign: Assigning: "obj" = return value from "this->findObject(addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1458: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2356: returned_null: Function "AddressSpace::findObject(unsigned long) const" returns null (checked 20 out of 25 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:881: return_null: Explicitly returning NULL.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2356: var_assigned: Assigning: "obj" = null return value from "AddressSpace::findObject(unsigned long) const".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2358: dereference: Dereferencing a pointer that might be null "obj" when calling "mapped_object::setCodeBytesUpdated(bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:2082: deref_parm: Directly dereferencing parameter "this".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:740: example_assign: Assigning: "mobj" = return value from "as[0UL]->findObject(startAddr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:741: example_checked: "mobj" has its value checked in "mobj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:799: example_assign: Assigning: "obj" = return value from "as[0UL]->findObject(addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:800: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:690: example_assign: Assigning: "obj" = return value from "as[0UL]->findObject((Dyninst::Address)addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:691: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1436: example_assign: Assigning: "obj" = return value from "this->findObject(ri.orig)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1437: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1457: example_assign: Assigning: "obj" = return value from "this->findObject(addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:1458: example_checked: "obj" has its value checked in "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2398: returned_null: Function "AddressSpace::findObject(unsigned long) const" returns null (checked 20 out of 25 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/addressSpace.C:881: return_null: Explicitly returning NULL.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2398: var_assigned: Assigning: "curObject" = null return value from "AddressSpace::findObject(unsigned long) const".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2400: dereference: Dereferencing a pointer that might be null "curObject" when calling "mapped_object::findBlocksByRange(unsigned long, unsigned long, std::list<block_instance *, std::allocator<block_instance *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:1156: deref_parm_in_call: Function "mapped_object::codeBase() const" dereferences parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.h:163: deref_parm: Directly dereferencing parameter "this".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_point.C:246: example_assign: Assigning: "fte" = return value from "this->point->block()->getFallthrough()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_point.C:247: example_checked: "fte" has its value checked in "fte".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/block.C:84: example_assign: Assigning: "ft" = return value from "this->getFallthrough()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/block.C:85: example_checked: "ft" has its value checked in "ft".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:3142: example_assign: Assigning: "fallthrough" = return value from "callB->getFallthrough()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:3143: example_checked: "fallthrough" has its value checked in "fallthrough".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:855: example_checked: "(*bIter)->lowlevel_block()->getFallthrough()" has its value checked in "NULL == (*bIter)->lowlevel_block()->getFallthrough()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:366: example_assign: Assigning: "ftE" = return value from "this->block()->getFallthrough()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/instPoint.C:367: example_checked: "ftE" has its value checked in "ftE".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2809: returned_null: Function "block_instance::getFallthrough()" returns null (checked 6 out of 7 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/block.C:80: return_null: Explicitly returning NULL.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2809: dereference: Dereferencing a pointer that might be null "callB->getFallthrough()" when calling "edge_instance::trg() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/edge.C:33: deref_parm: Directly dereferencing parameter "this".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:79: example_checked: "getenv("DYNINST_DEBUG_ANNOTATIONS")" has its value checked in "p = getenv("DYNINST_DEBUG_ANNOTATIONS")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:83: example_checked: "getenv("DYNINST_DEBUG_ANNOTATION")" has its value checked in "p = getenv("DYNINST_DEBUG_ANNOTATION")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:87: example_checked: "getenv("DYNINST_DEBUG_ANNOTATABLE")" has its value checked in "p = getenv("DYNINST_DEBUG_ANNOTATABLE")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate.C:275: example_assign: Assigning: "p" = return value from "getenv("DYNINST_DEBUG_TRANSLATE")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate.C:276: example_checked: "p" has its value checked in "p".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/debug_common.C:50: example_checked: "getenv("COMMON_DEBUG_DWARF")" has its value checked in "getenv("COMMON_DEBUG_DWARF")".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux.C:427: returned_null: Function "getenv" returns null (checked 78 out of 82 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/linux.C:427: dereference: Dereferencing a pointer that might be null "getenv("LD_LIBRARY_PATH")" when calling "strdup". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:968: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:968: dereference: Dereferencing a pointer that might be null "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" when calling "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:988: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:988: dereference: Dereferencing a pointer that might be null "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" when calling "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:930: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:930: dereference: Dereferencing a pointer that might be null "strdup(s)" when calling "std::basic_ostream<char, std::char_traits<char> > &std::operator << <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> > &, char const *)".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:935: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:935: dereference: Dereferencing a pointer that might be null "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" when calling "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:195: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:195: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:196: dereference: Dereferencing a pointer that might be null "errString" when calling "dynCerror".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:925: deref_parm_in_call: Function "strlen" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:217: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:217: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:218: dereference: Dereferencing a pointer that might be null "errString" when calling "dynCerror".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:925: deref_parm_in_call: Function "strlen" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:235: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:235: var_assigned: Assigning: "eM" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:236: dereference: Dereferencing a pointer that might be null "eM" when calling "yyerrorNoTok".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:963: deref_parm_in_call: Function "std::basic_ostream<char, std::char_traits<char> > &std::operator << <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> > &, char const *)" dereferences parameter "s".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:248: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:248: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:249: dereference: Dereferencing a pointer that might be null "errString" when calling "dynCerror".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:925: deref_parm_in_call: Function "strlen" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:273: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:273: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:274: dereference: Dereferencing a pointer that might be null "errString" when calling "dynCerror".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:925: deref_parm_in_call: Function "strlen" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:308: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:308: var_assigned: Assigning: "eM" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:309: dereference: Dereferencing a pointer that might be null "eM" when calling "yyerrorNoTok".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:963: deref_parm_in_call: Function "std::basic_ostream<char, std::char_traits<char> > &std::operator << <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> > &, char const *)" dereferences parameter "s".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:320: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:320: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:321: dereference: Dereferencing a pointer that might be null "errString" when calling "dynCerror".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:925: deref_parm_in_call: Function "strlen" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:478: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:478: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:479: dereference: Dereferencing a pointer that might be null "errString" when calling "yyerrorNoTok".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:963: deref_parm_in_call: Function "std::basic_ostream<char, std::char_traits<char> > &std::operator << <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> > &, char const *)" dereferences parameter "s".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:590: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:590: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:591: dereference: Dereferencing a pointer that might be null "errString" when calling "dynCerror".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:925: deref_parm_in_call: Function "strlen" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:624: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:624: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:625: dereference: Dereferencing a pointer that might be null "errString" when calling "dynCerror".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:925: deref_parm_in_call: Function "strlen" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:629: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:629: var_assigned: Assigning: "errString" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:630: dereference: Dereferencing a pointer that might be null "errString" when calling "yyerrorNonUni".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:946: deref_parm_in_call: Function "std::basic_ostream<char, std::char_traits<char> > &std::operator << <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> > &, char const *)" dereferences parameter "s".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:57: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:57: var_assigned: Assigning: "mutS" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:61: dereference: Dereferencing a pointer that might be null "mutS" when calling "set_lex_input".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.l:243: deref_parm_in_call: Function "dynC_scan_string(char const *)" dereferences parameter "str".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/lex.dynC.c:2432: deref_parm: Directly dereferencing parameter "yy_str".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:120: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:120: var_assigned: Assigning: "mutS" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:121: dereference: Dereferencing a pointer that might be null "mutS" when calling "set_lex_input".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.l:243: deref_parm_in_call: Function "dynC_scan_string(char const *)" dereferences parameter "str".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/lex.dynC.c:2432: deref_parm: Directly dereferencing parameter "yy_str".

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:79: example_checked: "getenv("DYNINST_DEBUG_ANNOTATIONS")" has its value checked in "p = getenv("DYNINST_DEBUG_ANNOTATIONS")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:83: example_checked: "getenv("DYNINST_DEBUG_ANNOTATION")" has its value checked in "p = getenv("DYNINST_DEBUG_ANNOTATION")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:87: example_checked: "getenv("DYNINST_DEBUG_ANNOTATABLE")" has its value checked in "p = getenv("DYNINST_DEBUG_ANNOTATABLE")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate.C:275: example_assign: Assigning: "p" = return value from "getenv("DYNINST_DEBUG_TRANSLATE")".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate.C:276: example_checked: "p" has its value checked in "p".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/debug_common.C:50: example_checked: "getenv("COMMON_DEBUG_DWARF")" has its value checked in "getenv("COMMON_DEBUG_DWARF")".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:146: returned_null: Function "getenv" returns null (checked 78 out of 82 times).
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:146: var_assigned: Assigning: "pathenv" = null return value from "getenv".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:147: dereference: Dereferencing a pointer that might be null "pathenv" when calling "strdup". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:194: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:194: var_assigned: Assigning: "cstr" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:195: dereference: Dereferencing a pointer that might be null "cstr" when calling "dynC_API::createSnippet(char const *, BPatch_addressSpace &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:120: deref_parm_in_call: Function "strdup" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:216: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:216: var_assigned: Assigning: "cstr" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:217: dereference: Dereferencing a pointer that might be null "cstr" when calling "dynC_API::createSnippet(char const *, BPatch_addressSpace &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:120: deref_parm_in_call: Function "strdup" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:174: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:174: var_assigned: Assigning: "cstr" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:175: dereference: Dereferencing a pointer that might be null "cstr" when calling "dynC_API::createSnippet(char const *, std::vector<BPatch_point *, std::allocator<BPatch_point *> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:57: deref_parm_in_call: Function "strdup" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:154: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:154: var_assigned: Assigning: "cstr" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:155: dereference: Dereferencing a pointer that might be null "cstr" when calling "dynC_API::createSnippet(char const *, BPatch_point &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:111: deref_parm_in_call: Function "dynC_API::createSnippet(char const *, std::vector<BPatch_point *, std::allocator<BPatch_point *> >)" dereferences parameter "s".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:57: deref_parm_in_call: Function "strdup" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:201: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:201: var_assigned: Assigning: "cstr" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:202: dereference: Dereferencing a pointer that might be null "cstr" when calling "dynC_API::createSnippet(char const *, BPatch_point &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:111: deref_parm_in_call: Function "dynC_API::createSnippet(char const *, std::vector<BPatch_point *, std::allocator<BPatch_point *> >)" dereferences parameter "s".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:57: deref_parm_in_call: Function "strdup" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: NULL_RETURNS:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:208: returned_null: Function "strdup" returns null.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:208: var_assigned: Assigning: "cstr" = null return value from "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:209: dereference: Dereferencing a pointer that might be null "cstr" when calling "dynC_API::createSnippet(char const *, std::vector<BPatch_point *, std::allocator<BPatch_point *> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:57: deref_parm_in_call: Function "strdup" dereferences parameter "s". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)

Error: OVERRUN_DYNAMIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:947: buffer_alloc: Calling allocating function "realloc" which allocated memory dictated by argument "cur_size".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:947: var_assign: Assigning: "buffer" = "realloc(buffer, cur_size)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:944: symbolic_compare: Tracking "cur_pos" since "cur_size" is tracked with "buffer".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:936: overrun-local: Overrunning dynamic array "buffer" at offset corresponding to index variable "cur_pos" through dereference in call to "read".

Error: OVERRUN_DYNAMIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5160: alloc_strlen: Allocating insufficient memory for the terminating null of the string.

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:971: assignment: Assigning: "cur_pos" = "0U".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:977: assignment: Assigning: "line_size" = "(next_end - cur_pos > 1024U) ? 1024U : (next_end - cur_pos)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:979: overrun-local: Overrunning static array "line", with 1024 elements, at position 1024 with index variable "line_size".

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:818: overrun-string: Static array "mangledName" of size 100 is overrun if the index used is too large.

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:566: overrun-call: Overrunning callee's array of size 14 by passing index "_ZN7Dyninst14InstructionAPI11amd64_ext_8E" of value 14 in call to function "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable(this->m_Arch, _ZN7Dyninst14InstructionAPI11amd64_ext_8E, intelReg)".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:538: index_parm: Indexing "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable32" with "bank".

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:563: overrun-call: Overrunning callee's array of size 14 by passing index "_ZN7Dyninst14InstructionAPI12amd64_ext_16E" of value 15 in call to function "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable(this->m_Arch, _ZN7Dyninst14InstructionAPI12amd64_ext_16E, intelReg)".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:538: index_parm: Indexing "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable32" with "bank".

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:574: overrun-call: Overrunning callee's array of size 14 by passing index "_ZN7Dyninst14InstructionAPI12amd64_ext_16E" of value 15 in call to function "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable(this->m_Arch, _ZN7Dyninst14InstructionAPI12amd64_ext_16E, intelReg)".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:538: index_parm: Indexing "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable32" with "bank".

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:581: overrun-call: Overrunning callee's array of size 14 by passing index "_ZN7Dyninst14InstructionAPI12amd64_ext_16E" of value 15 in call to function "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable(this->m_Arch, _ZN7Dyninst14InstructionAPI12amd64_ext_16E, intelReg)".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:538: index_parm: Indexing "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable32" with "bank".

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:560: overrun-call: Overrunning callee's array of size 14 by passing index "_ZN7Dyninst14InstructionAPI12amd64_ext_32E" of value 16 in call to function "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable(this->m_Arch, _ZN7Dyninst14InstructionAPI12amd64_ext_32E, intelReg)".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:538: index_parm: Indexing "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable32" with "bank".

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:579: overrun-call: Overrunning callee's array of size 14 by passing index "_ZN7Dyninst14InstructionAPI12amd64_ext_32E" of value 16 in call to function "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable(this->m_Arch, _ZN7Dyninst14InstructionAPI12amd64_ext_32E, intelReg)".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:538: index_parm: Indexing "_INTERNAL_24_InstructionDecoder_x86_C_ded006df::Dyninst::InstructionAPI::IntelRegTable32" with "bank".

Error: OVERRUN_STATIC:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/linux-x86-swk.C:89: ptr_assign: Pointer "frames" is assigned the address of a static array pointer "frames_32" of size 16 bytes.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/linux-x86-swk.C:102: overrun-local: Overrunning static array of size 16 bytes at byte position 16 by indexing pointer "frames" with index variable "i".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/linux-x86-swk.C:102: overrun-local: Note: These bugs are often difficult to see at first glance.  Coverity recommends a close inspection of the events leading to this overrun.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2117: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2117: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Symbol::Symbol(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &, Dyninst::SymtabAPI::Symbol::SymbolType, Dyninst::SymtabAPI::Symbol::SymbolLinkage, Dyninst::SymtabAPI::Symbol::SymbolVisibility, unsigned long, Dyninst::SymtabAPI::Module *, Dyninst::SymtabAPI::Region *, unsigned int, bool, bool, int, int, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symbol.C:510:9: noescape: "Dyninst::SymtabAPI::Symbol::Symbol(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &, Dyninst::SymtabAPI::Symbol::SymbolType, Dyninst::SymtabAPI::Symbol::SymbolLinkage, Dyninst::SymtabAPI::Symbol::SymbolVisibility, unsigned long, Dyninst::SymtabAPI::Module *, Dyninst::SymtabAPI::Region *, unsigned int, bool, bool, int, int, bool)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2117: var_assign: Assigning: "newsym" =  storage returned from "new Dyninst::SymtabAPI::Symbol(sname, stype, slinkage, svisibility, soffset, NULL, sec, ssize, false, secNumber == 65521U, ind, strindex, secNumber == 65522U)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2135: noescape: Variable "newsym" is not freed or pointed-to in function "Dyninst::SymtabAPI::Object::handle_opd_symbol(Dyninst::SymtabAPI::Region *, Dyninst::SymtabAPI::Symbol *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:1991:56: noescape: "Dyninst::SymtabAPI::Object::handle_opd_symbol(Dyninst::SymtabAPI::Region *, Dyninst::SymtabAPI::Symbol *)" does not free or save its pointer parameter "sym".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2135: overwrite_var: Overwriting "newsym" in call "newsym = this->handle_opd_symbol(sec, newsym)" leaks the storage that "newsym" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2213: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Data::get_verDefSym()".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:796: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:796: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:796: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Verdef::Elf_X_Verdef(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:907:15: noescape: "Dyninst::SymtabAPI::Elf_X_Verdef::Elf_X_Verdef(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:796: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Verdef(this->is64, this->data->d_buf)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2213: var_assign: Assigning: "symVersionDefs" =  storage returned from "verdefSec->get_data().get_verDefSym()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2339: leaked_storage: Variable "symVersionDefs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2215: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Data::get_verNeedSym()".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:791: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:791: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:791: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Verneed::Elf_X_Verneed(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1044:16: noescape: "Dyninst::SymtabAPI::Elf_X_Verneed::Elf_X_Verneed(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:791: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Verneed(this->is64, this->data->d_buf)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2215: var_assign: Assigning: "symVersionNeeds" =  storage returned from "verneedSec->get_data().get_verNeedSym()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2339: leaked_storage: Variable "symVersionNeeds" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2218: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Verdef::get_aux() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:963: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:963: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:963: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Verdaux::Elf_X_Verdaux(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:866:16: noescape: "Dyninst::SymtabAPI::Elf_X_Verdaux::Elf_X_Verdaux(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:963: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Verdaux(this->is64, (char *)this->data + this->vd_aux())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2218: var_assign: Assigning: "aux" =  storage returned from "symVersionDefs->get_aux()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2228: leaked_storage: Variable "aux" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2231: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Verneed::get_aux() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1088: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1088: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1088: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Vernaux::Elf_X_Vernaux(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:985:16: noescape: "Dyninst::SymtabAPI::Elf_X_Vernaux::Elf_X_Vernaux(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1088: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Vernaux(this->is64, (char *)this->data + this->vn_aux())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2231: var_assign: Assigning: "aux" =  storage returned from "symVersionNeeds->get_aux()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2242: leaked_storage: Variable "aux" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2221: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Verdaux::get_next() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:892: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:892: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:892: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Verdaux::Elf_X_Verdaux(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:866:16: noescape: "Dyninst::SymtabAPI::Elf_X_Verdaux::Elf_X_Verdaux(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:892: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Verdaux(this->is64, (char *)this->data + this->vda_next())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2221: var_assign: Assigning: "auxnext" =  storage returned from "aux->get_next()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2223: var_assign: Assigning: "aux" = "auxnext".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2224: leaked_storage: Variable "auxnext" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2228: leaked_storage: Variable "aux" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2225: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Verdef::get_next() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:970: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:970: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:970: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Verdef::Elf_X_Verdef(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:907:15: noescape: "Dyninst::SymtabAPI::Elf_X_Verdef::Elf_X_Verdef(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:970: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Verdef(this->is64, (char *)this->data + this->vd_next())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2225: var_assign: Assigning: "symVersionDefsnext" =  storage returned from "symVersionDefs->get_next()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2227: var_assign: Assigning: "symVersionDefs" = "symVersionDefsnext".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2228: leaked_storage: Variable "symVersionDefsnext" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2339: leaked_storage: Variable "symVersionDefs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2235: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Vernaux::get_next() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1029: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1029: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1029: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Vernaux::Elf_X_Vernaux(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:985:16: noescape: "Dyninst::SymtabAPI::Elf_X_Vernaux::Elf_X_Vernaux(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1029: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Vernaux(this->is64, (char *)this->data + this->vna_next())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2235: var_assign: Assigning: "auxnext" =  storage returned from "aux->get_next()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2237: var_assign: Assigning: "aux" = "auxnext".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2238: leaked_storage: Variable "auxnext" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2242: leaked_storage: Variable "aux" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2239: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X_Verneed::get_next() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1095: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1095: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1095: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Verneed::Elf_X_Verneed(bool, void *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1044:16: noescape: "Dyninst::SymtabAPI::Elf_X_Verneed::Elf_X_Verneed(bool, void *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:1095: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X_Verneed(this->is64, (char *)this->data + this->vn_next())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2239: var_assign: Assigning: "symVersionNeedsnext" =  storage returned from "symVersionNeeds->get_next()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2241: var_assign: Assigning: "symVersionNeeds" = "symVersionNeedsnext".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2242: leaked_storage: Variable "symVersionNeedsnext" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2339: leaked_storage: Variable "symVersionNeeds" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2276: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2276: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Symbol::Symbol(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &, Dyninst::SymtabAPI::Symbol::SymbolType, Dyninst::SymtabAPI::Symbol::SymbolLinkage, Dyninst::SymtabAPI::Symbol::SymbolVisibility, unsigned long, Dyninst::SymtabAPI::Module *, Dyninst::SymtabAPI::Region *, unsigned int, bool, bool, int, int, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symbol.C:510:9: noescape: "Dyninst::SymtabAPI::Symbol::Symbol(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &, Dyninst::SymtabAPI::Symbol::SymbolType, Dyninst::SymtabAPI::Symbol::SymbolLinkage, Dyninst::SymtabAPI::Symbol::SymbolVisibility, unsigned long, Dyninst::SymtabAPI::Module *, Dyninst::SymtabAPI::Region *, unsigned int, bool, bool, int, int, bool)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2276: var_assign: Assigning: "newsym" =  storage returned from "new Dyninst::SymtabAPI::Symbol(sname, stype, slinkage, svisibility, soffset, NULL, sec, ssize, true, secNumber == 65521U, ind, strindex, secNumber == 65522U)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2310: noescape: Variable "newsym" is not freed or pointed-to in function "Dyninst::SymtabAPI::Symbol::setVersionHidden()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symbol.h:207:23: noescape: "Dyninst::SymtabAPI::Symbol::setVersionHidden()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2316: noescape: Variable "newsym" is not freed or pointed-to in function "Dyninst::SymtabAPI::Object::handle_opd_symbol(Dyninst::SymtabAPI::Region *, Dyninst::SymtabAPI::Symbol *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:1991:56: noescape: "Dyninst::SymtabAPI::Object::handle_opd_symbol(Dyninst::SymtabAPI::Region *, Dyninst::SymtabAPI::Symbol *)" does not free or save its pointer parameter "sym".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:2316: overwrite_var: Overwriting "newsym" in call "newsym = this->handle_opd_symbol(sec, newsym)" leaks the storage that "newsym" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3043: alloc_fn: Calling allocation function "operator new[](unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3043: var_assign: Assigning: "sname" =  storage returned from "new char[len + 1U]".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3044: noescape: Variable "sname" is not freed or pointed-to in function "strncpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3047: noescape: Variable "sname" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3085: leaked_storage: Variable "sname" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:606: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:606: var_assign: Assigning: "scnp" =  storage returned from "new Dyninst::SymtabAPI::Elf_X_Shdr(this->elfHdr.get_shdr(i))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:607: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::isValid() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:686:18: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::isValid() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:611: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_name() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:515:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_name() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:614: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_flags() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:529:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_flags() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:617: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:647: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_type() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:522:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_type() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:656: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::isFromDebugFile() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:596:18: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::isFromDebugFile() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:694: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:696: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:554:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:697: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:698: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:702: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:703: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:706: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:712: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::get_data() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:668:24: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::get_data() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:713: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:554:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:714: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:606: overwrite_var: Overwriting "scnp" in call "scnp = new Dyninst::SymtabAPI::Elf_X_Shdr(this->elfHdr.get_shdr(i))" leaks the storage that "scnp" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:606: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:606: var_assign: Assigning: "scnp" =  storage returned from "new Dyninst::SymtabAPI::Elf_X_Shdr(this->elfHdr.get_shdr(i))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:607: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::isValid() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:686:18: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::isValid() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:611: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_name() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:515:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_name() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:614: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_flags() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:529:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_flags() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:617: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:647: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_type() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:522:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_type() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:656: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::isFromDebugFile() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:596:18: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::isFromDebugFile() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:694: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:696: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:554:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:697: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:698: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:702: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:703: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:706: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:712: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::get_data() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:668:24: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::get_data() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:713: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:554:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:714: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:625: overwrite_var: Overwriting "scnp" in call "scnp = new Dyninst::SymtabAPI::Elf_X_Shdr(this->elfHdrForDebugInfo.get_shdr(i - this->elfHdr.e_shnum()))" leaks the storage that "scnp" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:606: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:606: var_assign: Assigning: "scnp" =  storage returned from "new Dyninst::SymtabAPI::Elf_X_Shdr(this->elfHdr.get_shdr(i))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:607: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::isValid() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:686:18: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::isValid() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:611: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_name() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:515:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_name() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:614: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_flags() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:529:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_flags() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:617: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:647: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_type() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:522:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_type() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:656: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::isFromDebugFile() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:596:18: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::isFromDebugFile() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:694: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:696: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:554:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:697: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:698: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:702: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:703: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:706: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:536:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_addr() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:712: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::get_data() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:668:24: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::get_data() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:713: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:554:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_offset() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:714: noescape: Variable "scnp" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:561:27: noescape: "Dyninst::SymtabAPI::Elf_X_Shdr::sh_size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:975: leaked_storage: Variable "scnp" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1891: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1891: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<image_variable *, std::allocator<image_variable *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<image_variable *, std::allocator<image_variable *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1891: var_assign: Assigning: "res" =  storage returned from "new std::vector<image_variable *, std::allocator<image_variable *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1902: leaked_storage: Variable "res" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1829: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1829: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1829: var_assign: Assigning: "res" =  storage returned from "new std::vector<parse_func *, std::allocator<parse_func *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1840: leaked_storage: Variable "res" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: var_assign: Assigning: "res" =  storage returned from "new std::vector<parse_func *, std::allocator<parse_func *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1873: leaked_storage: Variable "res" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:109: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Elf_X::e_rand(unsigned int)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:257: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:257: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:257: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X::Elf_X(int, Elf_Cmd, Dyninst::SymtabAPI::Elf_X *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:61:8: noescape: "Dyninst::SymtabAPI::Elf_X::Elf_X(int, Elf_Cmd, Dyninst::SymtabAPI::Elf_X *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:257: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::Elf_X(this->filedes, ELF_C_READ, this)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:109: var_assign: Assigning: "elfX_Hdr" =  storage returned from "((Dyninst::SymtabAPI::Elf_X *)this->basePtr)->e_rand(member->getOffset())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:110: noescape: Variable "elfX_Hdr" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X::e_elfp() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:137:13: noescape: "Dyninst::SymtabAPI::Elf_X::e_elfp() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:116: leaked_storage: Variable "elfX_Hdr" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:132: leaked_storage: Variable "elfX_Hdr" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:139: leaked_storage: Variable "elfX_Hdr" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1923: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1923: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<image_variable *, std::allocator<image_variable *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<image_variable *, std::allocator<image_variable *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1923: var_assign: Assigning: "res" =  storage returned from "new std::vector<image_variable *, std::allocator<image_variable *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1934: leaked_storage: Variable "res" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:55: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:55: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X::Elf_X(int, Elf_Cmd, Dyninst::SymtabAPI::Elf_X *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:61:8: noescape: "Dyninst::SymtabAPI::Elf_X::Elf_X(int, Elf_Cmd, Dyninst::SymtabAPI::Elf_X *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:55: var_assign: Assigning: "arf" =  storage returned from "new Dyninst::SymtabAPI::Elf_X(this->mf->getFD(), cmd, NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:56: noescape: Variable "arf" is not freed or pointed-to in function "Dyninst::SymtabAPI::Elf_X::e_elfp() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:137:13: noescape: "Dyninst::SymtabAPI::Elf_X::e_elfp() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:63: leaked_storage: Variable "arf" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:490: alloc_fn: Calling allocation function "image::findFuncVectorByMangled(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: var_assign: Assigning: "res" = "new std::vector<parse_func *, std::allocator<parse_func *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1881: noescape: Variable "res" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1882: return_alloc: Returning allocated memory "res".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:490: var_assign: Assigning: "img_funcs" =  storage returned from "this->parse_img()->findFuncVectorByMangled(funcname)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:495: noescape: Variable "img_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:501: noescape: Variable "img_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:504: leaked_storage: Variable "img_funcs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:224: alloc_fn: Calling allocation function "P_cplus_demangle(char const *, bool, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:213: alloc_fn: Storage is returned from allocation function "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:213: var_assign: Assigning: "dedemangled" = "strdup(demangled)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:215: noescape: Variable "dedemangled" is not freed or pointed-to in function "dedemangle(char *, char *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/string-regex.C:45:43: noescape: "dedemangle(char *, char *)" does not free or save its pointer parameter "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:219: return_alloc: Returning allocated memory "dedemangled".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:224: var_assign: Assigning: "demangled" =  storage returned from "P_cplus_demangle(mangledname.c_str(), mod->exec()->isNativeCompiler(), false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:233: noescape: Variable "demangled" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator =(char const *)".
/usr/include/c++/4.7.1/bits/basic_string.h:551:31: noescape: "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator =(char const *)" does not free or save its pointer parameter "__s".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:239: leaked_storage: Variable "demangled" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:875: leaked_storage: Variable "demangled" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:538: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:538: var_assign: Assigning: "param" =  storage returned from "new Dyninst::SymtabAPI::localVar(std::string(name), ptrType, std::string(fName), linenum, symt_current_func, NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:538: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::localVar::localVar(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Type *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int, Dyninst::SymtabAPI::Function *, std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> > *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:207:11: noescape: "Dyninst::SymtabAPI::localVar::localVar(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Type *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int, Dyninst::SymtabAPI::Function *, std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> > *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:544: noescape: Variable "param" is not freed or pointed-to in function "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:247:16: noescape: "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:548: noescape: Variable "param" is not freed or pointed-to in function "Dyninst::SymtabAPI::Function::addParam(Dyninst::SymtabAPI::localVar *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Function.C:257:35: noescape: "Dyninst::SymtabAPI::Function::addParam(Dyninst::SymtabAPI::localVar *)" does not free or save its pointer parameter "param".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:554: leaked_storage: Variable "param" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:577: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:577: var_assign: Assigning: "var" =  storage returned from "new Dyninst::SymtabAPI::localVar(std::string(name), ptrType, std::string(fName), linenum, symt_current_func, NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:577: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::localVar::localVar(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Type *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int, Dyninst::SymtabAPI::Function *, std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> > *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:207:11: noescape: "Dyninst::SymtabAPI::localVar::localVar(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Type *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int, Dyninst::SymtabAPI::Function *, std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> > *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:583: noescape: Variable "var" is not freed or pointed-to in function "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:247:16: noescape: "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:585: noescape: Variable "var" is not freed or pointed-to in function "Dyninst::SymtabAPI::Function::addParam(Dyninst::SymtabAPI::localVar *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Function.C:257:35: noescape: "Dyninst::SymtabAPI::Function::addParam(Dyninst::SymtabAPI::localVar *)" does not free or save its pointer parameter "param".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:590: leaked_storage: Variable "var" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:881: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:881: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:881: var_assign: Assigning: "funlocs" =  storage returned from "new std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:882: noescape: Variable "funlocs" is not freed or pointed-to in function "decodeLocationListForStaticOffsetOrAddress(Dwarf_Locdesc **, long long, Dyninst::SymtabAPI::Symtab *, std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> > &, unsigned long, long *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:465:34: noescape: "decodeLocationListForStaticOffsetOrAddress(Dwarf_Locdesc **, long long, Dyninst::SymtabAPI::Symtab *, std::vector<Dyninst::VariableLocation, std::allocator<Dyninst::VariableLocation> > &, unsigned long, long *)" does not free or save its pointer parameter "locs".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:886: leaked_storage: Variable "funlocs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:274: alloc_fn: Calling allocation function "codeRangeTree::treeInsert(unsigned long, codeRange *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: noescape: Variable "<storage from new>" is not freed or pointed-to in function "codeRangeTree::entry::entry(unsigned long, codeRange *, codeRangeTree::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.h:141:2: noescape: "codeRangeTree::entry::entry(unsigned long, codeRange *, codeRangeTree::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: var_assign: Assigning: "z" = "new codeRangeTree::entry(key, value, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:210: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:274: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(value->get_address(), value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:289: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:274: alloc_fn: Calling allocation function "codeRangeTree::treeInsert(unsigned long, codeRange *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: noescape: Variable "<storage from new>" is not freed or pointed-to in function "codeRangeTree::entry::entry(unsigned long, codeRange *, codeRangeTree::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.h:141:2: noescape: "codeRangeTree::entry::entry(unsigned long, codeRange *, codeRangeTree::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: var_assign: Assigning: "z" = "new codeRangeTree::entry(key, value, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:210: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:274: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(value->get_address(), value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:307: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:274: alloc_fn: Calling allocation function "codeRangeTree::treeInsert(unsigned long, codeRange *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: noescape: Variable "<storage from new>" is not freed or pointed-to in function "codeRangeTree::entry::entry(unsigned long, codeRange *, codeRangeTree::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.h:141:2: noescape: "codeRangeTree::entry::entry(unsigned long, codeRange *, codeRangeTree::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:198: var_assign: Assigning: "z" = "new codeRangeTree::entry(key, value, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:210: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:274: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(value->get_address(), value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.C:321: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2120: alloc_fn: Calling allocation function "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2120: var_assign: Assigning: "moduleName" =  storage returned from "strdup("{ANONYMOUS}")".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2127: noescape: Variable "moduleName" is not freed or pointed-to in function "dwarf_printf_int(char const *, ...)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2134: leaked_storage: Variable "moduleName" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2155: noescape: Variable "moduleName" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2157: noescape: Variable "moduleName" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2177: leaked_storage: Variable "moduleName" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2180: noescape: Variable "moduleName" is not freed or pointed-to in function "dwarf_printf_int(char const *, ...)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2187: noescape: Variable "moduleName" is not freed or pointed-to in function "dwarf_printf_int(char const *, ...)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2189: leaked_storage: Variable "moduleName" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:880: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:880: var_assign: Assigning: "temp_str" =  storage returned from "malloc(strlen(foundHeaps[j].first.c_str()) + 1UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:881: noescape: Variable "temp_str" is not freed or pointed-to in function "strcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:882: noescape: Variable "temp_str" is not freed or pointed-to in function "strtok".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:889: leaked_storage: Variable "temp_str" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::treeInsert(BPatch_edge * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry::entry(BPatch_edge * const &, BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry::entry(BPatch_edge * const &, BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:829: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::treeInsert(BPatch_edge * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry::entry(BPatch_edge * const &, BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry::entry(BPatch_edge * const &, BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:847: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::treeInsert(BPatch_edge * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry::entry(BPatch_edge * const &, BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry::entry(BPatch_edge * const &, BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_edge *, comparison<BPatch_edge *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:861: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::treeInsert(BPatch_basicBlock * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:829: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::treeInsert(BPatch_basicBlock * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:847: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::treeInsert(BPatch_basicBlock * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlock *, BPatch_basicBlock::compare>::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:861: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5046: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5046: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5046: var_assign: Assigning: "currentFunctionName" =  storage returned from "new std::string(fortranName)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5208: leaked_storage: Variable "currentFunctionName" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4912: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Object::get_stab_info() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::stab_entry_64::stab_entry_64(void *, char const *, long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:195:5: noescape: "Dyninst::SymtabAPI::stab_entry_64::stab_entry_64(void *, char const *, long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::stab_entry_64(NULL, NULL, 0L)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4912: var_assign: Assigning: "stabptr" =  storage returned from "this->get_stab_info()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4920: noescape: Variable "stabptr" is not freed or pointed-to in function "Dyninst::SymtabAPI::stab_entry::getStringBase()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:129:17: noescape: "Dyninst::SymtabAPI::stab_entry::getStringBase()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4921: noescape: Variable "stabptr" is not freed or pointed-to in function "Dyninst::SymtabAPI::stab_entry::count()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:127:19: noescape: "Dyninst::SymtabAPI::stab_entry::count()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4922: noescape: Variable "stabptr" is not freed or pointed-to in function "Dyninst::SymtabAPI::stab_entry::count()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:127:19: noescape: "Dyninst::SymtabAPI::stab_entry::count()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5208: leaked_storage: Variable "stabptr" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5160: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5160: var_assign: Assigning: "ptr3" =  storage returned from "malloc(strlen(ptr) + strlen(ptr2))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5161: noescape: Variable "ptr3" is not freed or pointed-to in function "strcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5163: noescape: Variable "ptr3" is not freed or pointed-to in function "strcat".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5164: var_assign: Assigning: "ptr" = "ptr3".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5157: noescape: Variable "ptr" is not freed or pointed-to in function "strlen".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5160: noescape: Variable "ptr" is not freed or pointed-to in function "strlen".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5160: overwrite_var: Overwriting "ptr3" in call "ptr3 = (char *)malloc(strlen(ptr) + strlen(ptr2))" leaks the storage that "ptr3" points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5161: noescape: Variable "ptr" is not freed or pointed-to in function "strcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5162: noescape: Variable "ptr" is not freed or pointed-to in function "strlen".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5164: overwrite_var: Overwriting "ptr" in call "ptr = ptr3" leaks the storage that "ptr" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::treeInsert(BPatch_basicBlock * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:829: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::treeInsert(BPatch_basicBlock * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:847: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::treeInsert(BPatch_basicBlock * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry::entry(BPatch_basicBlock * const &, BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlock *, comparison<BPatch_basicBlock *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:861: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4438: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Object::get_stab_info() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::stab_entry_64::stab_entry_64(void *, char const *, long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:195:5: noescape: "Dyninst::SymtabAPI::stab_entry_64::stab_entry_64(void *, char const *, long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3254: return_alloc: Returning allocated memory "new Dyninst::SymtabAPI::stab_entry_64(NULL, NULL, 0L)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4438: var_assign: Assigning: "stabEntry" =  storage returned from "this->get_stab_info()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4440: noescape: Variable "stabEntry" is not freed or pointed-to in function "Dyninst::SymtabAPI::stab_entry::getStringBase()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:129:17: noescape: "Dyninst::SymtabAPI::stab_entry::getStringBase()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4452: noescape: Variable "stabEntry" is not freed or pointed-to in function "Dyninst::SymtabAPI::stab_entry::count()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:127:19: noescape: "Dyninst::SymtabAPI::stab_entry::count()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4671: leaked_storage: Variable "stabEntry" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::treeInsert(dominatorBB * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry::entry(dominatorBB * const &, BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry::entry(dominatorBB * const &, BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:829: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::treeInsert(dominatorBB * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry::entry(dominatorBB * const &, BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry::entry(dominatorBB * const &, BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:847: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::treeInsert(dominatorBB * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry::entry(dominatorBB * const &, BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry::entry(dominatorBB * const &, BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<dominatorBB *, comparison<dominatorBB *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:861: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:648: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:648: noescape: Variable "<storage from new>" is not freed or pointed-to in function "r_debug_dyn<r_debug>::r_debug_dyn(Dyninst::ProcessReader *, unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:160:25: noescape: "r_debug_dyn<r_debug>::r_debug_dyn(Dyninst::ProcessReader *, unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:648: var_assign: Assigning: "r_debug_native" =  storage returned from "new r_debug_dyn<r_debug>(this->reader, this->r_debug_addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:653: noescape: Variable "r_debug_native" is not freed or pointed-to in function "r_debug_dyn<r_debug>::is_valid()".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:182:30: noescape: "r_debug_dyn<r_debug>::is_valid()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:654: leaked_storage: Variable "r_debug_native" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:659: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:659: noescape: Variable "<storage from new>" is not freed or pointed-to in function "r_debug_dyn<r_debug_dyn32>::r_debug_dyn(Dyninst::ProcessReader *, unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:160:25: noescape: "r_debug_dyn<r_debug_dyn32>::r_debug_dyn(Dyninst::ProcessReader *, unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:659: var_assign: Assigning: "r_debug_32" =  storage returned from "new r_debug_dyn<r_debug_dyn32>(this->reader, this->r_debug_addr)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:664: noescape: Variable "r_debug_32" is not freed or pointed-to in function "r_debug_dyn<r_debug_dyn32>::is_valid()".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:182:30: noescape: "r_debug_dyn<r_debug_dyn32>::is_valid()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:665: leaked_storage: Variable "r_debug_32" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:355: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:355: var_assign: Assigning: "frame" =  storage returned from "new Dyninst::ParseAPI::ParseFrame(*funcs.begin(), this->_parse_data)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:355: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::ParseAPI::ParseFrame::ParseFrame(Dyninst::ParseAPI::Function *, Dyninst::ParseAPI::ParseData *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/ParseData.h:122:5: noescape: "Dyninst::ParseAPI::ParseFrame::ParseFrame(Dyninst::ParseAPI::Function *, Dyninst::ParseAPI::ParseData *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:366: noescape: Variable "frame" is not freed or pointed-to in function "std::vector<Dyninst::ParseAPI::ParseWorkBundle *, std::allocator<Dyninst::ParseAPI::ParseWorkBundle *> >::push_back(Dyninst::ParseAPI::ParseWorkBundle * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<Dyninst::ParseAPI::ParseWorkBundle *, std::allocator<Dyninst::ParseAPI::ParseWorkBundle *> >::push_back(Dyninst::ParseAPI::ParseWorkBundle * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:368: noescape: Variable "frame" is not freed or pointed-to in function "Dyninst::ParseAPI::ParseFrame::pushWork(Dyninst::ParseAPI::ParseWorkElem *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/ParseData.h:86:10: noescape: "Dyninst::ParseAPI::ParseFrame::pushWork(Dyninst::ParseAPI::ParseWorkElem *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:370: noescape: Variable "frame" is not freed or pointed-to in function "Dyninst::ParseAPI::Parser::init_frame(Dyninst::ParseAPI::ParseFrame &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:742:33: noescape: "Dyninst::ParseAPI::Parser::init_frame(Dyninst::ParseAPI::ParseFrame &)" does not free or save its pointer parameter "frame".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:377: leaked_storage: Variable "frame" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2268: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2268: var_assign: Assigning: "lineInfo" =  storage returned from "new std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > >(10UL, std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > >::hasher({}), std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > >::key_equal({}), std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > >::allocator_type())".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2268: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > >::unordered_map(unsigned long, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > const &, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > const &, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > const &)".
/usr/include/c++/4.7.1/tr1/unordered_map.h:193:7: noescape: "std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > >::unordered_map(unsigned long, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > const &, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > const &, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2277: leaked_storage: Variable "lineInfo" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2279: noescape: Variable "lineInfo" is not freed or pointed-to in function "Dyninst::SymtabAPI::Object::parseFileLineInfo(Dyninst::SymtabAPI::Symtab *, std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4849:83: noescape: "Dyninst::SymtabAPI::Object::parseFileLineInfo(Dyninst::SymtabAPI::Symtab *, std::tr1::unordered_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::LineInformation, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> > > &)" does not free or save its pointer parameter "li".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2284: noescape: Variable "lineInfo" is not freed or pointed-to in function "std::tr1::_Hashtable<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation>, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::__detail::_Mod_range_hashing, std::tr1::__detail::_Default_ranged_hash, std::tr1::__detail::_Prime_rehash_policy, false, false, true>::begin()".
/usr/include/c++/4.7.1/tr1/hashtable.h:218:7: noescape: "std::tr1::_Hashtable<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation>, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::__detail::_Mod_range_hashing, std::tr1::__detail::_Default_ranged_hash, std::tr1::__detail::_Prime_rehash_policy, false, false, true>::begin()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2284: noescape: Variable "lineInfo" is not freed or pointed-to in function "std::tr1::_Hashtable<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation>, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::__detail::_Mod_range_hashing, std::tr1::__detail::_Default_ranged_hash, std::tr1::__detail::_Prime_rehash_policy, false, false, true>::end()".
/usr/include/c++/4.7.1/tr1/hashtable.h:236:7: noescape: "std::tr1::_Hashtable<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation>, std::allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dyninst::SymtabAPI::LineInformation> >, std::equal_to<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::hash<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::tr1::__detail::_Mod_range_hashing, std::tr1::__detail::_Default_ranged_hash, std::tr1::__detail::_Prime_rehash_policy, false, false, true>::end()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2303: leaked_storage: Variable "lineInfo" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:384: alloc_fn: Calling allocation function "dlopenThreadDB(char *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:358: alloc_fn: Storage is returned from allocation function "dlopen".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:358: var_assign: Assigning: "libhandle" = "dlopen(filename.c_str(), 1)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:368: return_alloc: Returning allocated memory "libhandle".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:384: var_assign: Assigning: "libhandle" =  storage returned from "dlopenThreadDB(NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:388: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:388: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:389: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:389: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:390: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:390: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:391: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:391: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:392: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:392: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:393: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:393: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:394: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:394: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:395: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:395: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:396: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:396: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:397: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:397: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:398: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:398: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:399: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:399: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:400: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:400: noescape: Variable "libhandle" is not freed or pointed-to in function "dlsym".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:404: leaked_storage: Variable "libhandle" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::treeInsert(BPatch_basicBlockLoop * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry::entry(BPatch_basicBlockLoop * const &, BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry::entry(BPatch_basicBlockLoop * const &, BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:829: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::treeInsert(BPatch_basicBlockLoop * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry::entry(BPatch_basicBlockLoop * const &, BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry::entry(BPatch_basicBlockLoop * const &, BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:847: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::treeInsert(BPatch_basicBlockLoop * const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry::entry(BPatch_basicBlockLoop * const &, BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry::entry(BPatch_basicBlockLoop * const &, BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_basicBlockLoop *, comparison<BPatch_basicBlockLoop *> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:861: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:506: alloc_fn: Calling allocation function "BPatch_function::findPoint(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: alloc_fn: Storage is returned from allocation function "BPatch_function::findPointInt(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "result" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:574: noescape: Variable "result" is not freed or pointed-to in function "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:479:69: noescape: "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)" does not free or save its pointer parameter "entryPoints".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:594: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: var_assign: Assigning: "ret" = "this->findPointInt(loc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:506: var_assign: Assigning: "retPoints" =  storage returned from "func->findPoint(BPatch_locExit)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:510: noescape: Variable "retPoints" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:511: noescape: Variable "retPoints" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:644: leaked_storage: Variable "retPoints" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:404: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:404: var_assign: Assigning: "dynamicTransferSnippet" =  storage returned from "new BPatch_stopThreadExpr(void (*)(BPatch_point *, void *)(badTransferCB_wrapper(BPatch_point *, void *)), dynTarget, curPoint->llpoint()->func()->obj(), true, BPatch_interpAsTarget)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:404: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_stopThreadExpr::BPatch_stopThreadExpr(void (* const &)(BPatch_point *, void *), BPatch_snippet const &, mapped_object const &, bool, BPatch_stInterpret)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1655:24: noescape: "BPatch_stopThreadExpr::BPatch_stopThreadExpr(void (* const &)(BPatch_point *, void *), BPatch_snippet const &, mapped_object const &, bool, BPatch_stInterpret)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:423: noescape: Variable "dynamicTransferSnippet" is not freed or pointed-to in function "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:339:5: noescape: "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)" does not free or save its pointer parameter "tClause".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:427: leaked_storage: Variable "dynamicTransferSnippet" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:561: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:561: var_assign: Assigning: "calcSnippet" =  storage returned from "new BPatch_constExpr(3131949278U)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:561: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_constExpr::BPatch_constExpr(unsigned int)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:261:5: noescape: "BPatch_constExpr::BPatch_constExpr(unsigned int)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:597: noescape: Variable "calcSnippet" is not freed or pointed-to in function "BPatch_stopThreadExpr::BPatch_stopThreadExpr(void (* const &)(BPatch_point *, void *), BPatch_snippet const &, bool, BPatch_stInterpret)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:750:3: noescape: "BPatch_stopThreadExpr::BPatch_stopThreadExpr(void (* const &)(BPatch_point *, void *), BPatch_snippet const &, bool, BPatch_stInterpret)" does not free or save its pointer parameter "calculation".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:611: leaked_storage: Variable "calcSnippet" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:99: alloc_fn: Calling allocation function "getLinuxMaps(int, unsigned int &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:965: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:965: var_assign: Assigning: "maps" = "malloc(560UL * (no_lines + 1U))".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:966: noescape: Variable "maps" is not freed or pointed-to in function "memset".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:1013: return_alloc: Returning allocated memory "maps".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:99: var_assign: Assigning: "maps" =  storage returned from "getLinuxMaps(getpid(), nEntries)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:129: leaked_storage: Variable "maps" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:91: alloc_fn: Calling allocation function "getLinuxMaps(int, unsigned int &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:965: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:965: var_assign: Assigning: "maps" = "malloc(560UL * (no_lines + 1U))".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:966: noescape: Variable "maps" is not freed or pointed-to in function "memset".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:1013: return_alloc: Returning allocated memory "maps".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:91: var_assign: Assigning: "maps" =  storage returned from "getLinuxMaps(getpid(), nEntries)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:121: leaked_storage: Variable "maps" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1582: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1582: var_assign: Assigning: "newdata64" =  storage returned from "malloc(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1623: noescape: Variable "newdata64" is not freed or pointed-to in function "memcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1637: leaked_storage: Variable "newdata64" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1663: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1663: var_assign: Assigning: "newdata64" =  storage returned from "malloc(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1663: overwrite_var: Overwriting "newdata64" in call "newdata64 = (Elf_Data64 *)malloc(40UL)" leaks the storage that "newdata64" points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1765: noescape: Variable "newdata64" is not freed or pointed-to in function "memcpy".

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1656: leaked_storage: Variable "newdata64" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1661: leaked_storage: Variable "newdata64" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1663: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1663: var_assign: Assigning: "newdata64" =  storage returned from "malloc(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1765: noescape: Variable "newdata64" is not freed or pointed-to in function "memcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1784: leaked_storage: Variable "newdata64" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1263: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1263: var_assign: Assigning: "newdata64" =  storage returned from "malloc(40UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1264: noescape: Variable "newdata64" is not freed or pointed-to in function "memset".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1513: noescape: Variable "newdata64" is not freed or pointed-to in function "memcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1541: leaked_storage: Variable "newdata64" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1562: leaked_storage: Variable "newdata64" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2001: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2001: var_assign: Assigning: "rels" =  storage returned from "malloc(16UL * (relocation_table->size() + newRels.size()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2131: leaked_storage: Variable "rels" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2183: leaked_storage: Variable "rels" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2002: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2002: var_assign: Assigning: "relas" =  storage returned from "malloc(24UL * (relocation_table->size() + newRels.size()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2131: leaked_storage: Variable "relas" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2183: leaked_storage: Variable "relas" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2001: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2001: var_assign: Assigning: "rels" =  storage returned from "malloc(16UL * (relocation_table->size() + newRels.size()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2140: var_assign: Assigning: "buffer" = "rels".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2149: overwrite_var: Overwriting "buffer" in call "buffer = relas" leaks the storage that "buffer" points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2183: leaked_storage: Variable "rels" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2152: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2152: var_assign: Assigning: "rels" =  storage returned from "malloc(8UL * (relocation_table->size() + newRels.size()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2254: leaked_storage: Variable "rels" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2314: leaked_storage: Variable "rels" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2153: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2153: var_assign: Assigning: "relas" =  storage returned from "malloc(12UL * (relocation_table->size() + newRels.size()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2254: leaked_storage: Variable "relas" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2314: leaked_storage: Variable "relas" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2152: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2152: var_assign: Assigning: "rels" =  storage returned from "malloc(8UL * (relocation_table->size() + newRels.size()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2263: var_assign: Assigning: "buffer" = "rels".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2273: overwrite_var: Overwriting "buffer" in call "buffer = relas" leaks the storage that "buffer" points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2314: leaked_storage: Variable "rels" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1863: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf64::createDynamicSection(void *, unsigned int, Elf64_Dyn *&, unsigned int &, unsigned int &, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > &)" on "dynsecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2366: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2366: var_assign: Assigning: "dynsecData" = "malloc(dynsecSize * 16UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1940: leaked_storage: Variable "dynsecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1830: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf64::createHashSection(Dyninst::SymtabAPI::Symtab *, unsigned int *&, unsigned int &, std::vector<Dyninst::SymtabAPI::Symbol *, std::allocator<Dyninst::SymtabAPI::Symbol *> > &)" on "hashsecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2333: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2333: var_assign: Assigning: "hashsecData" = "malloc(hashsecSize * 4UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1940: leaked_storage: Variable "hashsecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1826: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf64::createSymbolVersions(Dyninst::SymtabAPI::Symtab *, unsigned short *&, char *&, unsigned int &, char *&, unsigned int &, unsigned int &, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > &)" on "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2257: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2257: var_assign: Assigning: "verdefSecData" = "malloc(verdefSecSize)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2261: var_assign: Assigning: "verdef" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2273: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2273: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2261: var_assign: Assigning: "verdef" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2273: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2261: var_assign: Assigning: "verdef" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2273: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1940: leaked_storage: Variable "verdefSecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1826: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf64::createSymbolVersions(Dyninst::SymtabAPI::Symtab *, unsigned short *&, char *&, unsigned int &, char *&, unsigned int &, unsigned int &, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > &)" on "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2207: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2207: var_assign: Assigning: "verneedSecData" = "malloc(verneedSecSize)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2223: var_assign: Assigning: "verneed" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2238: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2238: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2223: var_assign: Assigning: "verneed" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2238: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2223: var_assign: Assigning: "verneed" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2238: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1940: leaked_storage: Variable "verneedSecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2011: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf::createDynamicSection(void *, unsigned int, Elf32_Dyn *&, unsigned int &, unsigned int &, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > &)" on "dynsecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2506: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2506: var_assign: Assigning: "dynsecData" = "malloc(dynsecSize * 8UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2090: leaked_storage: Variable "dynsecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1979: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf::createHashSection(Dyninst::SymtabAPI::Symtab *, unsigned int *&, unsigned int &, std::vector<Dyninst::SymtabAPI::Symbol *, std::allocator<Dyninst::SymtabAPI::Symbol *> > &)" on "hashsecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2471: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2471: var_assign: Assigning: "hashsecData" = "malloc(hashsecSize * 4UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2090: leaked_storage: Variable "hashsecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1975: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf::createSymbolVersions(Dyninst::SymtabAPI::Symtab *, unsigned short *&, char *&, unsigned int &, char *&, unsigned int &, unsigned int &, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > &)" on "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2391: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2391: var_assign: Assigning: "verdefSecData" = "malloc(verdefSecSize)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2396: var_assign: Assigning: "verdef" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2410: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2410: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2396: var_assign: Assigning: "verdef" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2410: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2396: var_assign: Assigning: "verdef" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2410: var_assign: Assigning: "verdaux" = "verdefSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2090: leaked_storage: Variable "verdefSecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1975: alloc_arg: Calling allocation function "Dyninst::SymtabAPI::emitElf::createSymbolVersions(Dyninst::SymtabAPI::Symtab *, unsigned short *&, char *&, unsigned int &, char *&, unsigned int &, unsigned int &, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > &)" on "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2338: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2338: var_assign: Assigning: "verneedSecData" = "malloc(verneedSecSize)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2355: var_assign: Assigning: "verneed" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2371: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2371: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2355: var_assign: Assigning: "verneed" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2371: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2355: var_assign: Assigning: "verneed" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2371: var_assign: Assigning: "vernaux" = "verneedSecData".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2090: leaked_storage: Variable "verneedSecData" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:759: alloc_fn: Calling allocation function "BPatch_module::getProcedures(bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_module.h:179: alloc_fn: Storage is returned from allocation function "BPatch_module::getProceduresInt(bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:325: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:325: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:325: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_function *, std::allocator<BPatch_function *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_function *, std::allocator<BPatch_function *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:325: var_assign: Assigning: "funcs" = "new std::vector<BPatch_function *, std::allocator<BPatch_function *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:326: noescape: Variable "funcs" is not freed or pointed-to in function "BPatch_module::getProceduresInt(std::vector<BPatch_function *, std::allocator<BPatch_function *> > &, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:335:71: noescape: "BPatch_module::getProceduresInt(std::vector<BPatch_function *, std::allocator<BPatch_function *> > &, bool)" does not free or save its pointer parameter "funcs".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:332: return_alloc: Returning allocated memory "funcs".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_module.h:179: var_assign: Assigning: "ret" = "this->getProceduresInt(incUninstrumentable)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_module.h:179: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:759: var_assign: Assigning: "modFuncs" =  storage returned from "mod->getProcedures(false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:760: noescape: Variable "modFuncs" is not freed or pointed-to in function "std::vector<BPatch_function *, std::allocator<BPatch_function *> >::begin()".
/usr/include/c++/4.7.1/bits/stl_vector.h:518:7: noescape: "std::vector<BPatch_function *, std::allocator<BPatch_function *> >::begin()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:761: noescape: Variable "modFuncs" is not freed or pointed-to in function "std::vector<BPatch_function *, std::allocator<BPatch_function *> >::end()".
/usr/include/c++/4.7.1/bits/stl_vector.h:536:7: noescape: "std::vector<BPatch_function *, std::allocator<BPatch_function *> >::end()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:777: leaked_storage: Variable "modFuncs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:496: open_fn: Calling opening function "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:496: var_assign: Assigning: "newfd" =  handle returned from "open(fName.c_str(), 577, 488)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:500: noescape: Variable "newfd" is not closed or saved in function "elf_begin".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:503: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:519: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:526: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:766: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:779: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:789: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:794: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:473: open_fn: Calling opening function "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:473: var_assign: Assigning: "newfd" =  handle returned from "open(fName.c_str(), 577, 488)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:477: noescape: Variable "newfd" is not closed or saved in function "elf_begin".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:480: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:496: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:503: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:735: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:749: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:759: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:764: leaked_handle: Handle variable "newfd" going out of scope leaks the handle.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<unsigned short, comparison<unsigned short> >::treeInsert(unsigned short const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<unsigned short, comparison<unsigned short> >::entry::entry(unsigned short const &, BPatch_Set<unsigned short, comparison<unsigned short> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<unsigned short, comparison<unsigned short> >::entry::entry(unsigned short const &, BPatch_Set<unsigned short, comparison<unsigned short> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<unsigned short, comparison<unsigned short> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:829: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<unsigned short, comparison<unsigned short> >::treeInsert(unsigned short const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<unsigned short, comparison<unsigned short> >::entry::entry(unsigned short const &, BPatch_Set<unsigned short, comparison<unsigned short> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<unsigned short, comparison<unsigned short> >::entry::entry(unsigned short const &, BPatch_Set<unsigned short, comparison<unsigned short> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<unsigned short, comparison<unsigned short> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:847: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<unsigned short, comparison<unsigned short> >::treeInsert(unsigned short const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<unsigned short, comparison<unsigned short> >::entry::entry(unsigned short const &, BPatch_Set<unsigned short, comparison<unsigned short> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<unsigned short, comparison<unsigned short> >::entry::entry(unsigned short const &, BPatch_Set<unsigned short, comparison<unsigned short> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<unsigned short, comparison<unsigned short> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:861: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:108: alloc_fn: Calling allocation function "BPatch_addressSpace::malloc(BPatch_type const &, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:385: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::mallocByType(BPatch_type const &, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:620: alloc_fn: Storage is returned from allocation function "BPatch_variableExpr::makeVariableExpr(BPatch_addressSpace *, AddressSpace *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, void *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: var_assign: Assigning: "<storage from new>" = "operator new(96UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1018:22: noescape: "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: return_alloc: Returning allocated memory "new BPatch_variableExpr(in_addSpace, in_llAddSpace, v, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:620: var_assign: Assigning: "varExpr" = "BPatch_variableExpr::makeVariableExpr(this, as[0UL], std::string(name), mem, t)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:621: return_alloc: Returning allocated memory "varExpr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:385: var_assign: Assigning: "ret" = "this->mallocByType(type, std::string(name))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:385: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:108: var_assign: Assigning: "varExpr" =  storage returned from "this->addSpace->malloc(array, std::string("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:109: noescape: Variable "varExpr" is not freed or pointed-to in function "BPatch_variableExpr::getBaseAddr()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:564:5: noescape: "BPatch_variableExpr::getBaseAddr()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:109: overwrite_var: Overwriting "varExpr" in call "varExpr = this->addSpace->createVariable(std::string(name, std::allocator<char>()), (Dyninst::Address)varExpr->getBaseAddr(), array)" leaks the storage that "varExpr" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:245: alloc_fn: Calling allocation function "BPatch_function::getParams()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:250: alloc_fn: Storage is returned from allocation function "BPatch_function::getParamsInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:538: alloc_fn: Storage is returned from allocation function "BPatch_localVarCollection::getAllVars()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: var_assign: Assigning: "localVarVec" = "new std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:110: noescape: Variable "localVarVec" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::push_back(BPatch_localVar * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::push_back(BPatch_localVar * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:112: return_alloc: Returning allocated memory "localVarVec".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:538: return_alloc_fn: Directly returning storage allocated by "BPatch_localVarCollection::getAllVars()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:250: var_assign: Assigning: "ret" = "this->getParamsInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:250: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:245: var_assign: Assigning: "locals" =  storage returned from "this->point->getFunction()->getParams()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:246: noescape: Variable "locals" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:251: leaked_storage: Variable "locals" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:254: noescape: Variable "locals" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:258: leaked_storage: Variable "locals" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:260: leaked_storage: Variable "locals" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:210: alloc_fn: Calling allocation function "BPatch_function::getParams()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:250: alloc_fn: Storage is returned from allocation function "BPatch_function::getParamsInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:538: alloc_fn: Storage is returned from allocation function "BPatch_localVarCollection::getAllVars()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:106: var_assign: Assigning: "localVarVec" = "new std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:110: noescape: Variable "localVarVec" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::push_back(BPatch_localVar * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::push_back(BPatch_localVar * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_collections.C:112: return_alloc: Returning allocated memory "localVarVec".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:538: return_alloc_fn: Directly returning storage allocated by "BPatch_localVarCollection::getAllVars()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:250: var_assign: Assigning: "ret" = "this->getParamsInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:250: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:210: var_assign: Assigning: "locals" =  storage returned from "this->point->getFunction()->getParams()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:211: noescape: Variable "locals" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:215: leaked_storage: Variable "locals" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:218: noescape: Variable "locals" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:219: noescape: Variable "locals" is not freed or pointed-to in function "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_localVar *, std::allocator<BPatch_localVar *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:220: leaked_storage: Variable "locals" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:227: leaked_storage: Variable "locals" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1004: alloc_fn: Calling allocation function "SnippetGenerator::findOrCreateVariable(char const *, char const *, void const *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:62: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::createVariable(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::createVariableInt(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:663: alloc_fn: Storage is returned from allocation function "BPatch_variableExpr::makeVariableExpr(BPatch_addressSpace *, AddressSpace *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, void *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: var_assign: Assigning: "<storage from new>" = "operator new(96UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1018:22: noescape: "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: return_alloc: Returning allocated memory "new BPatch_variableExpr(in_addSpace, in_llAddSpace, v, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:663: var_assign: Assigning: "varExpr" = "BPatch_variableExpr::makeVariableExpr(this, as[0UL], std::string(name), (void *)addr, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:669: return_alloc: Returning allocated memory "varExpr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: var_assign: Assigning: "ret" = "this->createVariableInt(std::string(name), addr, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:62: var_assign: Assigning: "varExpr" = "this->addSpace->createVariable(std::string(name, std::allocator<char>()), 0UL, bptype)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:71: noescape: Variable "varExpr" is not freed or pointed-to in function "BPatch_variableExpr::writeValue(void const *, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:548:5: noescape: "BPatch_variableExpr::writeValue(void const *, bool)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:78: return_alloc: Returning allocated memory "varExpr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1004: var_assign: Assigning: "var" =  storage returned from "snippetGen->findOrCreateVariable(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(mangledName.str()).c_str(), "int", NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1005: noescape: Variable "var" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "lOperand".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1007: noescape: Variable "var" is not freed or pointed-to in function "BPatch_boolExpr::BPatch_boolExpr(BPatch_relOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:243:5: noescape: "BPatch_boolExpr::BPatch_boolExpr(BPatch_relOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "lOperand".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1009: leaked_storage: Variable "var" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1005: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1005: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1005: var_assign: Assigning: "setFlag" =  storage returned from "new BPatch_arithExpr(BPatch_assign, var, BPatch_constExpr(1))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1006: noescape: Variable "setFlag" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "lOperand".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1009: leaked_storage: Variable "setFlag" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1006: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1006: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1006: var_assign: Assigning: "pair" =  storage returned from "new BPatch_arithExpr(BPatch_seq, setFlag, statement)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1007: noescape: Variable "pair" is not freed or pointed-to in function "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:339:5: noescape: "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)" does not free or save its pointer parameter "tClause".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1009: leaked_storage: Variable "pair" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1007: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1007: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:339:5: noescape: "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1007: var_assign: Assigning: "testFirst" =  storage returned from "new BPatch_ifExpr(BPatch_boolExpr(BPatch_eq, var, BPatch_constExpr(0)), pair)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1008: noescape: Variable "testFirst" is not freed or pointed-to in function "BPatch_snippet::operator =(BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:178:5: noescape: "BPatch_snippet::operator =(BPatch_snippet const &)" does not free or save its pointer parameter "src".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:1009: leaked_storage: Variable "testFirst" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:994: alloc_fn: Calling allocation function "SnippetGenerator::findOrCreateVariable(char const *, char const *, void const *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:62: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::createVariable(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::createVariableInt(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:663: alloc_fn: Storage is returned from allocation function "BPatch_variableExpr::makeVariableExpr(BPatch_addressSpace *, AddressSpace *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, void *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: var_assign: Assigning: "<storage from new>" = "operator new(96UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1018:22: noescape: "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: return_alloc: Returning allocated memory "new BPatch_variableExpr(in_addSpace, in_llAddSpace, v, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:663: var_assign: Assigning: "varExpr" = "BPatch_variableExpr::makeVariableExpr(this, as[0UL], std::string(name), (void *)addr, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:669: return_alloc: Returning allocated memory "varExpr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: var_assign: Assigning: "ret" = "this->createVariableInt(std::string(name), addr, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:62: var_assign: Assigning: "varExpr" = "this->addSpace->createVariable(std::string(name, std::allocator<char>()), 0UL, bptype)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:71: noescape: Variable "varExpr" is not freed or pointed-to in function "BPatch_variableExpr::writeValue(void const *, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:548:5: noescape: "BPatch_variableExpr::writeValue(void const *, bool)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:78: return_alloc: Returning allocated memory "varExpr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:994: var_assign: Assigning: "var" =  storage returned from "snippetGen->findOrCreateVariable(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(mangledName.str()).c_str(), "int", NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:995: noescape: Variable "var" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "lOperand".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:997: noescape: Variable "var" is not freed or pointed-to in function "BPatch_boolExpr::BPatch_boolExpr(BPatch_relOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:243:5: noescape: "BPatch_boolExpr::BPatch_boolExpr(BPatch_relOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "lOperand".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:999: leaked_storage: Variable "var" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:995: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:995: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:995: var_assign: Assigning: "setFlag" =  storage returned from "new BPatch_arithExpr(BPatch_assign, var, BPatch_constExpr(1))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:996: noescape: Variable "setFlag" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "lOperand".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:999: leaked_storage: Variable "setFlag" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:996: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:996: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:996: var_assign: Assigning: "pair" =  storage returned from "new BPatch_arithExpr(BPatch_seq, setFlag, statement)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:997: noescape: Variable "pair" is not freed or pointed-to in function "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:339:5: noescape: "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)" does not free or save its pointer parameter "tClause".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:999: leaked_storage: Variable "pair" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:997: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:997: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:339:5: noescape: "BPatch_ifExpr::BPatch_ifExpr(BPatch_boolExpr const &, BPatch_snippet const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:997: var_assign: Assigning: "testFirst" =  storage returned from "new BPatch_ifExpr(BPatch_boolExpr(BPatch_eq, var, BPatch_constExpr(0)), pair)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:998: noescape: Variable "testFirst" is not freed or pointed-to in function "BPatch_snippet::operator =(BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:178:5: noescape: "BPatch_snippet::operator =(BPatch_snippet const &)" does not free or save its pointer parameter "src".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:999: leaked_storage: Variable "testFirst" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:968: alloc_fn: Calling allocation function "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:968: noescape: Variable "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:968: leaked_storage: Failing to save storage allocated by "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" leaks it.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:988: alloc_fn: Calling allocation function "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:988: noescape: Variable "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:988: leaked_storage: Failing to save storage allocated by "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" leaks it.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:152: alloc_fn: Calling allocation function "BPatch_image::findVariable(BPatch_point &, char const *, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:248: alloc_fn: Storage is returned from allocation function "BPatch_image::findVariableInScope(BPatch_point &, char const *, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: var_assign: Assigning: "<storage from new>" = "operator new(96UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, BPatch_localVar *, BPatch_type *, BPatch_point *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1211:22: noescape: "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, BPatch_localVar *, BPatch_type *, BPatch_point *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: return_alloc: Returning allocated memory "new BPatch_variableExpr(this->addSpace, as, lv, lv->getType(), scp)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:248: var_assign: Assigning: "ret" = "this->findVariableInScope(scp, nm, showError)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:248: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:152: var_assign: Assigning: "varExpr" =  storage returned from "this->image->findVariable(this->point, name, false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:155: overwrite_var: Overwriting "varExpr" in call "varExpr = this->image->findVariable(name, false)" leaks the storage that "varExpr" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:157: alloc_fn: Calling allocation function "BPatch_image::findVariable(BPatch_point &, char const *, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:248: alloc_fn: Storage is returned from allocation function "BPatch_image::findVariableInScope(BPatch_point &, char const *, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: var_assign: Assigning: "<storage from new>" = "operator new(96UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, BPatch_localVar *, BPatch_type *, BPatch_point *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1211:22: noescape: "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, BPatch_localVar *, BPatch_type *, BPatch_point *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:789: return_alloc: Returning allocated memory "new BPatch_variableExpr(this->addSpace, as, lv, lv->getType(), scp)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:248: var_assign: Assigning: "ret" = "this->findVariableInScope(scp, nm, showError)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:248: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:157: var_assign: Assigning: "varExpr" =  storage returned from "this->image->findVariable(this->point, name, false)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:181: leaked_storage: Variable "varExpr" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:930: alloc_fn: Calling allocation function "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:930: noescape: Variable "strdup(s)" is not freed or pointed-to in function "std::basic_ostream<char, std::char_traits<char> > &std::operator << <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> > &, char const *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:930: leaked_storage: Failing to save storage allocated by "strdup(s)" leaks it.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:935: alloc_fn: Calling allocation function "strdup".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:935: noescape: Variable "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" is not freed or pointed-to in function "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:935: leaked_storage: Failing to save storage allocated by "strdup(std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::__string_type(err.str()).c_str())" leaks it.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4408: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4408: var_assign: Assigning: "em" =  storage returned from "new Dyninst::SymtabAPI::emitElf(this->elfHdr, this->isStripped, this, this->err_func_)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4408: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::emitElf::emitElf(Dyninst::SymtabAPI::Elf_X &, bool, Dyninst::SymtabAPI::Object *, void (*)(char const *))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:197:10: noescape: "Dyninst::SymtabAPI::emitElf::emitElf(Dyninst::SymtabAPI::Elf_X &, bool, Dyninst::SymtabAPI::Object *, void (*)(char const *))" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4409: leaked_storage: Variable "em" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4409: noescape: Variable "em" is not freed or pointed-to in function "Dyninst::SymtabAPI::emitElf::createSymbolTables(Dyninst::SymtabAPI::Symtab *, std::vector<Dyninst::SymtabAPI::Symbol *, std::allocator<Dyninst::SymtabAPI::Symbol *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1793:15: noescape: "Dyninst::SymtabAPI::emitElf::createSymbolTables(Dyninst::SymtabAPI::Symtab *, std::vector<Dyninst::SymtabAPI::Symbol *, std::allocator<Dyninst::SymtabAPI::Symbol *> > &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4410: leaked_storage: Variable "em" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4410: noescape: Variable "em" is not freed or pointed-to in function "Dyninst::SymtabAPI::emitElf::driver(Dyninst::SymtabAPI::Symtab *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:490:15: noescape: "Dyninst::SymtabAPI::emitElf::driver(Dyninst::SymtabAPI::Symtab *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)" does not free or save its pointer parameter "this".

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4417: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4417: var_assign: Assigning: "em" =  storage returned from "new Dyninst::SymtabAPI::emitElf64(this->elfHdr, this->isStripped, this, this->err_func_)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4417: noescape: Variable "<storage from new>" is not freed or pointed-to in function "Dyninst::SymtabAPI::emitElf64::emitElf64(Dyninst::SymtabAPI::Elf_X &, bool, Dyninst::SymtabAPI::Object *, void (*)(char const *))".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:176:12: noescape: "Dyninst::SymtabAPI::emitElf64::emitElf64(Dyninst::SymtabAPI::Elf_X &, bool, Dyninst::SymtabAPI::Object *, void (*)(char const *))" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4418: leaked_storage: Variable "em" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4418: noescape: Variable "em" is not freed or pointed-to in function "Dyninst::SymtabAPI::emitElf64::createSymbolTables(Dyninst::SymtabAPI::Symtab *, std::vector<Dyninst::SymtabAPI::Symbol *, std::allocator<Dyninst::SymtabAPI::Symbol *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1646:17: noescape: "Dyninst::SymtabAPI::emitElf64::createSymbolTables(Dyninst::SymtabAPI::Symtab *, std::vector<Dyninst::SymtabAPI::Symbol *, std::allocator<Dyninst::SymtabAPI::Symbol *> > &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4419: leaked_storage: Variable "em" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:4419: noescape: Variable "em" is not freed or pointed-to in function "Dyninst::SymtabAPI::emitElf64::driver(Dyninst::SymtabAPI::Symtab *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:467:17: noescape: "Dyninst::SymtabAPI::emitElf64::driver(Dyninst::SymtabAPI::Symtab *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)" does not free or save its pointer parameter "this".

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:944: alloc_fn: Calling allocation function "BPatch_function::findPoint(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: alloc_fn: Storage is returned from allocation function "BPatch_function::findPointInt(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "result" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:574: noescape: Variable "result" is not freed or pointed-to in function "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:479:69: noescape: "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)" does not free or save its pointer parameter "entryPoints".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:594: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: var_assign: Assigning: "ret" = "this->findPointInt(loc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:944: var_assign: Assigning: "points" =  storage returned from "func->findPoint(BPatch_locSubroutine)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:945: noescape: Variable "points" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:946: noescape: Variable "points" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:947: noescape: Variable "points" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:953: leaked_storage: Variable "points" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab-edit.C:243: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab-edit.C:243: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab-edit.C:243: var_assign: Assigning: "newSymVers" =  storage returned from "new std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab-edit.C:259: leaked_storage: Variable "newSymVers" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:1450: alloc_fn: Calling allocation function "BPatch_function::findPoint(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: alloc_fn: Storage is returned from allocation function "BPatch_function::findPointInt(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "result" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:574: noescape: Variable "result" is not freed or pointed-to in function "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:479:69: noescape: "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)" does not free or save its pointer parameter "entryPoints".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:594: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: var_assign: Assigning: "ret" = "this->findPointInt(loc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:1450: var_assign: Assigning: "exitPoints" =  storage returned from "sle_funcs[0UL]->findPoint(BPatch_locExit)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:1452: noescape: Variable "exitPoints" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:1455: leaked_storage: Variable "exitPoints" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::treeInsert(BPatch_opCode const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry::entry(BPatch_opCode const &, BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry::entry(BPatch_opCode const &, BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:829: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::treeInsert(BPatch_opCode const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry::entry(BPatch_opCode const &, BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry::entry(BPatch_opCode const &, BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:847: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: alloc_fn: Calling allocation function "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::treeInsert(BPatch_opCode const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "<storage from new>" = "operator new(32UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry::entry(BPatch_opCode const &, BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:115:3: noescape: "BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry::entry(BPatch_opCode const &, BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:720: var_assign: Assigning: "z" = "new BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> >::entry(element, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:732: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:819: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(element)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:861: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:886: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:886: var_assign: Assigning: "retHandle" =  storage returned from "new BPatchSnippetHandle(this)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:886: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatchSnippetHandle::BPatchSnippetHandle(BPatch_addressSpace *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:219:22: noescape: "BPatchSnippetHandle::BPatchSnippetHandle(BPatch_addressSpace *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:906: leaked_storage: Variable "retHandle" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:912: leaked_storage: Variable "retHandle" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:214: alloc_fn: Calling allocation function "SnippetGenerator::findOrCreateVariable(char const *, char const *, void const *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:62: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::createVariable(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::createVariableInt(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned long, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:663: alloc_fn: Storage is returned from allocation function "BPatch_variableExpr::makeVariableExpr(BPatch_addressSpace *, AddressSpace *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, void *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: var_assign: Assigning: "<storage from new>" = "operator new(96UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1018:22: noescape: "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: return_alloc: Returning allocated memory "new BPatch_variableExpr(in_addSpace, in_llAddSpace, v, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:663: var_assign: Assigning: "varExpr" = "BPatch_variableExpr::makeVariableExpr(this, as[0UL], std::string(name), (void *)addr, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:669: return_alloc: Returning allocated memory "varExpr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: var_assign: Assigning: "ret" = "this->createVariableInt(std::string(name), addr, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:407: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:62: var_assign: Assigning: "varExpr" = "this->addSpace->createVariable(std::string(name, std::allocator<char>()), 0UL, bptype)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:71: noescape: Variable "varExpr" is not freed or pointed-to in function "BPatch_variableExpr::writeValue(void const *, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:548:5: noescape: "BPatch_variableExpr::writeValue(void const *, bool)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/snippetGen.C:78: return_alloc: Returning allocated memory "varExpr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:214: var_assign: Assigning: "alloc" =  storage returned from "snippetGen->findOrCreateVariable(mangledName.c_str(), (yyvsp + -3).varSpec.type, NULL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:222: noescape: Variable "alloc" is not freed or pointed-to in function "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:223:5: noescape: "BPatch_arithExpr::BPatch_arithExpr(BPatch_binOp, BPatch_snippet const &, BPatch_snippet const &)" does not free or save its pointer parameter "lOperand".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:228: leaked_storage: Variable "alloc" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:278: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:278: var_assign: Assigning: "assignVect" =  storage returned from "new std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:278: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:279: noescape: Variable "assignVect" is not freed or pointed-to in function "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::push_back(BPatch_snippet * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::push_back(BPatch_snippet * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:299: noescape: Variable "assignVect" is not freed or pointed-to in function "BPatch_sequence::BPatch_sequence(std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:436:5: noescape: "BPatch_sequence::BPatch_sequence(std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> > const &)" does not free or save its pointer parameter "items".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:300: leaked_storage: Variable "assignVect" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:325: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:325: var_assign: Assigning: "assignVect" =  storage returned from "new std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:325: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:326: noescape: Variable "assignVect" is not freed or pointed-to in function "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::push_back(BPatch_snippet * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> >::push_back(BPatch_snippet * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:330: leaked_storage: Variable "assignVect" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:351: noescape: Variable "assignVect" is not freed or pointed-to in function "BPatch_sequence::BPatch_sequence(std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:436:5: noescape: "BPatch_sequence::BPatch_sequence(std::vector<BPatch_snippet *, std::allocator<BPatch_snippet *> > const &)" does not free or save its pointer parameter "items".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.y:352: leaked_storage: Variable "assignVect" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1714: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1714: var_assign: Assigning: "yyptr" =  storage returned from "malloc(yystacksize * 34UL + 30UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1720: var_assign: Assigning: "yyls" = "yyptr".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1720: overwrite_var: Overwriting "yyls" in call "yyls = &yyptr->yyls" leaks the storage that "yyls" points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1720: noescape: Variable "yyls" is not freed or pointed-to in function "__coverity_memcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1720: noescape: Variable "yyptr" is not freed or pointed-to in function "__coverity_memcpy".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1724: leaked_storage: Variable "yyptr" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1730: var_assign: Assigning: "yylsp" = "yyls".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/x86_64-unknown-linux2.4/dynC.tab.c:1730: overwrite_var: Overwriting "yylsp" in call "yylsp = yyls + yysize - 1" leaks the storage that "yylsp" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:561: alloc_fn: Calling allocation function "BPatch_addressSpace::malloc(int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:378: alloc_fn: Storage is returned from allocation function "BPatch_addressSpace::mallocInt(int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:585: alloc_fn: Storage is returned from allocation function "BPatch_variableExpr::makeVariableExpr(BPatch_addressSpace *, AddressSpace *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, void *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: var_assign: Assigning: "<storage from new>" = "operator new(96UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: noescape: Variable "<storage from new>" is not freed or pointed-to in function "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1018:22: noescape: "BPatch_variableExpr::BPatch_variableExpr(BPatch_addressSpace *, AddressSpace *, int_variable *, BPatch_type *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1071: return_alloc: Returning allocated memory "new BPatch_variableExpr(in_addSpace, in_llAddSpace, v, type)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:585: return_alloc_fn: Directly returning storage allocated by "BPatch_variableExpr::makeVariableExpr(BPatch_addressSpace *, AddressSpace *, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, void *, BPatch_type *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:378: var_assign: Assigning: "ret" = "this->mallocInt(n, std::string(name))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:378: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:561: var_assign: Assigning: "varBA" =  storage returned from "this->hybridow_->proc()->malloc(array_length * 8UL, std::string("", std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:563: noescape: Variable "varBA" is not freed or pointed-to in function "BPatch_variableExpr::writeValue(void const *, int, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:554:5: noescape: "BPatch_variableExpr::writeValue(void const *, int, bool)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:569: noescape: Variable "varBA" is not freed or pointed-to in function "BPatch_variableExpr::getBaseAddr()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:564:5: noescape: "BPatch_variableExpr::getBaseAddr()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:610: leaked_storage: Variable "varBA" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:522: alloc_fn: Calling allocation function "BPatch_basicBlock::findPoint(BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_basicBlock.h:300: alloc_fn: Storage is returned from allocation function "BPatch_basicBlock::findPointInt(BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:502: alloc_fn: Storage is returned from allocation function "BPatch_basicBlock::findPointByPredicate(insnPredicate &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: var_assign: Assigning: "ret" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:487: noescape: Variable "ret" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::push_back(BPatch_point * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::push_back(BPatch_point * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:491: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:502: return_alloc_fn: Directly returning storage allocated by "BPatch_basicBlock::findPointByPredicate(insnPredicate &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_basicBlock.h:300: var_assign: Assigning: "ret" = "this->findPointInt(ops)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_basicBlock.h:300: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:522: var_assign: Assigning: "blockWrites" =  storage returned from "(*bIter)->findPoint(insnTypes)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:523: noescape: Variable "blockWrites" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:535: noescape: Variable "blockWrites" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::begin()".
/usr/include/c++/4.7.1/bits/stl_vector.h:518:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::begin()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:535: noescape: Variable "blockWrites" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::end()".
/usr/include/c++/4.7.1/bits/stl_vector.h:536:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::end()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:551: leaked_storage: Variable "blockWrites" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:222: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:222: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:222: var_assign: Assigning: "components" =  storage returned from "new std::vector<BPatch_field *, std::allocator<BPatch_field *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:246: leaked_storage: Variable "components" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:841: alloc_fn: Calling allocation function "BPatch_function::findPoint(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: alloc_fn: Storage is returned from allocation function "BPatch_function::findPointInt(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "result" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:574: noescape: Variable "result" is not freed or pointed-to in function "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:479:69: noescape: "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)" does not free or save its pointer parameter "entryPoints".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:594: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: var_assign: Assigning: "ret" = "this->findPointInt(loc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:841: var_assign: Assigning: "points" =  storage returned from "this->findPoint(BPatch_locEntry)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:842: noescape: Variable "points" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:845: noescape: Variable "points" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:849: leaked_storage: Variable "points" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1551: alloc_fn: Calling allocation function "image::findFuncVectorByMangled(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1862: var_assign: Assigning: "res" = "new std::vector<parse_func *, std::allocator<parse_func *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1881: noescape: Variable "res" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1882: return_alloc: Returning allocated memory "res".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1551: var_assign: Assigning: "obj_funcs" =  storage returned from "this->imExec()->findFuncVectorByMangled(std::string const(name->c_str(), std::allocator<char>()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1555: noescape: Variable "obj_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1556: noescape: Variable "obj_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const".
/usr/include/c++/4.7.1/bits/stl_vector.h:765:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1557: noescape: Variable "obj_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const".
/usr/include/c++/4.7.1/bits/stl_vector.h:765:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1561: leaked_storage: Variable "obj_funcs" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1564: leaked_storage: Variable "obj_funcs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1577: alloc_fn: Calling allocation function "image::findFuncVectorByPretty(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1829: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1829: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1829: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1829: var_assign: Assigning: "res" = "new std::vector<parse_func *, std::allocator<parse_func *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1849: noescape: Variable "res" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1850: return_alloc: Returning allocated memory "res".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1577: var_assign: Assigning: "obj_funcs" =  storage returned from "this->imExec()->findFuncVectorByPretty(name)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1581: noescape: Variable "obj_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1582: noescape: Variable "obj_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const".
/usr/include/c++/4.7.1/bits/stl_vector.h:765:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1583: noescape: Variable "obj_funcs" is not freed or pointed-to in function "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const".
/usr/include/c++/4.7.1/bits/stl_vector.h:765:7: noescape: "std::vector<parse_func *, std::allocator<parse_func *> >::operator [](unsigned long) const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1587: leaked_storage: Variable "obj_funcs" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1590: leaked_storage: Variable "obj_funcs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:114: open_fn: Calling opening function "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:114: var_assign: Assigning: "fd" =  handle returned from "open("/proc/self/maps", 0)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:122: noescape: Variable "fd" is not closed or saved in function "read".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:126: leaked_handle: Handle variable "fd" going out of scope leaks the handle.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:131: leaked_handle: Handle variable "fd" going out of scope leaks the handle.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:111: alloc_fn: Calling allocation function "dynC_API::createSnippet(char const *, std::vector<BPatch_point *, std::allocator<BPatch_point *> >)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:63: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:63: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:63: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::map()".
/usr/include/c++/4.7.1/bits/stl_map.h:154:7: noescape: "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::map()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:63: var_assign: Assigning: "ret_map" = "new std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:92: noescape: Variable "ret_map" is not freed or pointed-to in function "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)".
/usr/include/c++/4.7.1/bits/stl_map.h:522:7: noescape: "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:92: noescape: Variable "ret_map" is not freed or pointed-to in function "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)".
/usr/include/c++/4.7.1/bits/stl_map.h:522:7: noescape: "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:92: noescape: Variable "ret_map" is not freed or pointed-to in function "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)".
/usr/include/c++/4.7.1/bits/stl_map.h:522:7: noescape: "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:92: noescape: Variable "ret_map" is not freed or pointed-to in function "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)".
/usr/include/c++/4.7.1/bits/stl_map.h:522:7: noescape: "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::insert(std::pair<BPatch_point * const, BPatch_snippet *> const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:105: return_alloc: Returning allocated memory "ret_map".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:111: var_assign: Assigning: "retMap" =  storage returned from "dynC_API::createSnippet(s, std::vector<BPatch_point *, std::allocator<BPatch_point *> >(points))".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:112: noescape: Variable "retMap" is not freed or pointed-to in function "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::empty() const".
/usr/include/c++/4.7.1/bits/stl_map.h:423:7: noescape: "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::empty() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:113: leaked_storage: Variable "retMap" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:115: leaked_storage: Variable "retMap" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/dynC.C:115: noescape: Variable "retMap" is not freed or pointed-to in function "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::begin()".
/usr/include/c++/4.7.1/bits/stl_map.h:314:7: noescape: "std::map<BPatch_point *, BPatch_snippet *, std::less<BPatch_point *>, std::allocator<std::pair<BPatch_point * const, BPatch_snippet *> > >::begin()" does not free or save its pointer parameter "this".

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:457: alloc_fn: Calling allocation function "addrRangeTree<addrRange>::treeInsert(unsigned long, addrRange *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: noescape: Variable "<storage from new>" is not freed or pointed-to in function "addrRangeTree<addrRange>::entry::entry(unsigned long, addrRange *, addrRangeTree<addrRange>::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:101:7: noescape: "addrRangeTree<addrRange>::entry::entry(unsigned long, addrRange *, addrRangeTree<addrRange>::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: var_assign: Assigning: "z" = "new addrRangeTree<addrRange>::entry(key, value, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:269: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:457: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(value->get_address(), value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:470: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:457: alloc_fn: Calling allocation function "addrRangeTree<addrRange>::treeInsert(unsigned long, addrRange *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: noescape: Variable "<storage from new>" is not freed or pointed-to in function "addrRangeTree<addrRange>::entry::entry(unsigned long, addrRange *, addrRangeTree<addrRange>::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:101:7: noescape: "addrRangeTree<addrRange>::entry::entry(unsigned long, addrRange *, addrRangeTree<addrRange>::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: var_assign: Assigning: "z" = "new addrRangeTree<addrRange>::entry(key, value, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:269: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:457: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(value->get_address(), value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:488: overwrite_var: Overwriting "x" in call "x = x->parent->parent" leaks the storage that "x" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:457: alloc_fn: Calling allocation function "addrRangeTree<addrRange>::treeInsert(unsigned long, addrRange *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: var_assign: Assigning: "<storage from new>" = "operator new(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: noescape: Variable "<storage from new>" is not freed or pointed-to in function "addrRangeTree<addrRange>::entry::entry(unsigned long, addrRange *, addrRangeTree<addrRange>::entry *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:101:7: noescape: "addrRangeTree<addrRange>::entry::entry(unsigned long, addrRange *, addrRangeTree<addrRange>::entry *)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:257: var_assign: Assigning: "z" = "new addrRangeTree<addrRange>::entry(key, value, this->nil)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:269: return_alloc: Returning allocated memory "z".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:457: var_assign: Assigning: "x" =  storage returned from "this->treeInsert(value->get_address(), value)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:502: leaked_storage: Variable "x" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:548: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:548: var_assign: Assigning: "newSectionPtr" =  storage returned from "malloc(this->highWaterMark_ - this->lowWaterMark_)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:586: leaked_storage: Variable "newSectionPtr" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:171: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Symtab::getAllbuiltInTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2475: alloc_fn: Storage is returned from allocation function "Dyninst::SymtabAPI::builtInTypeCollection::getAllBuiltInTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:687: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:687: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:687: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:687: var_assign: Assigning: "typesVec" = "new std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:693: noescape: Variable "typesVec" is not freed or pointed-to in function "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:697: return_alloc: Returning allocated memory "typesVec".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2475: return_alloc_fn: Directly returning storage allocated by "Dyninst::SymtabAPI::builtInTypeCollection::getAllBuiltInTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:171: var_assign: Assigning: "sTypes" =  storage returned from "Dyninst::SymtabAPI::Symtab::getAllbuiltInTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:172: noescape: Variable "sTypes" is not freed or pointed-to in function "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:179: leaked_storage: Variable "sTypes" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:166: alloc_fn: Calling allocation function "Dyninst::SymtabAPI::Symtab::getAllstdTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2470: alloc_fn: Storage is returned from allocation function "Dyninst::SymtabAPI::typeCollection::getAllTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:522: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:522: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:522: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:522: var_assign: Assigning: "typesVec" = "new std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:531: noescape: Variable "typesVec" is not freed or pointed-to in function "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Collections.C:535: return_alloc: Returning allocated memory "typesVec".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2470: return_alloc_fn: Directly returning storage allocated by "Dyninst::SymtabAPI::typeCollection::getAllTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:166: var_assign: Assigning: "sTypes" =  storage returned from "Dyninst::SymtabAPI::Symtab::getAllstdTypes()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:167: noescape: Variable "sTypes" is not freed or pointed-to in function "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<Dyninst::SymtabAPI::Type *, std::allocator<Dyninst::SymtabAPI::Type *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:171: overwrite_var: Overwriting "sTypes" in call "sTypes = Dyninst::SymtabAPI::Symtab::getAllbuiltInTypes()" leaks the storage that "sTypes" points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1715: alloc_fn: Calling allocation function "BPatch::getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: alloc_fn: Storage is returned from allocation function "BPatch::getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "result" = "new std::vector<BPatch_process *, std::allocator<BPatch_process *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:638: noescape: Variable "result" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:641: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: var_assign: Assigning: "ret" = "this->getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1715: var_assign: Assigning: "procs" =  storage returned from "this->getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1716: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1717: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1720: leaked_storage: Variable "procs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:62: open_fn: Calling opening function "P_open(char const *, int, unsigned int)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/linuxHeaders.h:106: open_fn: Returning handle opened by function "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/linuxHeaders.h:106: return_handle_fn: Directly returning handle opened by "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:62: var_assign: Assigning: "to_fd" =  handle returned from "P_open(to, 1601, 0U)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:76: noescape: Variable "to_fd" is not closed or saved in function "write".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:74: leaked_handle: Handle variable "to_fd" going out of scope leaks the handle.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:57: open_fn: Calling opening function "P_open(char const *, int, unsigned int)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/linuxHeaders.h:106: open_fn: Returning handle opened by function "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/linuxHeaders.h:106: return_handle_fn: Directly returning handle opened by "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:57: var_assign: Assigning: "from_fd" =  handle returned from "P_open(from, 0, 0U)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:71: noescape: Variable "from_fd" is not closed or saved in function "read".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:71: noescape: Variable "from_fd" is not closed or saved in function "read".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:74: leaked_handle: Handle variable "from_fd" going out of scope leaks the handle.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:742: alloc_fn: Calling allocation function "fopen".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:742: var_assign: Assigning: "sfile" =  storage returned from "fopen(proc_stat_name, "r")".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:749: noescape: Variable "sfile" is not freed or pointed-to in function "fread".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:752: leaked_storage: Variable "sfile" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:315: alloc_arg: Calling allocation function "DYNINSTgetMemoryMap" on "maps".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:145: alloc_fn: Storage is returned from allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:145: var_assign: Assigning: "ms" = "malloc(num * 16UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap-linux.c:174: var_assign: Assigning: "*mapp" = "ms".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:322: noescape: Variable "maps" is not freed or pointed-to in function "qsort".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:323: noescape: Variable "maps" is not freed or pointed-to in function "heap_checkMappings".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:95:56: noescape: "heap_checkMappings" does not free or save its pointer parameter "maps".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:331: leaked_storage: Variable "maps" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:253: alloc_fn: Calling allocation function "malloc".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:253: var_assign: Assigning: "node" =  storage returned from "malloc(48UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:259: leaked_storage: Variable "node" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTheap.c:309: leaked_storage: Variable "node" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2749: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2749: noescape: Variable "<storage from new>" is not freed or pointed-to in function "boost::shared_ptr<AstNode>::shared_ptr(boost::shared_ptr<AstNode> const &)".
/usr/include/boost/smart_ptr/shared_ptr.hpp:164:25: noescape: "boost::shared_ptr<AstNode>::shared_ptr(boost::shared_ptr<AstNode> const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2749: var_assign: Assigning: "newNode" =  storage returned from "new AstNodePtr(children[i])".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2750: noescape: Variable "newNode" is not freed or pointed-to in function "std::vector<boost::shared_ptr<AstNode>, std::allocator<boost::shared_ptr<AstNode> > >::push_back(boost::shared_ptr<AstNode> const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:35: noescape: "std::vector<boost::shared_ptr<AstNode>, std::allocator<boost::shared_ptr<AstNode> > >::push_back(boost::shared_ptr<AstNode> const &)" does not free or save its pointer parameter "__x".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2752: leaked_storage: Variable "newNode" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1428: alloc_fn: Calling allocation function "BPatch_type::getComponents() const".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:222: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:222: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:222: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:222: var_assign: Assigning: "components" = "new std::vector<BPatch_field *, std::allocator<BPatch_field *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:240: noescape: Variable "components" is not freed or pointed-to in function "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::push_back(BPatch_field * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::push_back(BPatch_field * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:240: noescape: Variable "components" is not freed or pointed-to in function "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::push_back(BPatch_field * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::push_back(BPatch_field * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_type.C:242: return_alloc: Returning allocated memory "components".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1428: var_assign: Assigning: "fields" =  storage returned from "this->getType()->getComponents()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1430: noescape: Variable "fields" is not freed or pointed-to in function "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_field *, std::allocator<BPatch_field *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1453: leaked_storage: Variable "fields" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1427: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1427: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_variableExpr *, std::allocator<BPatch_variableExpr *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_variableExpr *, std::allocator<BPatch_variableExpr *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1427: var_assign: Assigning: "retList" =  storage returned from "new std::vector<BPatch_variableExpr *, std::allocator<BPatch_variableExpr *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1429: leaked_storage: Variable "retList" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:949: alloc_fn: Calling allocation function "BPatch_function::findPoint(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: alloc_fn: Storage is returned from allocation function "BPatch_function::findPointInt(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "result" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:574: noescape: Variable "result" is not freed or pointed-to in function "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:479:69: noescape: "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)" does not free or save its pointer parameter "entryPoints".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:594: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: var_assign: Assigning: "ret" = "this->findPointInt(loc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:949: var_assign: Assigning: "fini_exit" =  storage returned from "fini_funcs[0UL]->findPoint(BPatch_locExit)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:950: noescape: Variable "fini_exit" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::empty() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:714:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::empty() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:950: noescape: Variable "fini_exit" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:952: noescape: Variable "fini_exit" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:953: leaked_storage: Variable "fini_exit" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:953: noescape: Variable "fini_exit" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:955: leaked_storage: Variable "fini_exit" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:636: alloc_fn: Calling allocation function "BPatch_basicBlock::findPoint(BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_basicBlock.h:300: alloc_fn: Storage is returned from allocation function "BPatch_basicBlock::findPointInt(BPatch_Set<BPatch_opCode, comparison<BPatch_opCode> > const &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:502: alloc_fn: Storage is returned from allocation function "BPatch_basicBlock::findPointByPredicate(insnPredicate &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:472: var_assign: Assigning: "ret" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:487: noescape: Variable "ret" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::push_back(BPatch_point * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::push_back(BPatch_point * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:491: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_basicBlock.C:502: return_alloc_fn: Directly returning storage allocated by "BPatch_basicBlock::findPointByPredicate(insnPredicate &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_basicBlock.h:300: var_assign: Assigning: "ret" = "this->findPointInt(ops)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_basicBlock.h:300: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:636: var_assign: Assigning: "tmp" =  storage returned from "(*curBlk)->findPoint(ops)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:637: noescape: Variable "tmp" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:642: leaked_storage: Variable "tmp" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2801: alloc_fn: Calling allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2801: noescape: Variable "<storage from new>" is not freed or pointed-to in function "boost::shared_ptr<AstNode>::shared_ptr(boost::shared_ptr<AstNode> const &)".
/usr/include/boost/smart_ptr/shared_ptr.hpp:164:25: noescape: "boost::shared_ptr<AstNode>::shared_ptr(boost::shared_ptr<AstNode> const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2801: var_assign: Assigning: "newNode" =  storage returned from "new AstNodePtr(children[i])".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2802: noescape: Variable "newNode" is not freed or pointed-to in function "std::vector<boost::shared_ptr<AstNode>, std::allocator<boost::shared_ptr<AstNode> > >::push_back(boost::shared_ptr<AstNode> const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:35: noescape: "std::vector<boost::shared_ptr<AstNode>, std::allocator<boost::shared_ptr<AstNode> > >::push_back(boost::shared_ptr<AstNode> const &)" does not free or save its pointer parameter "__x".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2804: leaked_storage: Variable "newNode" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:374: alloc_fn: Calling allocation function "int_iRPC::getWrapperForDecode()".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:547: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:547: var_assign: Assigning: "<storage from new>" = "operator new(16UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:547: noescape: Variable "<storage from new>" is not freed or pointed-to in function "rpc_wrapper::rpc_wrapper(boost::shared_ptr<int_iRPC>)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.h:289:3: noescape: "rpc_wrapper::rpc_wrapper(boost::shared_ptr<int_iRPC>)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:547: return_alloc: Returning allocated memory "new rpc_wrapper(int_iRPC::ptr(this->shared_from_this()))".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:374: noescape: Variable "int_iRPC_ptr(thread->runningRPC())->getWrapperForDecode()" is not freed or pointed-to in function "Dyninst::ProcControlAPI::EventRPC::EventRPC(rpc_wrapper *)".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:559:33: noescape: "Dyninst::ProcControlAPI::EventRPC::EventRPC(rpc_wrapper *)" does not free or save its pointer parameter "wrapper_".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:374: leaked_storage: Failing to save storage allocated by "int_iRPC_ptr(thread->runningRPC())->getWrapperForDecode()" leaks it.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1756: alloc_fn: Calling allocation function "BPatch::getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: alloc_fn: Storage is returned from allocation function "BPatch::getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "result" = "new std::vector<BPatch_process *, std::allocator<BPatch_process *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:638: noescape: Variable "result" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:641: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: var_assign: Assigning: "ret" = "this->getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1756: var_assign: Assigning: "procs" =  storage returned from "this->getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1757: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1758: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1761: leaked_storage: Variable "procs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1705: alloc_fn: Calling allocation function "BPatch::getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: alloc_fn: Storage is returned from allocation function "BPatch::getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "result" = "new std::vector<BPatch_process *, std::allocator<BPatch_process *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:638: noescape: Variable "result" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:641: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: var_assign: Assigning: "ret" = "this->getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1705: var_assign: Assigning: "procs" =  storage returned from "this->getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1706: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1707: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1710: leaked_storage: Variable "procs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/util.C:119: open_fn: Calling opening function "P_open(char const *, int, unsigned int)".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/linuxHeaders.h:106: open_fn: Returning handle opened by function "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/linuxHeaders.h:106: return_handle_fn: Directly returning handle opened by "open".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/util.C:119: var_assign: Assigning: "fd" =  handle returned from "P_open(fname, flags, mode)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/util.C:119: off_by_one: Testing whether handle "fd" is strictly greater than zero is suspicious.  Did you intend to include equality with zero?  "fd" leaks when it is zero.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/util.C:122: leaked_handle: Handle variable "fd" going out of scope leaks the handle.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1729: alloc_fn: Calling allocation function "BPatch::getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: alloc_fn: Storage is returned from allocation function "BPatch::getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "result" = "new std::vector<BPatch_process *, std::allocator<BPatch_process *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:638: noescape: Variable "result" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:641: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: var_assign: Assigning: "ret" = "this->getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1729: var_assign: Assigning: "procs" =  storage returned from "this->getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1730: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1731: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1734: leaked_storage: Variable "procs" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:931: alloc_fn: Calling allocation function "BPatch_function::findPoint(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: alloc_fn: Storage is returned from allocation function "BPatch_function::findPointInt(eBPatch_procedureLocation)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:570: var_assign: Assigning: "result" = "new std::vector<BPatch_point *, std::allocator<BPatch_point *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:574: noescape: Variable "result" is not freed or pointed-to in function "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:479:69: noescape: "BPatch_function::getEntryPoints(std::vector<BPatch_point *, std::allocator<BPatch_point *> > &)" does not free or save its pointer parameter "entryPoints".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_function.C:594: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: var_assign: Assigning: "ret" = "this->findPointInt(loc)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_function.h:264: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:931: var_assign: Assigning: "init_entry" =  storage returned from "init_funcs[0UL]->findPoint(BPatch_locEntry)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:932: noescape: Variable "init_entry" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::empty() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:714:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::empty() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:932: noescape: Variable "init_entry" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:934: noescape: Variable "init_entry" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:935: leaked_storage: Variable "init_entry" going out of scope leaks the storage it points to.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:935: noescape: Variable "init_entry" is not freed or pointed-to in function "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_point *, std::allocator<BPatch_point *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_module.C:937: leaked_storage: Variable "init_entry" going out of scope leaks the storage it points to.

Error: RESOURCE_LEAK:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1742: alloc_fn: Calling allocation function "BPatch::getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: alloc_fn: Storage is returned from allocation function "BPatch::getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: alloc_fn: Storage is returned from allocation function "operator new(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "<storage from new>" = "operator new(24UL)".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: noescape: Variable "<storage from new>" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()".
/usr/include/c++/4.7.1/bits/stl_vector.h:246:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::vector()" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:629: var_assign: Assigning: "result" = "new std::vector<BPatch_process *, std::allocator<BPatch_process *> >".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:638: noescape: Variable "result" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)".
/usr/include/c++/4.7.1/bits/stl_vector.h:881:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::push_back(BPatch_process * const &)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:641: return_alloc: Returning allocated memory "result".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: var_assign: Assigning: "ret" = "this->getProcessesInt()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:471: return_alloc: Returning allocated memory "ret".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1742: var_assign: Assigning: "procs" =  storage returned from "this->getProcesses()".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1743: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const".
/usr/include/c++/4.7.1/bits/stl_vector.h:625:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::size() const" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1744: noescape: Variable "procs" is not freed or pointed-to in function "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)".
/usr/include/c++/4.7.1/bits/stl_vector.h:750:7: noescape: "std::vector<BPatch_process *, std::allocator<BPatch_process *> >::operator [](unsigned long)" does not free or save its pointer parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:1747: leaked_storage: Variable "procs" going out of scope leaks the storage it points to.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:966: deref_ptr_in_call: Dereferencing pointer "maps". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:967: check_after_deref: Dereferencing "maps" before a null check.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5013: deref_ptr_in_call: Dereferencing pointer "ptr". (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5021: check_after_deref: Dereferencing "ptr" before a null check.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Function.C:102: deref_ptr_in_call: Dereferencing pointer "obj".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/h/CodeObject.h:120: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Function.C:105: check_after_deref: Dereferencing "obj" before a null check.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2222: deref_ptr_in_call: Dereferencing pointer "inst".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.h:60: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/emit-x86.C:2238: check_after_deref: Dereferencing "inst" before a null check.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:201: deref_ptr_in_call: Dereferencing pointer "this->point_".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:481: deref_parm_in_call: Function "Dyninst::PatchAPI::Point::begin()" dereferences parameter "this->point_".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Point.h:190: deref_parm_field_in_call: Function "std::list<boost::shared_ptr<Dyninst::PatchAPI::Instance>, std::allocator<boost::shared_ptr<Dyninst::PatchAPI::Instance> > >::begin()" dereferences field "this->instanceList_".
/usr/include/c++/4.7.1/bits/stl_list.h:762: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/baseTramp.C:203: check_after_deref: Dereferencing "this->point_" before a null check.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.C:610: deref_ptr: Directly dereferencing pointer "tableStartPtr".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.C:611: check_after_deref: Dereferencing "tableStartPtr" before a null check.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:711: deref_ptr_in_call: Dereferencing pointer "this->exec".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate.C:189: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:791: check_after_deref: Dereferencing "this->exec" before a null check.

Error: REVERSE_INULL:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:711: deref_ptr_in_call: Dereferencing pointer "this->exec".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate.C:189: deref_parm: Directly dereferencing parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:798: check_after_deref: Dereferencing "this->exec" before a null check.

Error: SIGN_EXTENSION:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1098: sign_extension: Suspicious implicit sign extension: "this->newEhdr->e_phentsize" with type "unsigned short" (16 bits, unsigned) is promoted in "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" to type "int" (32 bits, signed), then sign-extended to type "unsigned long" (64 bits, unsigned).  If "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" is greater than 0x7FFFFFFF, the upper bits of the result will all be 1.

Error: SIGN_EXTENSION:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1098: sign_extension: Suspicious implicit sign extension: "this->newEhdr->e_phnum" with type "unsigned short" (16 bits, unsigned) is promoted in "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" to type "int" (32 bits, signed), then sign-extended to type "unsigned long" (64 bits, unsigned).  If "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" is greater than 0x7FFFFFFF, the upper bits of the result will all be 1.

Error: SIGN_EXTENSION:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:1044: sign_extension: Suspicious implicit sign extension: "this->oldEhdr->e_phentsize" with type "unsigned short" (16 bits, unsigned) is promoted in "this->oldEhdr->e_phentsize * (this->newEhdr->e_phnum - this->oldEhdr->e_phnum)" to type "int" (32 bits, signed), then sign-extended to type "unsigned long" (64 bits, unsigned).  If "this->oldEhdr->e_phentsize * (this->newEhdr->e_phnum - this->oldEhdr->e_phnum)" is greater than 0x7FFFFFFF, the upper bits of the result will all be 1.

Error: SIGN_EXTENSION:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1137: sign_extension: Suspicious implicit sign extension: "this->newEhdr->e_phentsize" with type "unsigned short" (16 bits, unsigned) is promoted in "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" to type "int" (32 bits, signed), then sign-extended to type "unsigned long" (64 bits, unsigned).  If "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" is greater than 0x7FFFFFFF, the upper bits of the result will all be 1.

Error: SIGN_EXTENSION:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:1137: sign_extension: Suspicious implicit sign extension: "this->newEhdr->e_phnum" with type "unsigned short" (16 bits, unsigned) is promoted in "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" to type "int" (32 bits, signed), then sign-extended to type "unsigned long" (64 bits, unsigned).  If "this->newEhdr->e_phnum * this->newEhdr->e_phentsize" is greater than 0x7FFFFFFF, the upper bits of the result will all be 1.

Error: SIZEOF_MISMATCH:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/irpc.C:1333: suspicious_sizeof: Passing argument "this->wrapper" of type "rpc_wrapper *" and argument "8UL /* sizeof (this->wrapper) */" to function "memset" is suspicious.  Did you intend to use "sizeof(*this->wrapper)" instead of "sizeof (this->wrapper)" ?

Error: SIZEOF_MISMATCH:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/Annotatable.h:242: suspicious_sizeof: Passing argument "8UL /* sizeof (Dyninst::AnnotatableDense::anno_list_t *) */" to function "calloc" and then casting the return value to "Dyninst::AnnotatableDense::anno_map_t *" is suspicious.  Did you intend to use "sizeof(Dyninst::AnnotatableDense::anno_list_t)" instead of "sizeof (Dyninst::AnnotatableDense::anno_list_t *)" ?  In this particular case sizeof(Dyninst::AnnotatableDense::anno_list_t *) happens to be equal to sizeof(Dyninst::AnnotatableDense::anno_list_t), but this is not a portable assumption.

Error: SIZEOF_MISMATCH:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/Annotatable.h:252: suspicious_sizeof: Passing argument "this->annotations->data" of type "Dyninst::AnnotatableDense::anno_list_t *" and argument "8UL /* sizeof (Dyninst::AnnotatableDense::anno_list_t *) */ * size" to function "realloc" is suspicious.  Did you intend to use "sizeof(Dyninst::AnnotatableDense::anno_list_t)" instead of "sizeof (Dyninst::AnnotatableDense::anno_list_t *)" ?  In this particular case sizeof(Dyninst::AnnotatableDense::anno_list_t *) happens to be equal to sizeof(Dyninst::AnnotatableDense::anno_list_t), but this is not a portable assumption.

Error: SIZEOF_MISMATCH:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/event.C:568: suspicious_sizeof: Passing argument "this->wrapper" of type "rpc_wrapper *" and argument "8UL /* sizeof (this->wrapper) */" to function "memset" is suspicious.  Did you intend to use "sizeof(*this->wrapper)" instead of "sizeof (this->wrapper)" ?

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchObject.C:254: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchObject.C:255: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2366: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2413: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2366: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:2415: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:190: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:223: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:148: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:148: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:148: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:155: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:148: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Transformers/Movement-adhoc.C:156: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: STREAM_FORMAT_STATE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen-x86.C:831: format_changed: "hex" changes the format state of "std::cerr" for category basefield.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen-x86.C:832: end_of_path: Changing format state of stream "std::cerr" for category basefield without later restoring it.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3958: var_decl: Declaring variable "catch_start" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3978: uninit_use_in_call: Using uninitialized value "catch_start" when calling "Dyninst::SymtabAPI::ExceptionBlock::ExceptionBlock(unsigned long, unsigned int, unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:3182: read_parm: Reading a parameter value.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3957: var_decl: Declaring variable "try_end" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3977: uninit_use: Using uninitialized value "try_end".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3956: var_decl: Declaring variable "try_start" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:3977: uninit_use: Using uninitialized value "try_start".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:377: var_decl: Declaring variable "fp" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:377: uninit_use_in_call: Using uninitialized value "fp" when calling "Dyninst::Stackwalker::Frame::setFP(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/frame.C:179: read_parm: Reading a parameter value.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:377: var_decl: Declaring variable "sp" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:377: uninit_use_in_call: Using uninitialized value "sp" when calling "Dyninst::Stackwalker::Frame::setSP(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/frame.C:185: read_parm: Reading a parameter value.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:554: var_decl: Declaring variable "fp" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:554: uninit_use_in_call: Using uninitialized value "fp" when calling "Dyninst::Stackwalker::Frame::setFP(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/frame.C:179: read_parm: Reading a parameter value.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:554: var_decl: Declaring variable "sp" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/walker.C:554: uninit_use_in_call: Using uninitialized value "sp" when calling "Dyninst::Stackwalker::Frame::setSP(unsigned long)".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/frame.C:185: read_parm: Reading a parameter value.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:276: var_decl: Declaring variable "loc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:281: uninit_use_in_call: Using uninitialized value "loc.hiPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:266: read_parm_fld: Reading a parameter field.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:281: uninit_use_in_call: Using uninitialized value "loc.lowPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:265: read_parm_fld: Reading a parameter field.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:312: var_decl: Declaring variable "loc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:317: uninit_use_in_call: Using uninitialized value "loc.hiPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:266: read_parm_fld: Reading a parameter field.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:317: uninit_use_in_call: Using uninitialized value "loc.lowPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:265: read_parm_fld: Reading a parameter field.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:539: var_decl: Declaring variable "loc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:544: uninit_use_in_call: Using uninitialized value "loc.hiPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:266: read_parm_fld: Reading a parameter field.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:544: uninit_use_in_call: Using uninitialized value "loc.lowPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:265: read_parm_fld: Reading a parameter field.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:578: var_decl: Declaring variable "loc".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:583: uninit_use_in_call: Using uninitialized value "loc.hiPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:266: read_parm_fld: Reading a parameter field.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:583: uninit_use_in_call: Using uninitialized value "loc.lowPC" when calling "Dyninst::SymtabAPI::localVar::addLocation(Dyninst::VariableLocation &)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Variable.C:265: read_parm_fld: Reading a parameter field.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic-x86.C:134: var_decl: Declaring variable "addend" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElfStatic-x86.C:145: uninit_use_in_call: Using uninitialized value "addend" when calling "rewrite_printf(char const *, ...)".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2126: var_decl: Declaring variable "dsize_type" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2170: uninit_use: Using uninitialized value "dsize_type".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2123: var_decl: Declaring variable "new_name" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2179: uninit_use_in_call: Using uninitialized value "new_name" when calling "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2124: var_decl: Declaring variable "rtype" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:2180: uninit_use_in_call: Using uninitialized value "rtype" when calling "Dyninst::SymtabAPI::Symtab::addRegion(unsigned long, void *, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Region::RegionType, bool, unsigned long, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2171: read_parm: Reading a parameter value.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2249: var_decl: Declaring variable "dsize_type" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2303: uninit_use: Using uninitialized value "dsize_type".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2246: var_decl: Declaring variable "new_name" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2310: uninit_use_in_call: Using uninitialized value "new_name" when calling "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const *, std::allocator<char> const &)".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2247: var_decl: Declaring variable "rtype" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:2311: uninit_use_in_call: Using uninitialized value "rtype" when calling "Dyninst::SymtabAPI::Symtab::addRegion(unsigned long, void *, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dyninst::SymtabAPI::Region::RegionType, bool, unsigned long, bool)".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:2171: read_parm: Reading a parameter value.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:509: var_decl: Declaring variable "boundsArray".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:509: alloc_fn: Assigning: "boundsArray" = "new Dyninst::Address[array_length]", which is allocated but not initialized.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:539: uninit_use: Using uninitialized value "*boundsArray".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:466: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:470: uninit_use: Using uninitialized value "ret": field "ret".i1 is uninitialized.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:1066: var_decl: Declaring variable "lwp_ppid" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/linuxKludges.C:1084: uninit_use: Using uninitialized value "lwp_ppid".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/SymtabReader.C:236: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/SymtabReader.C:238: uninit_use: Using uninitialized value "ret": field "ret".i2 is uninitialized.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:525: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:538: uninit_use: Using uninitialized value "ret": field "ret".i2 is uninitialized.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:543: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:556: uninit_use: Using uninitialized value "ret": field "ret".i2 is uninitialized.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:525: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:538: uninit_use: Using uninitialized value "ret": field "ret".i2 is uninitialized.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:466: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:470: uninit_use: Using uninitialized value "ret": field "ret".i1 is uninitialized.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:543: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:556: uninit_use: Using uninitialized value "ret": field "ret".i2 is uninitialized.

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:807: var_decl: Declaring variable "maps_size" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:811: uninit_use: Using uninitialized value "maps_size".

Error: UNINIT:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/SymtabReader.C:223: var_decl: Declaring variable "ret" without initializer.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/SymtabReader.C:227: uninit_use: Using uninitialized value "ret": field "ret".i2 is uninitialized.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/SymtabReader.C:230: uninit_use: Using uninitialized value "ret": field "ret".i2 is uninitialized.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/InstructionDecoder.h:91: member_decl: Class member declaration for ""rawInstruction"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder.C:52: uninit_member: Non-static class member ""rawInstruction"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/InstructionDecoder.h:91: member_decl: Class member declaration for ""rawInstruction"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder.C:46: uninit_member: Non-static class member ""rawInstruction"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:156: member_decl: Class member declaration for ""color"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:141: uninit_member: Non-static class member ""color"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/InstructionDecoder.h:91: member_decl: Class member declaration for ""rawInstruction"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder.C:57: uninit_member: Non-static class member ""rawInstruction"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseInsnFactory.h:127: member_decl: Class member declaration for ""kind"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseInsnFactory.h:113: uninit_member: Non-static class member ""kind"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_IAPI.h:145: member_decl: Class member declaration for ""cachedLinkerStubState"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_IAPI.C:152: uninit_member: Non-static class member ""cachedLinkerStubState"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:156: member_decl: Class member declaration for ""color"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:141: uninit_member: Non-static class member ""color"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:161: member_decl: Class member declaration for ""ID_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:173: member_decl: Class member declaration for ""updatingSize"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:178: member_decl: Class member declaration for ""refCount"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1806: uninit_member: Non-static class member ""ID_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1806: uninit_member: Non-static class member ""refCount"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1806: uninit_member: Non-static class member ""updatingSize"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:707: member_decl: Class member declaration for ""relocationType"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:3284: uninit_member: Non-static class member ""relocationType"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:167: uninit_member: Non-static class member ""max_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:167: uninit_member: Non-static class member ""pc_rel_use_count"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:256: member_decl: Class member declaration for ""max_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:257: member_decl: Class member declaration for ""pc_rel_use_count"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:124: member_decl: Class member declaration for ""elf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:122: uninit_member: Non-static class member ""elf"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:129: member_decl: Class member declaration for ""filedes"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:122: uninit_member: Non-static class member ""filedes"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:707: member_decl: Class member declaration for ""relocationType"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:3296: uninit_member: Non-static class member ""relocationType"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:707: member_decl: Class member declaration for ""relocationType"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:3260: uninit_member: Non-static class member ""relocationType"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/h/PCProcess.h:622: member_decl: Class member declaration for ""llnotify"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:7068: uninit_member: Non-static class member ""llnotify"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:124: member_decl: Class member declaration for ""elf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:94: uninit_member: Non-static class member ""elf"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:484: member_decl: Class member declaration for "count".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:491: member_decl: Class member declaration for "prfx".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:492: member_decl: Class member declaration for "opcode_prefix".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:665: member_decl: Class member declaration for ""size"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:671: member_decl: Class member declaration for ""legacy_type"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:678: uninit_member: Non-static class member ""legacy_type"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:678: uninit_member: Non-static class member ""size"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:678: uninit_member: Non-static class member field "prf.count" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:678: uninit_member: Non-static class member field "prf.opcode_prefix" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:678: uninit_member: Non-static class member field "prf.prfx" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:156: member_decl: Class member declaration for ""color"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:141: uninit_member: Non-static class member ""color"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:158: member_decl: Class member declaration for ""fileOff_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:70: uninit_member: Non-static class member ""fileOff_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.C:216: uninit_member: Non-static class member ""cur_register_state"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.C:216: uninit_member: Non-static class member ""instFrameSize_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.C:216: uninit_member: Non-static class member ""pc_rel_reg"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.C:216: uninit_member: Non-static class member ""pc_rel_use_count"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.h:376: member_decl: Class member declaration for ""pc_rel_reg"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.h:377: member_decl: Class member declaration for ""pc_rel_use_count"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.h:390: member_decl: Class member declaration for ""instFrameSize_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/registerSpace.h:394: member_decl: Class member declaration for ""cur_register_state"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/stats.h:80: member_decl: Class member declaration for ""valid"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/stats.h:74: uninit_member: Non-static class member ""valid"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:285: member_decl: Class member declaration for ""low_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:286: member_decl: Class member declaration for ""hi_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1808: uninit_member: Non-static class member ""hi_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1808: uninit_member: Non-static class member ""low_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:303: member_decl: Class member declaration for ""baseType_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1809: uninit_member: Non-static class member ""baseType_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:149: member_decl: Class member declaration for ""val_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:134: uninit_member: Non-static class member ""val_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:149: member_decl: Class member declaration for ""val_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:134: uninit_member: Non-static class member ""val_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.h:302: member_decl: Class member declaration for ""dbg_data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:2267: uninit_member: Non-static class member ""dbg_data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.h:139: member_decl: Class member declaration for ""origTarget_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/Widgets/CFWidget.C:134: uninit_member: Non-static class member ""origTarget_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:172: member_decl: Class member declaration for ""code_vldS_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:173: member_decl: Class member declaration for ""code_vldE_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:175: member_decl: Class member declaration for ""data_vldS_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:176: member_decl: Class member declaration for ""data_vldE_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:185: member_decl: Class member declaration for ""is_aout_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:191: member_decl: Class member declaration for ""no_of_sections_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:192: member_decl: Class member declaration for ""no_of_symbols_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:397: uninit_member: Non-static class member ""code_vldE_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:397: uninit_member: Non-static class member ""code_vldS_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:397: uninit_member: Non-static class member ""data_vldE_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:397: uninit_member: Non-static class member ""data_vldS_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:397: uninit_member: Non-static class member ""is_aout_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:397: uninit_member: Non-static class member ""no_of_sections_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:397: uninit_member: Non-static class member ""no_of_symbols_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:359: member_decl: Class member declaration for ""isSigned_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1812: uninit_member: Non-static class member ""isSigned_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:508: member_decl: Class member declaration for ""arrayElem"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1820: uninit_member: Non-static class member ""arrayElem"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:509: member_decl: Class member declaration for ""sizeHint_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1820: uninit_member: Non-static class member ""sizeHint_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/response.h:81: member_decl: Class member declaration for ""resp_type"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/response.C:64: uninit_member: Non-static class member ""resp_type"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:149: member_decl: Class member declaration for ""val_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynutil/h/IBSTree.h:134: uninit_member: Non-static class member ""val_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:83: uninit_member: Non-static class member ""max_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:83: uninit_member: Non-static class member ""pc_rel_use_count"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:256: member_decl: Class member declaration for ""max_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:257: member_decl: Class member declaration for ""pc_rel_use_count"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:438: member_decl: Class member declaration for ""parentArchive_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:440: member_decl: Class member declaration for ""mfForDebugInfo"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:453: member_decl: Class member declaration for ""code_ptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:454: member_decl: Class member declaration for ""data_ptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:575: member_decl: Class member declaration for ""lines_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:576: member_decl: Class member declaration for ""stabstr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:578: member_decl: Class member declaration for ""stabs_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:579: member_decl: Class member declaration for ""stringpool_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""code_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""data_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""lines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""mfForDebugInfo"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""parentArchive_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""stabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""stabstr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""stringpool_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""code_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""data_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""lines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""mfForDebugInfo"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""parentArchive_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""stabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""stabstr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""stringpool_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:442: member_decl: Class member declaration for ""imageOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:443: member_decl: Class member declaration for ""imageLen_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:444: member_decl: Class member declaration for ""dataOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:445: member_decl: Class member declaration for ""dataLen_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:452: member_decl: Class member declaration for ""address_width_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:456: member_decl: Class member declaration for ""entry_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:457: member_decl: Class member declaration for ""base_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:458: member_decl: Class member declaration for ""load_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:459: member_decl: Class member declaration for ""toc_offset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:460: member_decl: Class member declaration for ""object_type_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:461: member_decl: Class member declaration for ""is_eel_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:471: member_decl: Class member declaration for ""no_of_sections"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:478: member_decl: Class member declaration for ""newSectionInsertPoint"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:481: member_decl: Class member declaration for ""no_of_symbols"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:508: member_decl: Class member declaration for ""sorted_everyFunction"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:573: member_decl: Class member declaration for ""nlines_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:574: member_decl: Class member declaration for ""fdptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:577: member_decl: Class member declaration for ""nstabs_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:582: member_decl: Class member declaration for ""hasRel_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:583: member_decl: Class member declaration for ""hasRela_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:584: member_decl: Class member declaration for ""hasReldyn_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:585: member_decl: Class member declaration for ""hasReladyn_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:586: member_decl: Class member declaration for ""hasRelplt_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:587: member_decl: Class member declaration for ""hasRelaplt_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:589: member_decl: Class member declaration for ""isStaticBinary_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""address_width_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""base_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""dataLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""dataOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""entry_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""fdptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""hasRel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""hasRela_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""hasReladyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""hasRelaplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""hasReldyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""hasRelplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""imageLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""imageOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""isStaticBinary_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""is_eel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""load_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""newSectionInsertPoint"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""nlines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""no_of_sections"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""no_of_symbols"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""nstabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""object_type_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""sorted_everyFunction"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1255: uninit_member: Non-static class member ""toc_offset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""address_width_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""base_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""dataLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""dataOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""entry_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""fdptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""hasRel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""hasRela_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""hasReladyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""hasRelaplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""hasReldyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""hasRelplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""imageLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""imageOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""isStaticBinary_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""is_eel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""load_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""newSectionInsertPoint"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""nlines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""no_of_sections"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""no_of_symbols"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""nstabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""object_type_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""sorted_everyFunction"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1262: uninit_member: Non-static class member ""toc_offset_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/dthread.h:52: member_decl: Class member declaration for ""thrd"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/dthread-unix.C:39: uninit_member: Non-static class member ""thrd"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:464: member_decl: Class member declaration for ""sizeHint_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1817: uninit_member: Non-static class member ""sizeHint_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/MappedFile.h:80: member_decl: Class member declaration for ""fd"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/MappedFile.C:106: uninit_member: Non-static class member ""fd"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/MappedFile.h:68: member_decl: Class member declaration for ""map_addr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/MappedFile.C:106: uninit_member: Non-static class member ""map_addr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/MappedFile.C:108: uninit_member: Non-static class member ""map_addr"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Type.h:339: member_decl: Class member declaration for ""retType_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Type.C:1811: uninit_member: Non-static class member ""retType_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/lru_cache.h:62: member_decl: Class member declaration for ""bar"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/lru_cache.h:213: uninit_member: Non-static class member ""bar"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:596: member_decl: Class member declaration for ""tttn"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/arch-x86.h:598: uninit_member: Non-static class member ""tttn"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:76: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:87: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:77: member_decl: Class member declaration for ""value"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/addrRange.h:87: uninit_member: Non-static class member ""value"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:1285: member_decl: Class member declaration for ""threadMode"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:7296: uninit_member: Non-static class member ""threadMode"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:438: member_decl: Class member declaration for ""parentArchive_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:440: member_decl: Class member declaration for ""mfForDebugInfo"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:453: member_decl: Class member declaration for ""code_ptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:454: member_decl: Class member declaration for ""data_ptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:575: member_decl: Class member declaration for ""lines_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:576: member_decl: Class member declaration for ""stabstr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:578: member_decl: Class member declaration for ""stabs_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:579: member_decl: Class member declaration for ""stringpool_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""code_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""data_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""lines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""mfForDebugInfo"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""parentArchive_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""stabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""stabstr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""stringpool_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""code_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""data_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""lines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""mfForDebugInfo"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""parentArchive_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""stabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""stabstr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""stringpool_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:442: member_decl: Class member declaration for ""imageOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:443: member_decl: Class member declaration for ""imageLen_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:444: member_decl: Class member declaration for ""dataOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:445: member_decl: Class member declaration for ""dataLen_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:452: member_decl: Class member declaration for ""address_width_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:456: member_decl: Class member declaration for ""entry_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:457: member_decl: Class member declaration for ""base_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:458: member_decl: Class member declaration for ""load_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:459: member_decl: Class member declaration for ""toc_offset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:460: member_decl: Class member declaration for ""object_type_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:461: member_decl: Class member declaration for ""is_eel_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:471: member_decl: Class member declaration for ""no_of_sections"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:478: member_decl: Class member declaration for ""newSectionInsertPoint"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:481: member_decl: Class member declaration for ""no_of_symbols"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:508: member_decl: Class member declaration for ""sorted_everyFunction"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:573: member_decl: Class member declaration for ""nlines_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:574: member_decl: Class member declaration for ""fdptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:577: member_decl: Class member declaration for ""nstabs_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:582: member_decl: Class member declaration for ""hasRel_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:583: member_decl: Class member declaration for ""hasRela_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:584: member_decl: Class member declaration for ""hasReldyn_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:585: member_decl: Class member declaration for ""hasReladyn_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:586: member_decl: Class member declaration for ""hasRelplt_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:587: member_decl: Class member declaration for ""hasRelaplt_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:589: member_decl: Class member declaration for ""isStaticBinary_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""address_width_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""base_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""dataLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""dataOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""entry_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""fdptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""hasRel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""hasRela_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""hasReladyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""hasRelaplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""hasReldyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""hasRelplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""imageLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""imageOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""isStaticBinary_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""is_eel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""load_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""newSectionInsertPoint"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""nlines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""no_of_sections"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""no_of_symbols"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""nstabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""object_type_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""sorted_everyFunction"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1208: uninit_member: Non-static class member ""toc_offset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""address_width_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""base_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""dataLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""dataOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""entry_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""fdptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""hasRel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""hasRela_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""hasReladyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""hasRelaplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""hasReldyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""hasRelplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""imageLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""imageOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""isStaticBinary_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""is_eel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""load_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""newSectionInsertPoint"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""nlines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""no_of_sections"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""no_of_symbols"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""nstabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""object_type_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""sorted_everyFunction"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1215: uninit_member: Non-static class member ""toc_offset_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:95: member_decl: Class member declaration for ""data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:103: uninit_member: Non-static class member ""data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:178: member_decl: Class member declaration for ""snippetName"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:106: uninit_member: Non-static class member ""snippetName"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:182: member_decl: Class member declaration for ""snippetNameSet"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:106: uninit_member: Non-static class member ""snippetNameSet"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:1024: member_decl: Class member declaration for ""swbp"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:1025: member_decl: Class member declaration for ""hwbp"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4152: uninit_member: Non-static class member ""hwbp"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4152: uninit_member: Non-static class member ""swbp"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.h:82: member_decl: Class member declaration for ""num_delayedFrames"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/Parser.C:88: uninit_member: Non-static class member ""num_delayedFrames"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.h:120: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.h:129: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.h:121: member_decl: Class member declaration for ""value"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codeRange.h:129: uninit_member: Non-static class member ""value"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:1071: member_decl: Class member declaration for ""buffer"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4306: uninit_member: Non-static class member ""buffer"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/AddrSpace.h:53: member_decl: Class member declaration for ""first_object_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/AddrSpace.h:57: uninit_member: Non-static class member ""first_object_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:109: uninit_member: Non-static class member ""max_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:109: uninit_member: Non-static class member ""pc_rel_use_count"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:256: member_decl: Class member declaration for ""max_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:257: member_decl: Class member declaration for ""pc_rel_use_count"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Instrumenter.h:49: member_decl: Class member declaration for ""as_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Instrumenter.h:56: uninit_member: Non-static class member ""as_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:1109: member_decl: Class member declaration for ""error"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4528: uninit_member: Non-static class member ""error"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.h:39: member_decl: Class member declaration for ""first_as_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/DynAddrSpace.C:34: uninit_member: Non-static class member ""first_as_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:486: member_decl: Class member declaration for ""linkedFile"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:488: member_decl: Class member declaration for ""archive"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:497: member_decl: Class member declaration for ""cb_arg0_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1361: uninit_member: Non-static class member ""archive"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1361: uninit_member: Non-static class member ""cb_arg0_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1370: uninit_member: Non-static class member ""cb_arg0_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1370: uninit_member: Non-static class member ""linkedFile"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1374: uninit_member: Non-static class member ""cb_arg0_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1374: uninit_member: Non-static class member ""linkedFile"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1445: uninit_member: Non-static class member ""archive"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1445: uninit_member: Non-static class member ""cb_arg0_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:467: member_decl: Class member declaration for ""imageOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:468: member_decl: Class member declaration for ""imageLen_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:469: member_decl: Class member declaration for ""dataOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:470: member_decl: Class member declaration for ""dataLen_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1361: uninit_member: Non-static class member ""dataLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1361: uninit_member: Non-static class member ""dataOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1361: uninit_member: Non-static class member ""imageLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1361: uninit_member: Non-static class member ""imageOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1370: uninit_member: Non-static class member ""dataLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1370: uninit_member: Non-static class member ""dataOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1370: uninit_member: Non-static class member ""imageLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1370: uninit_member: Non-static class member ""imageOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1374: uninit_member: Non-static class member ""dataLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1374: uninit_member: Non-static class member ""dataOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1374: uninit_member: Non-static class member ""imageLen_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:1374: uninit_member: Non-static class member ""imageOffset_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:112: member_decl: Class member declaration for ""catchupNeeded"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:222: uninit_member: Non-static class member ""catchupNeeded"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:191: member_decl: Class member declaration for ""val"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""val"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:95: member_decl: Class member declaration for ""data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:103: uninit_member: Non-static class member ""data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/h/procstate.h:57: member_decl: Class member declaration for ""pid"".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/procstate.C:84: uninit_member: Non-static class member ""pid"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/h/procstate.h:60: member_decl: Class member declaration for ""walker"".
/builddir/build/BUILD/dyninst-7.99/dyninst/stackwalk/src/procstate.C:84: uninit_member: Non-static class member ""walker"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:219: member_decl: Class member declaration for ""length_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:148: uninit_member: Non-static class member ""length_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:220: member_decl: Class member declaration for ""rawPtr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:148: uninit_member: Non-static class member ""rawPtr_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/h/PCProcess.h:92: member_decl: Class member declaration for ""llbreakpoint_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:7096: uninit_member: Non-static class member ""llbreakpoint_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/h/PCProcess.h:499: member_decl: Class member declaration for ""threadpool"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:6796: uninit_member: Non-static class member ""threadpool"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.h:48: member_decl: Class member declaration for ""parsed_file_fast"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.h:54: member_decl: Class member declaration for ""addr_size"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:880: uninit_member: Non-static class member ""addr_size"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:880: uninit_member: Non-static class member ""parsed_file_fast"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""rawPtr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:220: member_decl: Class member declaration for ""rawPtr_"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""code_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""data_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""dynamic_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""length_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""loadAddr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""pid_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.C:110: uninit_member: Non-static class member ""shared_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:213: member_decl: Class member declaration for ""code_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:214: member_decl: Class member declaration for ""data_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:215: member_decl: Class member declaration for ""dynamic_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:216: member_decl: Class member declaration for ""shared_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:217: member_decl: Class member declaration for ""pid_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:218: member_decl: Class member declaration for ""loadAddr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/symtab.h:219: member_decl: Class member declaration for ""length_"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:95: member_decl: Class member declaration for ""data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:103: uninit_member: Non-static class member ""data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:95: member_decl: Class member declaration for ""data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:103: uninit_member: Non-static class member ""data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_addressSpace.h:191: member_decl: Class member declaration for ""pendingInsertions"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_addressSpace.C:78: uninit_member: Non-static class member ""pendingInsertions"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:349: member_decl: Class member declaration for ""defaultModule"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:81: uninit_member: Non-static class member ""defaultModule"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:461: member_decl: Class member declaration for ""intvar"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1050: uninit_member: Non-static class member ""intvar"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:95: member_decl: Class member declaration for ""data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:103: uninit_member: Non-static class member ""data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/h/Generator.h:94: member_decl: Class member declaration for ""m_Event"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/generator.C:72: uninit_member: Non-static class member ""m_Event"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.h:166: member_decl: Class member declaration for ""hasAsyncPending"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:517: uninit_member: Non-static class member ""hasAsyncPending"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:521: uninit_member: Non-static class member ""hasAsyncPending"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/sysv.h:92: member_decl: Class member declaration for ""breakpoint_addr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/sysv.C:64: uninit_member: Non-static class member ""breakpoint_addr"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/h/ABI.h:16: member_decl: Class member declaration for ""addr_width"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/h/ABI.h:61: uninit_member: Non-static class member ""addr_width"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/h/ABI.h:15: member_decl: Class member declaration for ""index"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/h/ABI.h:61: uninit_member: Non-static class member ""index"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:1024: member_decl: Class member declaration for ""swbp"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:1025: member_decl: Class member declaration for ""hwbp"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4161: uninit_member: Non-static class member ""hwbp"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:4161: uninit_member: Non-static class member ""swbp"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.h:232: member_decl: Class member declaration for ""proc"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2424: uninit_member: Non-static class member ""proc"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.h:233: member_decl: Class member declaration for ""remote_addr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.h:236: member_decl: Class member declaration for ""bret"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.h:237: member_decl: Class member declaration for ""err"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2424: uninit_member: Non-static class member ""bret"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2424: uninit_member: Non-static class member ""err"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2424: uninit_member: Non-static class member ""remote_addr"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:95: member_decl: Class member declaration for ""data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:103: uninit_member: Non-static class member ""data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:459: member_decl: Class member declaration for ""isLocal"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1278: uninit_member: Non-static class member ""isLocal"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:453: member_decl: Class member declaration for ""name"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:456: member_decl: Class member declaration for ""address"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:461: member_decl: Class member declaration for ""intvar"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1278: uninit_member: Non-static class member ""address"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1278: uninit_member: Non-static class member ""intvar"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1278: uninit_member: Non-static class member ""name"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/h/liveness.h:78: member_decl: Class member declaration for ""errorno"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/liveness.C:59: uninit_member: Non-static class member ""errorno"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.h:234: member_decl: Class member declaration for ""mobj"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:282: uninit_member: Non-static class member ""mobj"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.h:238: member_decl: Class member declaration for ""writing_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/binaryEdit.C:282: uninit_member: Non-static class member ""writing_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_instruction.h:69: member_decl: Class member declaration for ""parent"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_instruction.C:76: uninit_member: Non-static class member ""parent"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:190: member_decl: Class member declaration for ""key"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:192: member_decl: Class member declaration for ""key_hashval"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:195: member_decl: Class member declaration for ""removed"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:199: member_decl: Class member declaration for ""next"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""key_hashval"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""next"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Dictionary.h:202: uninit_member: Non-static class member ""removed"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:53: member_decl: Class member declaration for ""newElf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:57: member_decl: Class member declaration for ""newEhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:58: member_decl: Class member declaration for ""oldEhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:60: member_decl: Class member declaration for ""newPhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:61: member_decl: Class member declaration for ""oldPhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:69: member_decl: Class member declaration for ""olddynStrData"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:74: member_decl: Class member declaration for ""dynData"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:76: member_decl: Class member declaration for ""dataData"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:78: member_decl: Class member declaration for ""textSh"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:79: member_decl: Class member declaration for ""rodataSh"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""dataData"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""dynData"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""newEhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""newElf"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""newPhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""oldEhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""oldPhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""olddynStrData"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""rodataSh"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""textSh"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:62: member_decl: Class member declaration for ""phdr_offset"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:70: member_decl: Class member declaration for ""olddynStrSize"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:96: member_decl: Class member declaration for ""verneednum"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:96: member_decl: Class member declaration for ""verdefnum"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:99: member_decl: Class member declaration for ""newSegmentStart"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:103: member_decl: Class member declaration for ""dataSegEnd"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:103: member_decl: Class member declaration for ""textSegEnd"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:104: member_decl: Class member declaration for ""dynSegOff"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:104: member_decl: Class member declaration for ""dynSegAddr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:104: member_decl: Class member declaration for ""phdrSegOff"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:104: member_decl: Class member declaration for ""phdrSegAddr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:105: member_decl: Class member declaration for ""dynSegSize"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:109: member_decl: Class member declaration for ""secNameIndex"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:110: member_decl: Class member declaration for ""currEndOffset"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:111: member_decl: Class member declaration for ""currEndAddress"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.h:123: member_decl: Class member declaration for ""loadSecTotalSize"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""currEndAddress"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""currEndOffset"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""dataSegEnd"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""dynSegAddr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""dynSegOff"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""dynSegSize"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""loadSecTotalSize"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""newSegmentStart"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""olddynStrSize"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""phdrSegAddr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""phdrSegOff"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""phdr_offset"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""secNameIndex"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""textSegEnd"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""verdefnum"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf.C:269: uninit_member: Non-static class member ""verneednum"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:53: member_decl: Class member declaration for ""newElf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:57: member_decl: Class member declaration for ""newEhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:58: member_decl: Class member declaration for ""oldEhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:60: member_decl: Class member declaration for ""newPhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:61: member_decl: Class member declaration for ""oldPhdr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:69: member_decl: Class member declaration for ""olddynStrData"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:74: member_decl: Class member declaration for ""dynData"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:76: member_decl: Class member declaration for ""dataData"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:78: member_decl: Class member declaration for ""textSh"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:79: member_decl: Class member declaration for ""rodataSh"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""dataData"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""dynData"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""newEhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""newElf"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""newPhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""oldEhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""oldPhdr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""olddynStrData"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""rodataSh"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""textSh"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:62: member_decl: Class member declaration for ""phdr_offset"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:70: member_decl: Class member declaration for ""olddynStrSize"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:96: member_decl: Class member declaration for ""verneednum"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:96: member_decl: Class member declaration for ""verdefnum"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:99: member_decl: Class member declaration for ""newSegmentStart"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:103: member_decl: Class member declaration for ""dataSegEnd"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:103: member_decl: Class member declaration for ""textSegEnd"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:104: member_decl: Class member declaration for ""dynSegOff"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:104: member_decl: Class member declaration for ""dynSegAddr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:104: member_decl: Class member declaration for ""phdrSegOff"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:104: member_decl: Class member declaration for ""phdrSegAddr"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:105: member_decl: Class member declaration for ""dynSegSize"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:109: member_decl: Class member declaration for ""secNameIndex"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:110: member_decl: Class member declaration for ""currEndOffset"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:111: member_decl: Class member declaration for ""currEndAddress"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.h:123: member_decl: Class member declaration for ""loadSecTotalSize"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""currEndAddress"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""currEndOffset"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""dataSegEnd"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""dynSegAddr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""dynSegOff"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""dynSegSize"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""loadSecTotalSize"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""newSegmentStart"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""olddynStrSize"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""phdrSegAddr"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""phdrSegOff"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""phdr_offset"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""secNameIndex"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""textSegEnd"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""verdefnum"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/emitElf-64.C:241: uninit_member: Non-static class member ""verneednum"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.h:166: member_decl: Class member declaration for ""hasAsyncPending"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:535: uninit_member: Non-static class member ""hasAsyncPending"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:539: uninit_member: Non-static class member ""hasAsyncPending"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:95: member_decl: Class member declaration for ""data"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_Set.h:103: uninit_member: Non-static class member ""data"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:57: member_decl: Class member declaration for "type".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:58: member_decl: Class member declaration for "fatal".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:89: uninit_member: Non-static class member field "lastErrorInfo.fatal" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:89: uninit_member: Non-static class member field "lastErrorInfo.type" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Point.h:295: uninit_member: Non-static class member ""state_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Point.h:295: uninit_member: Non-static class member ""type_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Point.h:317: member_decl: Class member declaration for ""state_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Point.h:318: member_decl: Class member declaration for ""type_"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:53: uninit_member: Non-static class member ""TOC_address"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:53: uninit_member: Non-static class member ""adjustEntry"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:53: uninit_member: Non-static class member ""adjustTableStartAddress"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:53: uninit_member: Non-static class member ""foundAdjustEntry"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:53: uninit_member: Non-static class member ""jumpStartAddress"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:53: uninit_member: Non-static class member ""tableIsRelative"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:53: uninit_member: Non-static class member ""tableStartAddress"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:67: member_decl: Class member declaration for ""tableIsRelative"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:68: member_decl: Class member declaration for ""tableStartAddress"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:69: member_decl: Class member declaration for ""adjustTableStartAddress"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:70: member_decl: Class member declaration for ""jumpStartAddress"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:71: member_decl: Class member declaration for ""adjustEntry"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:72: member_decl: Class member declaration for ""foundAdjustEntry"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.h:73: member_decl: Class member declaration for ""TOC_address"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_process.h:104: member_decl: Class member declaration for ""returnValue"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_process.h:109: uninit_member: Non-static class member ""returnValue"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmExpression.h:1057: member_decl: Class member declaration for ""p_type"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:497: uninit_member: Non-static class member ""p_type"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmExpression.h:96: member_decl: Class member declaration for ""p_unfolded_expression_tree"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:213: uninit_member: Non-static class member ""p_unfolded_expression_tree"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmExpression.h:100: member_decl: Class member declaration for ""p_bit_offset"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmExpression.h:104: member_decl: Class member declaration for ""p_bit_size"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:213: uninit_member: Non-static class member ""p_bit_offset"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:213: uninit_member: Non-static class member ""p_bit_size"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:124: member_decl: Class member declaration for ""elf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:94: uninit_member: Non-static class member ""elf"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/eventLock.h:86: member_decl: Class member declaration for ""owner_id"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/eventLock.C:86: uninit_member: Non-static class member ""owner_id"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:135: uninit_member: Non-static class member ""bpatchBeginCB"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:135: uninit_member: Non-static class member ""bpatchEndCB"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridAnalysis.h:399: member_decl: Class member declaration for ""bpatchBeginCB"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridAnalysis.h:400: member_decl: Class member declaration for ""bpatchEndCB"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/h/PCProcess.h:122: member_decl: Class member declaration for ""lib"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:5151: uninit_member: Non-static class member ""lib"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:57: member_decl: Class member declaration for "type".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:58: member_decl: Class member declaration for "fatal".
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:95: uninit_member: Non-static class member field "lastErrorInfo.fatal" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/h/snippetGen.h:95: uninit_member: Non-static class member field "lastErrorInfo.type" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:124: member_decl: Class member declaration for ""elf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:122: uninit_member: Non-static class member ""elf"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:129: member_decl: Class member declaration for ""filedes"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:122: uninit_member: Non-static class member ""filedes"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridAnalysis.h:276: member_decl: Class member declaration for ""codeChanged"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridOverwrites.C:86: uninit_member: Non-static class member ""codeChanged"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridAnalysis.h:212: member_decl: Class member declaration for ""instrumentedFuncs"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:117: uninit_member: Non-static class member ""instrumentedFuncs"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridAnalysis.h:229: member_decl: Class member declaration for ""virtualFreeSize_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:117: uninit_member: Non-static class member ""virtualFreeSize_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:124: member_decl: Class member declaration for ""elf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:94: uninit_member: Non-static class member ""elf"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:570: uninit_member: Non-static class member ""oType"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:572: member_decl: Class member declaration for ""oType"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:570: uninit_member: Non-static class member ""oValue"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:570: uninit_member: Non-static class member ""oVar"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:573: member_decl: Class member declaration for ""oValue"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:574: member_decl: Class member declaration for ""oVar"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Archive.h:112: member_decl: Class member declaration for ""mf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Archive-elf.C:104: uninit_member: Non-static class member ""mf"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:703: member_decl: Class member declaration for ""index"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:700: uninit_member: Non-static class member ""index"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:702: member_decl: Class member declaration for ""ranges_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:700: uninit_member: Non-static class member ""ranges_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:158: member_decl: Class member declaration for ""fileOff_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:82: uninit_member: Non-static class member ""fileOff_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:812: member_decl: Class member declaration for ""inline_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:810: uninit_member: Non-static class member ""inline_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:812: member_decl: Class member declaration for ""inline_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:784: uninit_member: Non-static class member ""inline_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:172: member_decl: Class member declaration for ""code_vldS_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:173: member_decl: Class member declaration for ""code_vldE_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:175: member_decl: Class member declaration for ""data_vldS_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:176: member_decl: Class member declaration for ""data_vldE_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:185: member_decl: Class member declaration for ""is_aout_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:191: member_decl: Class member declaration for ""no_of_sections_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.h:192: member_decl: Class member declaration for ""no_of_symbols_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:408: uninit_member: Non-static class member ""code_vldE_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:408: uninit_member: Non-static class member ""code_vldS_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:408: uninit_member: Non-static class member ""data_vldE_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:408: uninit_member: Non-static class member ""data_vldS_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:408: uninit_member: Non-static class member ""is_aout_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:408: uninit_member: Non-static class member ""no_of_sections_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object.C:408: uninit_member: Non-static class member ""no_of_symbols_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:461: member_decl: Class member declaration for ""intvar"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1016: uninit_member: Non-static class member ""intvar"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmPowerpcInstruction.h:57: member_decl: Class member declaration for ""p_operandList"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:727: uninit_member: Non-static class member ""p_operandList"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.h:78: member_decl: Class member declaration for ""event_ext"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2247: uninit_member: Non-static class member ""event_ext"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.h:78: member_decl: Class member declaration for ""event_ext"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:2256: uninit_member: Non-static class member ""event_ext"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:707: member_decl: Class member declaration for ""relocationType"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:3248: uninit_member: Non-static class member ""relocationType"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:138: member_decl: Class member declaration for ""link_name"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:209: uninit_member: Non-static class member ""link_name"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:616: uninit_member: Non-static class member ""func_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:621: member_decl: Class member declaration for ""func_"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:616: uninit_member: Non-static class member ""callReplace_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:616: uninit_member: Non-static class member ""constFunc_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:616: uninit_member: Non-static class member ""func_addr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:619: member_decl: Class member declaration for ""func_addr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:624: member_decl: Class member declaration for ""callReplace_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.h:625: member_decl: Class member declaration for ""constFunc_"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmx86Instruction.h:74: member_decl: Class member declaration for ""p_lockPrefix"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmx86Instruction.h:76: member_decl: Class member declaration for ""p_repeatPrefix"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmx86Instruction.h:78: member_decl: Class member declaration for ""p_branchPrediction"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmx86Instruction.h:80: member_decl: Class member declaration for ""p_segmentOverride"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:742: uninit_member: Non-static class member ""p_branchPrediction"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:742: uninit_member: Non-static class member ""p_lockPrefix"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:742: uninit_member: Non-static class member ""p_repeatPrefix"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:742: uninit_member: Non-static class member ""p_segmentOverride"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:138: member_decl: Class member declaration for ""link_name"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/addrtranslate-sysv.C:209: uninit_member: Non-static class member ""link_name"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:493: member_decl: Class member declaration for ""container"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/procset.C:551: uninit_member: Non-static class member ""container"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.C:98: member_decl: Class member declaration for ""result"".
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/IA_powerDetails.C:56: uninit_member: Non-static class member ""result"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.h:142: member_decl: Class member declaration for ""blockNumber_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.h:144: member_decl: Class member declaration for ""unresolvedCF_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.h:145: member_decl: Class member declaration for ""abruptEnd_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.C:218: uninit_member: Non-static class member ""abruptEnd_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.C:218: uninit_member: Non-static class member ""blockNumber_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parse-cfg.C:218: uninit_member: Non-static class member ""unresolvedCF_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:453: member_decl: Class member declaration for ""name"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_snippet.h:461: member_decl: Class member declaration for ""intvar"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1198: uninit_member: Non-static class member ""intvar"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_snippet.C:1198: uninit_member: Non-static class member ""name"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/rose/SgAsmExpression.h:1015: member_decl: Class member declaration for ""p_type"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/RoseImpl.C:588: uninit_member: Non-static class member ""p_type"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.C:48: uninit_member: Non-static class member ""lastInsnOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.C:48: uninit_member: Non-static class member ""regionType"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.h:107: member_decl: Class member declaration for ""lastInsnOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.h:108: member_decl: Class member declaration for ""regionType"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:124: member_decl: Class member declaration for ""elf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:122: uninit_member: Non-static class member ""elf"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Elf_X.h:129: member_decl: Class member declaration for ""filedes"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Elf_X.C:122: uninit_member: Non-static class member ""filedes"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_process.h:170: member_decl: Class member declaration for ""exitSignal"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_process.C:194: uninit_member: Non-static class member ""exitSignal"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch.h:196: member_decl: Class member declaration for ""callbackSignals"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch.C:179: uninit_member: Non-static class member ""callbackSignals"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.h:102: member_decl: Class member declaration for ""addrSizePrefixPresent"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/InstructionDecoder-x86.C:123: uninit_member: Non-static class member ""addrSizePrefixPresent"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridAnalysis.h:72: member_decl: Class member declaration for ""postPt_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridAnalysis.h:74: member_decl: Class member declaration for ""postHandle_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:1316: uninit_member: Non-static class member ""postHandle_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/hybridInstrumentation.C:1316: uninit_member: Non-static class member ""postPt_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:474: member_decl: Class member declaration for ""debugger_stopped"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2220: uninit_member: Non-static class member ""debugger_stopped"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_process.h:474: member_decl: Class member declaration for ""debugger_stopped"".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:2215: uninit_member: Non-static class member ""debugger_stopped"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.C:41: uninit_member: Non-static class member ""firstInsnOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.C:41: uninit_member: Non-static class member ""lastInsnOffset_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.C:41: uninit_member: Non-static class member ""regionType"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.h:106: member_decl: Class member declaration for ""firstInsnOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.h:107: member_decl: Class member declaration for ""lastInsnOffset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/parRegion.h:108: member_decl: Class member declaration for ""regionType"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/Instruction.h:287: member_decl: Class member declaration for ""arch_decoded_from"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Instruction.C:134: uninit_member: Non-static class member ""arch_decoded_from"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:91: member_decl: Class member declaration for ""suite_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:92: member_decl: Class member declaration for ""release_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:93: member_decl: Class member declaration for ""buildnum_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:94: member_decl: Class member declaration for ""component_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""builder_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""buildnum_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""component_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""date_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""release_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""revision_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""suite_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Ident.C:95: uninit_member: Non-static class member ""time_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:95: member_decl: Class member declaration for ""revision_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:96: member_decl: Class member declaration for ""date_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:97: member_decl: Class member declaration for ""time_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/Ident.h:98: member_decl: Class member declaration for ""builder_"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/Operation.h:143: member_decl: Class member declaration for ""doneOtherSetup"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/Operation.h:144: member_decl: Class member declaration for ""doneFlagsSetup"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/Operation.h:145: member_decl: Class member declaration for ""archDecodedFrom"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/h/Operation.h:147: member_decl: Class member declaration for ""addrWidth"".
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Operation.C:175: uninit_member: Non-static class member ""addrWidth"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Operation.C:175: uninit_member: Non-static class member ""archDecodedFrom"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Operation.C:175: uninit_member: Non-static class member ""doneFlagsSetup"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/instructionAPI/src/Operation.C:175: uninit_member: Non-static class member ""doneOtherSetup"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:132: uninit_member: Non-static class member ""max_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.C:132: uninit_member: Non-static class member ""pc_rel_use_count"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:256: member_decl: Class member declaration for ""max_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen.h:257: member_decl: Class member declaration for ""pc_rel_use_count"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/pcEventMuxer.h:175: member_decl: Class member declaration for ""started_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/pcEventMuxer.C:59: uninit_member: Non-static class member ""started_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/h/BPatch_image.h:349: member_decl: Class member declaration for ""defaultModule"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_image.C:92: uninit_member: Non-static class member ""defaultModule"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:438: member_decl: Class member declaration for ""parentArchive_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:439: member_decl: Class member declaration for ""mf"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:440: member_decl: Class member declaration for ""mfForDebugInfo"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:453: member_decl: Class member declaration for ""code_ptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:454: member_decl: Class member declaration for ""data_ptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:575: member_decl: Class member declaration for ""lines_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:576: member_decl: Class member declaration for ""stabstr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:578: member_decl: Class member declaration for ""stabs_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:579: member_decl: Class member declaration for ""stringpool_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:596: member_decl: Class member declaration for ""obj_private"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""code_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""data_ptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""lines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""mf"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""mfForDebugInfo"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""obj_private"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""parentArchive_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""stabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""stabstr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""stringpool_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:452: member_decl: Class member declaration for ""address_width_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:456: member_decl: Class member declaration for ""entry_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:457: member_decl: Class member declaration for ""base_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:458: member_decl: Class member declaration for ""load_address_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:459: member_decl: Class member declaration for ""toc_offset_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:460: member_decl: Class member declaration for ""object_type_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:461: member_decl: Class member declaration for ""is_eel_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:478: member_decl: Class member declaration for ""newSectionInsertPoint"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:481: member_decl: Class member declaration for ""no_of_symbols"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:508: member_decl: Class member declaration for ""sorted_everyFunction"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:573: member_decl: Class member declaration for ""nlines_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:574: member_decl: Class member declaration for ""fdptr_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:577: member_decl: Class member declaration for ""nstabs_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:582: member_decl: Class member declaration for ""hasRel_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:583: member_decl: Class member declaration for ""hasRela_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:584: member_decl: Class member declaration for ""hasReldyn_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:585: member_decl: Class member declaration for ""hasReladyn_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:586: member_decl: Class member declaration for ""hasRelplt_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:587: member_decl: Class member declaration for ""hasRelaplt_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:589: member_decl: Class member declaration for ""isStaticBinary_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""address_width_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""base_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""entry_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""fdptr_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""hasRel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""hasRela_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""hasReladyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""hasRelaplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""hasReldyn_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""hasRelplt_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""isStaticBinary_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""is_eel_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""load_address_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""newSectionInsertPoint"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""nlines_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""no_of_symbols"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""nstabs_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""object_type_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""sorted_everyFunction"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:1653: uninit_member: Non-static class member ""toc_offset_"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""diskOff_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""diskSize_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""fileOff_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""isDirty_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""isLoadable_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""isTLS_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""memAlign_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""memOff_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""memSize_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""permissions_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""rType_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Region.C:57: uninit_member: Non-static class member ""regNum_"" is not initialized in this constructor nor in any functions that it calls.
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:152: member_decl: Class member declaration for ""regNum_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:154: member_decl: Class member declaration for ""diskOff_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:155: member_decl: Class member declaration for ""diskSize_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:156: member_decl: Class member declaration for ""memOff_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:157: member_decl: Class member declaration for ""memSize_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:158: member_decl: Class member declaration for ""fileOff_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:160: member_decl: Class member declaration for ""permissions_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:161: member_decl: Class member declaration for ""rType_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:162: member_decl: Class member declaration for ""isDirty_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:165: member_decl: Class member declaration for ""isLoadable_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:166: member_decl: Class member declaration for ""isTLS_"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Region.h:167: member_decl: Class member declaration for ""memAlign_"".

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/h/stackanalysis.h:397: member_decl: Class member declaration for ""word_size"".
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/stackanalysis.C:395: uninit_member: Non-static class member ""word_size"" is not initialized in this constructor nor in any functions that it calls.

Error: UNINIT_CTOR:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/h/Symtab.h:707: member_decl: Class member declaration for ""relocationType"".
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Symtab.C:3272: uninit_member: Non-static class member ""relocationType"" is not initialized in this constructor nor in any functions that it calls.

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/Absloc.C:163: unreachable: This code cannot be reached: "if (this->absloc_.func() ==...".

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/dynProcess.C:1446: unreachable: This code cannot be reached: "std::vector<boost::shared_p...".

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchFunction.C:574: unreachable: This code cannot be reached: "(((((((std::cerr << "Error:...".

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/sysv.C:323: unreachable: Since the loop increment is unreachable, the loop body will never execute more than once.

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/linux.C:1007: unreachable: This code cannot be reached: "if (!fake_async_thread){
  ...".

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTmemEmulator.c:138: unreachable: This code cannot be reached: "fflush(stOut);".

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI_RT/src/RTmemEmulator.c:214: unreachable: This code cannot be reached: "fflush(stOut);".

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1035: unreachable: Since the loop increment is unreachable, the loop body will never execute more than once.

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/mapped_object.C:361: unreachable: This code cannot be reached: "temp_str = NULL;".

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/int_thread_db.C:1013: unreachable: Since the loop increment is unreachable, the loop body will never execute more than once.

Error: UNREACHABLE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/util.C:215: unreachable: This code cannot be reached: "return "bad_platform";".

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/debug_dataflow.C:74: returned_pointer: Pointer "p" returned by "getenv("DATAFLOW_DEBUG_CONVERT")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/debug_dataflow.C:79: returned_pointer: Pointer "p" returned by "getenv("DATAFLOW_DEBUG_EXPAND")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/debug_dataflow.C:84: returned_pointer: Pointer "p" returned by "getenv("DATAFLOW_DEBUG_LIVENESS")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/debug_dataflow.C:69: returned_pointer: Pointer "p" returned by "getenv("DATAFLOW_DEBUG_SLICING")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dataflowAPI/src/debug_dataflow.C:64: returned_pointer: Pointer "p" returned by "getenv("DATAFLOW_DEBUG_STACKANALYSIS")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/Object-elf.C:5296: returned_pointer: Pointer "shnames" returned by "pdelf_get_shnames(this->elfHdr)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/parseAPI/src/SymtabCodeSource.C:278: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_PARSING")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1683: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType(newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseDwarf.C:309: returned_pointer: Pointer "rangeType" returned by "tc->addOrUpdateType(rangeType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1201: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeArray *)newAType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:1328: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeScalar *)newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2311: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeArray *)(Dyninst::SymtabAPI::rangedType *)newAType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2276: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeFunction *)newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2212: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typePointer *)(Dyninst::SymtabAPI::derivedType *)newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2168: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeScalar *)newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2326: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeScalar *)newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2362: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeScalar *)newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:2191: returned_pointer: Pointer "newType" returned by "tc->addOrUpdateType((Dyninst::SymtabAPI::typeTypedef *)(Dyninst::SymtabAPI::derivedType *)newType)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:457: returned_pointer: Pointer "fp" returned by "mangledNameMatchKLUDGE(symt_current_func_name.c_str(), symt_current_mangled_func_name.c_str(), mod)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/symtabAPI/src/parseStab.C:742: returned_pointer: Pointer "newType" returned by "Dyninst::SymtabAPI::Type::createPlaceholder(symdescID, std::string(name))" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:225: returned_pointer: Pointer "thr" returned by "int_thread::createThread(this, -1L, *i, false)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dynC_API/src/C.l:243: returned_pointer: Pointer "bp" returned by "dynC_scan_string(str)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:87: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_ANNOTATABLE")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:83: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_ANNOTATION")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/src/Annotatable.C:79: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_ANNOTATIONS")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:335: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_AST")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:327: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_BPATCH")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:323: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_CATCHUP")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_DBI")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:354: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_DISASS")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:315: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_DWARF")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_DYNPC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:307: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_DYN_UNW")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_FORKEXEC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:344: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_INFERIORMALLOC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_INFERIORRPC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:344: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_INFMALLOC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_INFRPC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:291: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_INST")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_MAILBOX")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:246: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_MALWARE")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:311: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_MUTEX")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:331: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_REGALLOC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:295: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_RELOC")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:299: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_RELOCATION")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:319: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_RTLIB")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:303: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_SENSITIVITY")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_SIGNAL")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:254: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_SPRINGBOARD")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:287: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_STACKWALK")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:258: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_STARTUP")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:274: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_THREAD")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:250: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_TRAP")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/codegen-x86.C:825: returned_pointer: Pointer "entry" returned by "orig_instr.getEntry()" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:765: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_CODEGEN")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:731: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_INST")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:758: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_PARSING")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:745: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_PTRACE")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:440: returned_pointer: Pointer "str_buffer" returned by "str_data.d_buf()" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchObject.C:223: returned_pointer: Pointer "p2" returned by "this->getBlock(second, true)" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/ast.C:2258: returned_pointer: Pointer "eType" returned by "this->eoperand->checkType()" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:440: returned_pointer: Pointer "str_buffer" returned by "str_data.d_buf()" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/patchapi_debug.C:49: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_RELOCATION")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/patchapi_debug.C:55: returned_pointer: Pointer "p" returned by "getenv("DYNINST_DEBUG_SPRINGBOARD")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/patchapi_debug.C:49: returned_pointer: Pointer "p" returned by "getenv("PATCHAPI_DEBUG_RELOCATION")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/Relocation/patchapi_debug.C:55: returned_pointer: Pointer "p" returned by "getenv("PATCHAPI_DEBUG_SPRINGBOARD")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:841: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_CODEGEN")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:788: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_INST")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:829: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_PARSING")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/debug.C:812: returned_pointer: Pointer "p" returned by "getenv("DYNINST_STATS_PTRACE")" is never used.

Error: UNUSED_VALUE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:598: returned_pointer: Pointer "initial_thread" returned by "int_thread::createThread(this, -1L, -1, true)" is never used.

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:181: freed_arg: "int_process::waitAndHandleForProc(bool, int_process *, bool &)" frees "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:913: freed_arg: "operator delete(void *)" frees parameter "proc".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:174: deref_arg: Calling "int_process::getState() const" dereferences freed pointer "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:731: deref_parm: Directly dereferencing parameter "this".

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:411: freed_arg: "int_process::waitfor_startup()" frees "proc".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:181: freed_arg: "int_process::waitAndHandleForProc(bool, int_process *, bool &)" frees parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:913: freed_arg: "operator delete(void *)" frees parameter "proc".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:414: deref_after_free: Dereferencing freed pointer "proc".

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:123: freed_arg: "int_process::waitfor_startup()" frees "proc".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:181: freed_arg: "int_process::waitAndHandleForProc(bool, int_process *, bool &)" frees parameter "this".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:913: freed_arg: "operator delete(void *)" frees parameter "proc".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:124: deref_arg: Calling "int_process::getState() const" dereferences freed pointer "proc".
/builddir/build/BUILD/dyninst-7.99/dyninst/proccontrol/src/process.C:731: deref_parm: Directly dereferencing parameter "this".

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchBlock.C:403: freed_arg: "Dyninst::PatchAPI::PatchCallback::destroy(Dyninst::PatchAPI::Point *)" frees "this->points_.during".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchCallback.C:209: freed_arg: "operator delete(void *)" frees parameter "e".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchBlock.C:404: deref_arg: Calling "Dyninst::PatchAPI::Point::~Point()" dereferences freed pointer "this->points_.during". (The dereference happens because this is a virtual function call.)

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchBlock.C:398: freed_arg: "Dyninst::PatchAPI::PatchCallback::destroy(Dyninst::PatchAPI::Point *)" frees "this->points_.entry".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchCallback.C:209: freed_arg: "operator delete(void *)" frees parameter "e".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchBlock.C:399: deref_arg: Calling "Dyninst::PatchAPI::Point::~Point()" dereferences freed pointer "this->points_.entry". (The dereference happens because this is a virtual function call.)

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchBlock.C:408: freed_arg: "Dyninst::PatchAPI::PatchCallback::destroy(Dyninst::PatchAPI::Point *)" frees "this->points_.exit".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchCallback.C:209: freed_arg: "operator delete(void *)" frees parameter "e".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchBlock.C:409: deref_arg: Calling "Dyninst::PatchAPI::Point::~Point()" dereferences freed pointer "this->points_.exit". (The dereference happens because this is a virtual function call.)

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:626: alias: Assigning: "ser" = "sr". Now both point to the same storage.
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:629: freed_arg: "operator delete(void *)" frees "ser".
/builddir/build/BUILD/dyninst-7.99/dyninst/common/h/SymLite-elf.h:632: deref_after_free: Dereferencing freed pointer "ser".

Error: USE_AFTER_FREE:
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/ParseCallback.C:107: freed_arg: "Dyninst::PatchAPI::PatchCallback::destroy(Dyninst::PatchAPI::Point *)" frees "pe->points_.during".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchCallback.C:209: freed_arg: "operator delete(void *)" frees parameter "e".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/ParseCallback.C:112: deref_arg: Calling "Dyninst::PatchAPI::PatchFunction::remove(Dyninst::PatchAPI::Point *)" dereferences freed pointer "pe->points_.during".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/src/PatchFunction.C:433: deref_parm_in_call: Function "Dyninst::PatchAPI::Point::func() const" dereferences parameter "p".
/builddir/build/BUILD/dyninst-7.99/dyninst/patchAPI/h/Point.h:210: deref_parm: Directly dereferencing parameter "this".

Error: WRAPPER_ESCAPE:
/builddir/build/BUILD/dyninst-7.99/dyninst/dyninstAPI/src/BPatch_statement.C:63: escape: The internal representation of "std::string(this->statement->getFile())" escapes, but is destroyed when it exits scope.
[← Prev in Thread] Current Thread [Next in Thread→]