43 [[nodiscard]]
SOM *
dup()
const override {
return new SOM; }
45 std::string
opequal()
const override {
return "--nostringval--"; }
51 std::string
type()
const override {
return "marktype"; }
53 bool equal(
const SO * p_other )
const override {
54 return dynamic_cast<const SOM *
>( p_other) !=
nullptr;
66 std::string
opequal()
const override {
return "--nostringval--"; }
72 std::string
type()
const override {
return "nulltype"; }
74 bool equal(
const SO * p_other )
const override {
75 return dynamic_cast<const SOL *
>( p_other) !=
nullptr;
92 explicit SOI( __int128 p_i ) :
i_(p_i) {}
102 [[nodiscard]]
SOI *
dup()
const override {
return new SOI(
i_ ); }
108 std::string
type()
const override {
return "integertype"; }
110 bool equal(
const SO * p_other )
const override {
111 auto o =
dynamic_cast<const SOI*
>( p_other );
112 return o ?
i_ == o->i_ :
false;
115 bool gt(
const SO * p_other )
const override {
116 auto o =
dynamic_cast<const SOI*
>( p_other );
122 bool ge(
const SO * p_other )
const override {
123 auto o =
dynamic_cast<const SOI*
>( p_other );
145 explicit SOB(
const std::string & p_s ) :
b_(p_s ==
"true") {}
148 explicit SOB(
bool p_b ) :
b_(p_b) {}
158 [[nodiscard]]
SOB *
dup()
const override {
return new SOB(
b_ ); }
161 return b_ ?
"true" :
"false";
166 std::string
type()
const override {
return "booleantype"; }
168 bool equal(
const SO * p_other )
const override {
169 auto o =
dynamic_cast<const SOB *
>( p_other);
170 return o ?
b_ == o->b_ :
false;
193 explicit SOR( __float128 p_r ) :
r_(p_r) {}
203 [[nodiscard]]
SOR *
dup()
const override {
return new SOR(
r_ ); }
210 std::string
opequal()
const override;
214 std::string
type()
const override {
return "realtype"; }
216 bool equal(
const SO * p_other )
const override {
217 auto o =
dynamic_cast<const SOR*
>( p_other );
218 return o ?
r_ == o->r_ :
false;
221 bool gt(
const SO * p_other )
const override {
222 auto o =
dynamic_cast<const SOR *
>( p_other );
228 bool ge(
const SO * p_other )
const override {
229 auto o =
dynamic_cast<const SOR *
>( p_other );
252 return !
name_.empty();
259 explicit SON(
const std::string& p_name,
bool p_exec =
false ) :
SO(p_exec),
name_(p_name) {
276 std::string
type()
const override {
return "nametype"; }
278 bool equal(
const SO * p_other )
const override {
279 auto o =
dynamic_cast<const SON *
>( p_other);
280 return o ?
name_ == o->name_ :
false;
329 std::string
opequal()
const override {
return "--"+std::string(
srep_)+
"--"; }
333 std::string
type()
const override {
return "operatortype"; }
335 bool equal(
const SO * p_other )
const override {
336 const SOO* o =
dynamic_cast<const SOO*
>( p_other);
356 SOo(
void (*p_f)(
Context & ),
const char * p_s,
size_t p_stackusage )
string to_string(const __int128 p_z)
We need an adapter function, because __int128 isn't supported by std::to_string().
Definition: adapter128.cpp:31
__int128 stoint128(const string &p_s)
We need an adapter function, because __float128 isn't supported by the standard library.
Definition: adapter128.cpp:59
__float128 stofloat128(const string &p_s)
We need an adapter function, because __float128 isn't supported by the standard library.
Definition: adapter128.cpp:69
Adapters for 128 bit versions of standard functions.
The context of execution.
Definition: context.h:35
Semantic Object Boolean.
Definition: sosimp.h:140
SOB(bool p_b)
Ctor.
Definition: sosimp.h:148
void negation()
Negation.
Definition: sosimp.h:175
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:164
bool getB() const
Getter for boolean value.
Definition: sosimp.h:152
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:160
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:168
void setB(bool p_b)
Setter for boolean value.
Definition: sosimp.h:155
bool b_
The boolean value.
Definition: sosimp.h:141
SOB(const std::string &p_s)
Ctor.
Definition: sosimp.h:145
std::string type() const override
Returns a type name.
Definition: sosimp.h:166
SOB * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:158
Semantic Object Integer.
Definition: sosimp.h:84
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:110
SOI * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:102
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:106
SOI(const std::string &p_s)
Ctor.
Definition: sosimp.h:89
void increment()
Increment.
Definition: sosimp.h:134
void setInteger(__int128 p_i)
Setter for the integer value.
Definition: sosimp.h:99
void decrement()
Decrement.
Definition: sosimp.h:131
__int128 i_
The 128 bit integer.
Definition: sosimp.h:85
SOI(__int128 p_i)
Ctor.
Definition: sosimp.h:92
std::string type() const override
Returns a type name.
Definition: sosimp.h:108
bool gt(const SO *p_other) const override
Greater than.
Definition: sosimp.h:115
bool ge(const SO *p_other) const override
Greater or equal.
Definition: sosimp.h:122
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:104
__int128 getInteger() const
Getter for the integer value.
Definition: sosimp.h:96
Semantic Object nuLl.
Definition: sosimp.h:62
SOL * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:64
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:70
std::string type() const override
Returns a type name.
Definition: sosimp.h:72
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:66
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: sosimp.h:68
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:74
Semantic Object Mark.
Definition: sosimp.h:41
std::string type() const override
Returns a type name.
Definition: sosimp.h:51
SOM * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:43
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: sosimp.h:47
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:45
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:53
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:49
Semantic Object Name.
Definition: sosimp.h:240
SON * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:264
bool invariant() const noexcept override
Checks class invariants.
Definition: sosimp.h:251
size_t getSize() const override
Getter for the number of characters or number of objects.
Definition: sosimp.h:283
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:266
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:272
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:278
SON(const std::string &p_name, bool p_exec=false)
Ctor.
Definition: sosimp.h:259
std::string type() const override
Returns a type name.
Definition: sosimp.h:276
std::string name_
The name.
Definition: sosimp.h:241
void load_exec(Context &k) const
Look up a name and executes it.
Definition: sosimp.cpp:34
Semantic Object Operator.
Definition: sosimp.h:301
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:331
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:329
const char *const srep_
A name just for representation.
Definition: sosimp.h:303
SOO * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:327
bool invariant() const noexcept override
Checks class invariants.
Definition: sosimp.h:310
void(*const core_)(Context &)
The core code, a C++ implementation of the operator.
Definition: sosimp.h:302
SOO(void(*const p_fun)(Context &), const char *p_str)
Ctor.
Definition: sosimp.h:322
std::string type() const override
Returns a type name.
Definition: sosimp.h:333
void exec(Context &k) const
Call the core code.
Definition: sosimp.h:342
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:335
Semantic Object Real.
Definition: sosimp.h:185
void setReal(__float128 p_r)
Setter for real value.
Definition: sosimp.h:200
SOR(const std::string &p_s)
Ctor.
Definition: sosimp.h:190
bool ge(const SO *p_other) const override
Greater or equal.
Definition: sosimp.h:228
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.cpp:30
__float128 r_
The real value as decimal number.
Definition: sosimp.h:186
__float128 getReal() const
Getter for real value.
Definition: sosimp.h:197
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:216
SOR(__float128 p_r)
Ctor.
Definition: sosimp.h:193
bool gt(const SO *p_other) const override
Greater than.
Definition: sosimp.h:221
std::string type() const override
Returns a type name.
Definition: sosimp.h:214
SOR * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:203
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:212
Semantic Object.
Definition: so.h:30
bool getExec() const
Getter for exec_.
Definition: so.h:43
Semantic Object Operator unregistered section.
Definition: sosimp.h:351
auto getStackusage() const
Getter for stackusage_.
Definition: sosimp.h:361
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:364
size_t stackusage_
The number of objects needed on the execution stack for execution.
Definition: sosimp.h:352
SOo(void(*p_f)(Context &), const char *p_s, size_t p_stackusage)
Ctor.
Definition: sosimp.h:356
Helpers for design by contract idioms.
#define DBC_INV_CTOR(T)
Assert for invariant checks in ctors and dtors.
Definition: dbc.h:91
void opErrExit(OpError p_err, const std::string &p_details, const std::source_location p_location)
Operator error message to interpreter cout_ and exit(1).
Definition: error.cpp:27
Miscellaneous definitions and functions.
char OTCode
OTCode - the Object Type Code.
Definition: helper.h:43