summaryrefslogtreecommitdiff
path: root/covoar/Target_arm.h
diff options
context:
space:
mode:
Diffstat (limited to 'covoar/Target_arm.h')
-rw-r--r--covoar/Target_arm.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/covoar/Target_arm.h b/covoar/Target_arm.h
deleted file mode 100644
index 0396402..0000000
--- a/covoar/Target_arm.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/*! @file Target_arm.h
- * @brief Target_arm Specification
- *
- * This file contains the specification of the Target_arm class.
- */
-
-#ifndef __TARGET_ARM_H__
-#define __TARGET_ARM_H__
-
-#include <list>
-#include <string>
-#include "TargetBase.h"
-
-namespace Target {
-
- /*! @class Target_arm
- *
- * This class is the Target classe for the arm processor.
- *
- */
- class Target_arm: public TargetBase {
-
- public:
-
- /*!
- * This method constructs an Target_arm instance.
- */
- Target_arm( std::string targetName );
-
- /*!
- * This method destructs an Target_arm instance.
- */
- virtual ~Target_arm();
-
- /*!
- * This method determines whether the specified line from a
- * objdump file is a nop instruction.
- *
- * @param[in] line contains the object dump line to check
- * @param[out] size is set to the size in bytes of the nop
- *
- * @return Returns TRUE if the instruction is a nop, FALSE otherwise.
- */
- bool isNopLine(
- const char* const line,
- int& size
- );
-
- /*!
- * This method determines if the specified line from an
- * objdump file is a branch instruction.
- */
- bool isBranch(
- const char* const instruction
- );
-
- private:
-
- };
-
- //!
- //! @brief Constructor Helper
- //!
- //! This is a constructor helper for this class which can be used in support
- //! of factories.
- //!
- //! @param [in] Targetname is the name of the Target being constructed.
- //!
- //! @return This method constructs a new instance of the Target and returns
- //! that to the caller.
- //!
- TargetBase *Target_arm_Constructor(
- std::string targetName
- );
-
-}
-#endif