QP/C++ 6.9.3
qpcpp.hpp
Go to the documentation of this file.
1 
39 #ifndef qpcpp_h
40 #define qpcpp_h
41 
45 
46 //****************************************************************************
47 #include "qf_port.hpp" // QF/C++ port from the port directory
48 #include "qassert.h" // QP assertions
49 #ifdef Q_SPY // software tracing enabled?
50  #include "qs_port.hpp" // QS/C++ port from the port directory
51 #else
52  #include "qs_dummy.hpp" // QS/C++ dummy (inactive) interface
53 #endif
54 
55 //****************************************************************************
56 #ifndef QP_API_VERSION
57 
70 #define QP_API_VERSION 0
71 
72 #endif // QP_API_VERSION
73 
74 // QP/C++ API compatibility layer...
75 
76 //****************************************************************************
77 #if (QP_API_VERSION < 691)
78 
80 #define QS_FILTER_ON(rec_) QS_GLB_FILTER((rec_))
81 
83 #define QS_FILTER_OFF(rec_) QS_GLB_FILTER(-(rec_))
84 
86 #define QS_FILTER_SM_OBJ(obj_) (static_cast<void>(0))
87 
89 #define QS_FILTER_AO_OBJ(obj_) (static_cast<void>(0))
90 
92 #define QS_FILTER_MP_OBJ(obj_) (static_cast<void>(0))
93 
95 #define QS_FILTER_EQ_OBJ(obj_) (static_cast<void>(0))
96 
98 #define QS_FILTER_TE_OBJ(obj_) (static_cast<void>(0))
99 
100 #ifdef Q_SPY
101 
103 #define QS_FILTER_AP_OBJ(obj_) \
104  (QP::QS::priv_.locFilter_AP = (obj_))
105 
107 #define QS_BEGIN(rec_, obj_) \
108  if (QS_GLB_FILTER_(rec_) && \
109  ((QP::QS::priv_.locFilter[QP::QS::AP_OBJ] == nullptr) \
110  || (QP::QS::priv_.locFilter_AP == (obj_)))) \
111  { \
112  QS_CRIT_STAT_ \
113  QS_CRIT_E_(); \
114  QP::QS::beginRec_(static_cast<std::uint_fast8_t>(rec_)); \
115  QS_TIME_PRE_();
116 
118 #define QS_U32_HEX(width_, data_) \
119  (QP::QS::u32_fmt_(static_cast<std::uint8_t>( \
120  (static_cast<std::uint8_t>((width_) << 4)) \
121  | static_cast<std::uint8_t>(0xFU)), (data_)))
122 
123 
124 
125 #else
126 
127 #define QS_FILTER_AP_OBJ(obj_) (static_cast<void>(0))
128 #define QS_BEGIN(rec_, obj_) if (false) {
129 #define QS_U32_HEX(width_, data_) (static_cast<void>(0))
130 
131 #endif
132 
133 //****************************************************************************
134 #if (QP_API_VERSION < 680)
135 
140 #define Q_TRAN(target_) (me->tran(Q_STATE_CAST(target_)))
141 
146 #define Q_TRAN_HIST(hist_) (me->tran_hist((hist_)))
147 
152 #define Q_SUPER(state_) (me->super((state_)))
153 
158 #define QM_ENTRY(state_) (me->qm_entry((state_)))
159 
164 #define QM_EXIT(state_) (me->qm_exit((state_)))
165 
170 #define QM_SM_EXIT(state_) (me->qm_sm_exit((state_)))
171 
176 #define QM_TRAN(tatbl_) (me->qm_tran((tatbl_)))
177 
182 #define QM_TRAN_INIT(tatbl_) (me->qm_tran_init((tatbl_)))
183 
188 #define QM_TRAN_HIST(history_, tatbl_) \
189  (me->qm_tran_hist((history_), (tatbl_)))
190 
195 #define QM_TRAN_EP(tatbl_) (me->qm_tran_ep((tatbl_)))
196 
201 #define QM_TRAN_XP(xp_, tatbl_) (me->qm_tran_xp((xp_), (tatbl_)))
202 
207 #define QM_SUPER_SUB(state_) (me->qm_super_sub((state_)))
208 
209 #endif // QP_API_VERSION < 680
210 #endif // QP_API_VERSION < 691
211 
212 #endif // qpcpp_h
213 
Customizable and memory-efficient assertions for embedded systems.
Dummy definitions of the QS macros that avoid code generation from the QS instrumentation.
QS/C++ port to a 32-bit CPU, generic compiler.