Skip to content

Commit

Permalink
Add missed header files
Browse files Browse the repository at this point in the history
  • Loading branch information
mxz297 committed Aug 15, 2017
1 parent 3714412 commit 9598481
Show file tree
Hide file tree
Showing 2 changed files with 140 additions and 0 deletions.
70 changes: 70 additions & 0 deletions parseAPI/src/IA_aarch64.h
@@ -0,0 +1,70 @@
/*
* See the dyninst/COPYRIGHT file for copyright information.
*
* We provide the Paradyn Tools (below described as "Paradyn")
* on an AS IS basis, and do not warrant its validity or performance.
* We reserve the right to update, modify, or discontinue this
* software at any time. We shall have no obligation to supply such
* updates or modifications or any other form of support to you.
*
* By your use of Paradyn, you understand and agree that we (or any
* other person or entity with proprietary rights in Paradyn) are
* under no obligation to provide either maintenance services,
* update services, notices of latent defects, or correction of
* defects for Paradyn.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if !defined(IA_AARCH64__H)
#define IA_AARCH64__H
#include "common/h/DynAST.h"
#include "dataflowAPI/h/Absloc.h"
#include "dataflowAPI/h/SymEval.h"
#include "dataflowAPI/h/slicing.h"
#include "IA_IAPI.h"

namespace Dyninst {
namespace InsnAdapter {


class IA_aarch64 : public IA_IAPI {
public:
IA_aarch64(Dyninst::InstructionAPI::InstructionDecoder dec_,
Address start_,
Dyninst::ParseAPI::CodeObject* o,
Dyninst::ParseAPI::CodeRegion* r,
Dyninst::InstructionSource *isrc,
Dyninst::ParseAPI::Block * curBlk_);
IA_aarch64(const IA_aarch64 &);
virtual IA_aarch64* clone() const;
virtual bool isFrameSetupInsn(Dyninst::InstructionAPI::Instruction::Ptr) const;
virtual bool isNop() const;
virtual bool isThunk() const;
virtual bool isTailCall(ParseAPI::Function* context, ParseAPI::EdgeTypeEnum type, unsigned int, const set<Address>& knownTargets) const;
virtual bool savesFP() const;
virtual bool isStackFramePreamble() const;
virtual bool cleansStack() const;
virtual bool sliceReturn(ParseAPI::Block* bit, Address ret_addr, ParseAPI::Function * func) const;
virtual bool isReturnAddrSave(Address& retAddr) const;
virtual bool isReturn(Dyninst::ParseAPI::Function * context, Dyninst::ParseAPI::Block* currBlk) const;
virtual bool isFakeCall() const;
virtual bool isIATcall(std::string &) const;
virtual bool isLinkerStub() const;
virtual bool isNopJump() const;
};

}
}
#endif
70 changes: 70 additions & 0 deletions parseAPI/src/IA_x86.h
@@ -0,0 +1,70 @@
/*
* See the dyninst/COPYRIGHT file for copyright information.
*
* We provide the Paradyn Tools (below described as "Paradyn")
* on an AS IS basis, and do not warrant its validity or performance.
* We reserve the right to update, modify, or discontinue this
* software at any time. We shall have no obligation to supply such
* updates or modifications or any other form of support to you.
*
* By your use of Paradyn, you understand and agree that we (or any
* other person or entity with proprietary rights in Paradyn) are
* under no obligation to provide either maintenance services,
* update services, notices of latent defects, or correction of
* defects for Paradyn.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if !defined(IA_X86__H)
#define IA_X86__H
#include "common/h/DynAST.h"
#include "dataflowAPI/h/Absloc.h"
#include "dataflowAPI/h/SymEval.h"
#include "dataflowAPI/h/slicing.h"
#include "IA_IAPI.h"

namespace Dyninst {
namespace InsnAdapter {


class IA_x86 : public IA_IAPI {
public:
IA_x86(Dyninst::InstructionAPI::InstructionDecoder dec_,
Address start_,
Dyninst::ParseAPI::CodeObject* o,
Dyninst::ParseAPI::CodeRegion* r,
Dyninst::InstructionSource *isrc,
Dyninst::ParseAPI::Block * curBlk_);
IA_x86(const IA_x86 &);
virtual IA_x86* clone() const;
virtual bool isFrameSetupInsn(Dyninst::InstructionAPI::Instruction::Ptr) const;
virtual bool isNop() const;
virtual bool isThunk() const;
virtual bool isTailCall(ParseAPI::Function* context, ParseAPI::EdgeTypeEnum type, unsigned int, const set<Address>& knownTargets) const;
virtual bool savesFP() const;
virtual bool isStackFramePreamble() const;
virtual bool cleansStack() const;
virtual bool sliceReturn(ParseAPI::Block* bit, Address ret_addr, ParseAPI::Function * func) const;
virtual bool isReturnAddrSave(Address& retAddr) const;
virtual bool isReturn(Dyninst::ParseAPI::Function * context, Dyninst::ParseAPI::Block* currBlk) const;
virtual bool isFakeCall() const;
virtual bool isIATcall(std::string &) const;
virtual bool isLinkerStub() const;
virtual bool isNopJump() const;
};

}
}
#endif

0 comments on commit 9598481

Please sign in to comment.