Go to the source code of this file.
◆ PSEUDO_OP
#define PSEUDO_OP |
( |
|
Prefix, |
|
|
|
Suffix |
|
) |
| |
Value: const Operator* Prefix##Suffix() { \
return Is32() ? Prefix##32##Suffix() : Prefix##64##Suffix(); \
}
Definition at line 170 of file machine-operator.h.
◆ PSEUDO_OP_LIST
#define PSEUDO_OP_LIST |
( |
|
V | ) |
|
Value:
V(Word, Or) \
V(Word, Xor) \
V(Word, Shl) \
V(Word, Shr) \
V(Word, Sar) \
V(Word, Ror) \
V(Word, Equal) \
V(Int, Add) \
V(Int, Sub) \
V(Int, Mul) \
V(Int, Div) \
V(Int, UDiv) \
V(Int, Mod) \
V(Int, UMod) \
V(Int, LessThan) \
V(Int, LessThanOrEqual)
#define V(NAME, Name, id)
Definition at line 152 of file machine-operator.h.