summaryrefslogtreecommitdiffstats
path: root/tester/covoar/Target_sparc.h
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-05-09 21:50:37 +1000
committerChris Johns <chrisj@rtems.org>2014-06-18 16:48:08 +1200
commit100f517ab37265acdf067e36b6860020ec8b2184 (patch)
tree2316c8b888e11dcbcfbfc66a0c1e31991ea20656 /tester/covoar/Target_sparc.h
parent4.11: Add ntp patch. (diff)
downloadrtems-tools-100f517ab37265acdf067e36b6860020ec8b2184.tar.bz2
covoar: Merger the covoar source from rtems-testing.git.
Use waf to build covoar.
Diffstat (limited to 'tester/covoar/Target_sparc.h')
-rw-r--r--tester/covoar/Target_sparc.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/tester/covoar/Target_sparc.h b/tester/covoar/Target_sparc.h
new file mode 100644
index 0000000..253e53a
--- /dev/null
+++ b/tester/covoar/Target_sparc.h
@@ -0,0 +1,79 @@
+/*! @file Target_sparc.h
+ * @brief Target_sparc Specification
+ *
+ * This file contains the specification of the Target_sparc class.
+ */
+
+#ifndef __TARGET_SPARC_H__
+#define __TARGET_SPARC_H__
+
+#include <list>
+#include <string>
+#include "TargetBase.h"
+
+
+namespace Target {
+
+ /*! @class Target_sparc
+ *
+ * This is the class for the sparc target.
+ *
+ */
+ class Target_sparc: public TargetBase {
+
+ public:
+
+ /*!
+ * This method constructs an Target_sparc instance.
+ */
+ Target_sparc( std::string targetName );
+
+ /*!
+ * This method destructs an Target_sparc instance.
+ */
+ virtual ~Target_sparc();
+
+ /*!
+ * 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_sparc_Constructor(
+ std::string targetName
+ );
+
+
+}
+#endif