[4] | 1 | //BasicFixed.h
|
---|
| 2 |
|
---|
| 3 |
|
---|
| 4 | ////////////////
|
---|
| 5 | // マシンタイプ
|
---|
| 6 | ////////////////
|
---|
| 7 |
|
---|
| 8 | #define MACHINE_X86 1
|
---|
| 9 | #define MACHINE_AMD64 2
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | ////////////////
|
---|
| 13 | // 型
|
---|
| 14 | ////////////////
|
---|
| 15 |
|
---|
| 16 | /* basic\command.sbp内の "_System_Type_***" 定数と同期が必要 */
|
---|
| 17 | #define FLAG_PTR 0x80000000
|
---|
| 18 | #define FLAG_CAST 0x40000000
|
---|
| 19 |
|
---|
| 20 | //整数型
|
---|
[55] | 21 | #define DEF_SBYTE 0x00000001
|
---|
[4] | 22 | #define DEF_BYTE 0x00000002
|
---|
| 23 | #define DEF_INTEGER 0x00000003
|
---|
| 24 | #define DEF_WORD 0x00000004
|
---|
| 25 | #define DEF_LONG 0x00000005
|
---|
| 26 | #define DEF_DWORD 0x00000006
|
---|
| 27 | #define DEF_INT64 0x00000007
|
---|
| 28 | #define DEF_QWORD 0x00000008
|
---|
| 29 |
|
---|
| 30 | //実数型
|
---|
| 31 | #define DEF_SINGLE 0x00000009
|
---|
| 32 | #define DEF_DOUBLE 0x0000000A
|
---|
| 33 |
|
---|
[55] | 34 | //文字型
|
---|
| 35 | #define DEF_CHAR 0x0000000B
|
---|
| 36 |
|
---|
[36] | 37 | //bool型
|
---|
[55] | 38 | #define DEF_BOOLEAN 0x0000000C
|
---|
[36] | 39 |
|
---|
[4] | 40 | //文字列型
|
---|
[55] | 41 | #define DEF_STRING 0x0000000D
|
---|
[4] | 42 |
|
---|
| 43 | //ポインタ型
|
---|
[55] | 44 | #define DEF_PTR_VOID 0x0000000E
|
---|
| 45 | #define DEF_PTR_PROC 0x0000000F
|
---|
[4] | 46 |
|
---|
| 47 | //特殊型
|
---|
| 48 | #define DEF_ANY 0x00000015
|
---|
| 49 | #define DEF_OBJECT 0x00000016
|
---|
| 50 | #define DEF_ELLIPSE 0x00000018
|
---|
| 51 |
|
---|
| 52 | //ポインタ型
|
---|
| 53 | #define MASK_PTR 0x0000ff00
|
---|
| 54 | #define MASK_NATURAL 0x000000ff
|
---|
| 55 |
|
---|
| 56 | #define PTR_LEVEL(t) (((t)&MASK_PTR)>>8)
|
---|
| 57 | #define NATURAL_TYPE(t) ((t)&MASK_NATURAL)
|
---|
| 58 | #define MAKE_PTR_TYPE(t,p) ((t)|((p)<<8))
|
---|
[46] | 59 | #define PTR_LEVEL_UP(t) t = MAKE_PTR_TYPE(NATURAL_TYPE(t),PTR_LEVEL(t)+1)
|
---|
| 60 | #define PTR_LEVEL_DOWN(t) t = MAKE_PTR_TYPE(NATURAL_TYPE(t),PTR_LEVEL(t)-1)
|
---|
[4] | 61 |
|
---|
| 62 | #define DEF_PTR_BYTE MAKE_PTR_TYPE(DEF_BYTE,1)
|
---|
| 63 | #define DEF_PTR_OBJECT MAKE_PTR_TYPE(DEF_OBJECT,1)
|
---|
| 64 |
|
---|
| 65 |
|
---|
| 66 |
|
---|
| 67 | //NumOpe関数の結果がリテラル値の場合、その値の補助情報がindexに格納される
|
---|
| 68 | #define LITERAL_NULL -2
|
---|
| 69 | #define LITERAL_M128_0 -3
|
---|
| 70 | #define LITERAL_0_255 -4
|
---|
| 71 | #define LITERAL_M32768_0 -5
|
---|
| 72 | #define LITERAL_0_65535 -6
|
---|
| 73 | #define LITERAL_OTHER_MINUS -7
|
---|
| 74 | #define LITERAL_OTHER_PLUS -8
|
---|
| 75 |
|
---|
| 76 | #define LITERAL_STRING -9
|
---|
| 77 |
|
---|
| 78 | #define IS_LITERAL(x) (x<=LITERAL_NULL&&x!=LITERAL_STRING)
|
---|
| 79 | #define IS_MINUS_LITERAL(x) (x==LITERAL_M128_0||x==LITERAL_M32768_0||x==LITERAL_OTHER_MINUS)
|
---|
| 80 | #define IS_POSITIVE_LITERAL(x) (x==LITERAL_NULL||x==LITERAL_0_255||x==LITERAL_0_65535||x==LITERAL_OTHER_PLUS)
|
---|
| 81 |
|
---|
| 82 | //////////////////////////////////////
|
---|
| 83 | /* 演算子(優先順位が関係している) */
|
---|
| 84 | //////////////////////////////////////
|
---|
| 85 |
|
---|
| 86 | //論理演算子
|
---|
| 87 | #define CALC_XOR 3 // Xor
|
---|
| 88 | #define CALC_OR 6 // Or
|
---|
| 89 | #define CALC_AND 9 // And
|
---|
| 90 | #define CALC_NOT 12 // Not
|
---|
| 91 |
|
---|
| 92 | //比較演算子
|
---|
| 93 | #define CALC_PE 21 // <=
|
---|
| 94 | #define CALC_QE 22 // >=
|
---|
| 95 | #define CALC_NOTEQUAL 23 // <>
|
---|
| 96 | #define CALC_EQUAL 24 // =
|
---|
| 97 | #define CALC_P 25 // <
|
---|
| 98 | #define CALC_Q 26 // >
|
---|
| 99 |
|
---|
| 100 | //算術演算子
|
---|
| 101 | #define CALC_SHL 31 //<<
|
---|
| 102 | #define CALC_SHR 32 //>>
|
---|
| 103 | #define CALC_ADDITION 41 // +
|
---|
| 104 | #define CALC_SUBTRACTION 42 // -
|
---|
| 105 | #define CALC_STRPLUS 43 // &
|
---|
| 106 | #define CALC_MOD 51 // Mod
|
---|
| 107 | #define CALC_PRODUCT 61 // *
|
---|
| 108 | #define CALC_QUOTIENT 62 // /
|
---|
| 109 | #define CALC_INTQUOTIENT 63 //整数除算
|
---|
| 110 | #define CALC_AS 71 // As
|
---|
[41] | 111 | #define CALC_BYVAL 72 // ByVal
|
---|
[4] | 112 | #define CALC_MINUSMARK 81 // -x
|
---|
| 113 | #define CALC_POWER 91 // ^
|
---|
| 114 |
|
---|
| 115 | //代入演算子
|
---|
| 116 | #define CALC_SUBSITUATION 200
|
---|
| 117 |
|
---|
| 118 | //添え字演算子
|
---|
| 119 | #define CALC_ARRAY_GET 201
|
---|
| 120 | #define CALC_ARRAY_SET 202
|
---|
| 121 |
|
---|
| 122 |
|
---|
| 123 | //////////////////////////////////////////////////////////////////////
|
---|
| 124 | // エスケープシーケンス用のバイトコードは0xA0~0xCFの範囲も利用できる
|
---|
| 125 | //////////////////////////////////////////////////////////////////////
|
---|
| 126 |
|
---|
| 127 | //以下制御用エスケープシーケンス
|
---|
| 128 | #define ESC_MOD '1' //MOD 演算子
|
---|
| 129 | #define ESC_AND '&' //AND 演算子
|
---|
| 130 | #define ESC_OR '3' //OR 演算子
|
---|
| 131 | #define ESC_XOR '4' //XOR 演算子
|
---|
| 132 | #define ESC_NOT '5' //NOT 演算子
|
---|
| 133 | #define ESC_AS '6' //AS(区切り文字)
|
---|
| 134 | #define ESC_THEN 2 //Then
|
---|
| 135 | #define ESC_ELSE 3 //Else
|
---|
| 136 | #define ESC_IF 'A' //If
|
---|
| 137 | #define ESC_ELSEIF 'B' //ElseIf
|
---|
| 138 | #define ESC_ENDIF 'C' //End If
|
---|
| 139 | #define ESC_DEF 'D' //Def
|
---|
| 140 | #define ESC_DECLARE 'E' //Declare
|
---|
| 141 | #define ESC_SUB 'F' //Sub
|
---|
| 142 | #define ESC_ENDSUB 'G' //End Sub
|
---|
| 143 | #define ESC_EXITSUB 'H' //Exit Sub
|
---|
| 144 | #define ESC_FUNCTION 'I' //Function
|
---|
| 145 | #define ESC_ENDFUNCTION 'J' //End Function
|
---|
| 146 | #define ESC_EXITFUNCTION 'K'//Exit Function
|
---|
| 147 | #define ESC_BYVAL 'L' //ByVal
|
---|
| 148 | #define ESC_BYREF 'M' //ByRef
|
---|
| 149 | #define ESC_TYPE 'N' //Type
|
---|
| 150 | #define ESC_ENDTYPE 'O' //End Type
|
---|
| 151 | #define ESC_EXITFOR 'P' //Exit For
|
---|
| 152 | #define ESC_EXITWHILE 'Q' //Exit Wend
|
---|
| 153 | #define ESC_EXITDO 'R' //Exit Do
|
---|
| 154 | #define ESC_SELECTCASE 'S' //Select Case
|
---|
| 155 | #define ESC_CASE 'T' //Case
|
---|
| 156 | #define ESC_CASEELSE 'U' //Case Else
|
---|
| 157 | #define ESC_ENDSELECT 'V' //End Select
|
---|
| 158 | #define ESC_CONST 'W' //Const
|
---|
| 159 | #define ESC_WITH 'X' //With
|
---|
| 160 | #define ESC_ENDWITH 'Y' //End With
|
---|
| 161 | #define ESC_CDECL 'Z' //cdecl規約
|
---|
| 162 | #define ESC_MACRO 'a' //Macro
|
---|
| 163 | #define ESC_ENDMACRO 'b' //End Macro
|
---|
| 164 | #define ESC_EXITMACRO 'c' //Exit Macro
|
---|
| 165 | #define ESC_EXPORT 'd' //Export
|
---|
| 166 | #define ESC_CONTINUE 'e' //Continue
|
---|
| 167 | #define ESC_PSMEM 'f' //"->" Member of Pointer Struct(構造体ポインタのメンバ参照)
|
---|
| 168 | #define ESC_STATIC 'g' //Static
|
---|
| 169 | #define ESC_TYPEDEF 'h' //TypeDef
|
---|
| 170 | #define ESC_TRY 'i' //Try
|
---|
| 171 | #define ESC_CATCH 'j' //Catch
|
---|
| 172 | #define ESC_FINALLY 'k' //Finally
|
---|
| 173 | #define ESC_THROW 'l' //Throw
|
---|
| 174 | #define ESC_ENDTRY 'm' //End Try
|
---|
| 175 | //EXEファイル用制御エスケープシーケンス
|
---|
[40] | 176 | #define ESC_USING 'o' //Print命令語のUsing
|
---|
| 177 | #define ESC_FOR 'p' //Open命令語のFor
|
---|
| 178 | #define ESC_LINENUM 'q' //行番号を示す
|
---|
[4] | 179 |
|
---|
| 180 | //オブジェクト指向エスケープシーケンス
|
---|
| 181 | #define ESC_CLASS (char)0xA0
|
---|
| 182 | #define ESC_ENDCLASS (char)0xA1
|
---|
| 183 | #define ESC_ABSTRACT (char)0xA2
|
---|
| 184 | #define ESC_VIRTUAL (char)0xA3
|
---|
| 185 | #define ESC_OVERRIDE (char)0xA4
|
---|
| 186 | #define ESC_INHERITS (char)0xA5
|
---|
| 187 | #define ESC_ENUM (char)0xA6
|
---|
| 188 | #define ESC_ENDENUM (char)0xA7
|
---|
| 189 | #define ESC_NEW (char)0xA8
|
---|
| 190 | #define ESC_INTERFACE (char)0xA9
|
---|
| 191 | #define ESC_ENDINTERFACE (char)0xAA
|
---|
| 192 | #define ESC_OPERATOR (char)0xAB
|
---|
| 193 |
|
---|