1 | //Opcode.h
|
---|
2 |
|
---|
3 |
|
---|
4 | //レジスタを示す定数
|
---|
5 | #define REG_EAX 1
|
---|
6 | #define REG_EBX 2
|
---|
7 | #define REG_ECX 3
|
---|
8 | #define REG_EDX 4
|
---|
9 | #define REG_ESP 5
|
---|
10 | #define REG_EBP 6
|
---|
11 |
|
---|
12 | #define REGISTER_OPERAND(reg) (reg&0x07)
|
---|
13 |
|
---|
14 | #define REG_NON -1
|
---|
15 | #define REG_RAX 0x00 //reg:000
|
---|
16 | #define REG_RCX 0x01 //reg:001
|
---|
17 | #define REG_RDX 0x02 //reg:010
|
---|
18 | #define REG_RBX 0x03 //reg:011
|
---|
19 | #define REG_RSP 0x04 //reg:100
|
---|
20 | #define REG_RBP 0x05 //reg:101
|
---|
21 | #define REG_RSI 0x06 //reg:110
|
---|
22 | #define REG_RDI 0x07 //reg:111
|
---|
23 | #define REG_R8 0x08 //reg:000(REXプリフィックス)
|
---|
24 | #define REG_R9 0x09 //reg:001(REXプリフィックス)
|
---|
25 | #define REG_R10 0x0A //reg:010(REXプリフィックス)
|
---|
26 | #define REG_R11 0x0B //reg:011(REXプリフィックス)
|
---|
27 | #define REG_R12 0x0C //reg:100(REXプリフィックス)
|
---|
28 | #define REG_R13 0x0D //reg:101(REXプリフィックス)
|
---|
29 | #define REG_R14 0x0E //reg:110(REXプリフィックス)
|
---|
30 | #define REG_R15 0x0F //reg:111(REXプリフィックス)
|
---|
31 |
|
---|
32 | #define REG_XMM0 0x10 //reg:000
|
---|
33 | #define REG_XMM1 0x11 //reg:001
|
---|
34 | #define REG_XMM2 0x12 //reg:010
|
---|
35 | #define REG_XMM3 0x13 //reg:011
|
---|
36 | #define REG_XMM4 0x14 //reg:100
|
---|
37 | #define REG_XMM5 0x15 //reg:101
|
---|
38 | #define REG_XMM6 0x16 //reg:110
|
---|
39 | #define REG_XMM7 0x17 //reg:111
|
---|
40 | #define REG_XMM8 0x18 //reg:000
|
---|
41 | #define REG_XMM9 0x19 //reg:001
|
---|
42 | #define REG_XMM10 0x1A //reg:010
|
---|
43 | #define REG_XMM11 0x1B //reg:011
|
---|
44 | #define REG_XMM12 0x1C //reg:100
|
---|
45 | #define REG_XMM13 0x1D //reg:101
|
---|
46 | #define REG_XMM14 0x1E //reg:110
|
---|
47 | #define REG_XMM15 0x1F //reg:111
|
---|
48 |
|
---|
49 | #define IS_XMM_REG(reg) (reg&0x10)
|
---|
50 |
|
---|
51 |
|
---|
52 |
|
---|
53 | //変数の種類
|
---|
54 | #define NON_VAR 0
|
---|
55 | #define VAR_GLOBAL 1 //Global Variable
|
---|
56 | #define VAR_LOCAL 2 //Local Variable
|
---|
57 | #define VAR_REFLOCAL 3 //Local Refference Variable
|
---|
58 | #define VAR_DIRECTMEM 5 //Direct memory
|
---|
59 |
|
---|
60 |
|
---|
61 | extern int cp;
|
---|
62 | extern int obp;
|
---|
63 | extern char *OpBuffer;
|
---|
64 |
|
---|
65 | #define breakpoint OpBuffer[obp++]=(char)0xCC;
|
---|
66 |
|
---|
67 |
|
---|
68 | //ラベルアドレス
|
---|
69 | struct LABEL{
|
---|
70 | char *pName;
|
---|
71 | int line;
|
---|
72 | DWORD address;
|
---|
73 | };
|
---|
74 |
|
---|
75 | //Goto未知ラベル
|
---|
76 | struct GOTOLABELSCHEDULE{
|
---|
77 | char *pName;
|
---|
78 | int line;
|
---|
79 | DWORD pos;
|
---|
80 | DWORD now_cp;
|
---|
81 | };
|
---|
82 |
|
---|
83 |
|
---|
84 | //プロシージャの種類
|
---|
85 | #define PROC_DEFAULT 1 //ユーザー定義関数
|
---|
86 | #define PROC_DLL 2 //DLL関数
|
---|
87 | #define PROC_BUILTIN 3 //コンパイラ埋め込み型
|
---|
88 | #define PROC_PTR 4 //関数ポインタ
|
---|
89 |
|
---|
90 | //プロシージャ
|
---|
91 | struct PROCEDURE{
|
---|
92 | char name[255];
|
---|
93 | int address;
|
---|
94 | int types[MAX_PARMS];
|
---|
95 | _int8 ByVal[MAX_PARMS];
|
---|
96 | BOOL ReturnType;
|
---|
97 | };
|
---|
98 |
|
---|
99 | //With情報
|
---|
100 | struct WITHINFO{
|
---|
101 | char **ppName;
|
---|
102 | int *pWithCp;
|
---|
103 | int num;
|
---|
104 | };
|
---|
105 |
|
---|
106 |
|
---|
107 | class CStackFrame:public CSchedule{
|
---|
108 | ///////////////////////////
|
---|
109 | // スタックフレーム管理
|
---|
110 | ///////////////////////////
|
---|
111 |
|
---|
112 | int lowest_sp; //スタックポインタの最下位位置
|
---|
113 | int now_sp; //スタックポインタ
|
---|
114 | int max_parm_size; //パラメータの最大サイズ
|
---|
115 | int local_parm_size; //ローカル領域のパラメータサイズ
|
---|
116 |
|
---|
117 | public:
|
---|
118 | //コンストラクタ
|
---|
119 | CStackFrame();
|
---|
120 |
|
---|
121 | //デストラクタ
|
---|
122 | ~CStackFrame();
|
---|
123 |
|
---|
124 | void SetLocalParmSize(int size);
|
---|
125 | int GetFrameSize();
|
---|
126 | int push(int reg);
|
---|
127 | void push(int xmm_reg,int var_size);
|
---|
128 | void ref_offset_data( int reg, int sp_offset );
|
---|
129 | void ref(int reg);
|
---|
130 | void ref(int xmm_reg,int var_size);
|
---|
131 | void pop(int reg);
|
---|
132 | void pop(int xmm_reg,int var_size);
|
---|
133 | void parameter_allocate(int size);
|
---|
134 | void RunningSchedule(void);
|
---|
135 |
|
---|
136 | void error_check(void);
|
---|
137 | };
|
---|
138 | extern CStackFrame *pobj_sf;
|
---|
139 |
|
---|
140 |
|
---|
141 | class CBlockReg{
|
---|
142 | int array_BlockReg[256];
|
---|
143 | int num;
|
---|
144 |
|
---|
145 | public:
|
---|
146 | CBlockReg();
|
---|
147 | void lock(int reg);
|
---|
148 | void unlock(int reg);
|
---|
149 | BOOL check(int reg);
|
---|
150 | void clear(void);
|
---|
151 |
|
---|
152 | //レジスタのバックアップと復旧
|
---|
153 | void backup();
|
---|
154 | void restore();
|
---|
155 | };
|
---|
156 | extern CBlockReg *pobj_BlockReg;
|
---|
157 | class CRegister{
|
---|
158 | ////////////////////
|
---|
159 | // レジスタ管理
|
---|
160 | ////////////////////
|
---|
161 |
|
---|
162 | //利用可能なレジスタを列挙する関数
|
---|
163 | void EnumRegister(int *pRegList,int nMaxList,int *array_reg,int *sp,int AnswerReg);
|
---|
164 |
|
---|
165 | int array_UseReg[16],sp_UseReg;
|
---|
166 |
|
---|
167 | int array_XmmReg[16];
|
---|
168 | int sp_XmmReg;
|
---|
169 |
|
---|
170 | int init_sp_reg,init_sp_xmm_reg;
|
---|
171 |
|
---|
172 | public:
|
---|
173 | CRegister(){};
|
---|
174 | CRegister(int AnswerReg);
|
---|
175 | ~CRegister(){};
|
---|
176 |
|
---|
177 | //コンパイラにバグがないかをチェックする機構
|
---|
178 | void bug_check();
|
---|
179 |
|
---|
180 | //汎用レジスタ
|
---|
181 | int GetNextReg();
|
---|
182 | int GetLockingReg();
|
---|
183 | int LockReg();
|
---|
184 | int UnlockReg();
|
---|
185 |
|
---|
186 | //XMMレジスタ
|
---|
187 | int GetNextXmmReg();
|
---|
188 | int GetLockingXmmReg();
|
---|
189 | int LockXmmReg();
|
---|
190 | int UnlockXmmReg();
|
---|
191 |
|
---|
192 | //レジスタが利用中かどうかを調べる
|
---|
193 | bool IsUsing( int reg );
|
---|
194 |
|
---|
195 | //レジスタのバックアップと復旧
|
---|
196 | void backup();
|
---|
197 | void restore();
|
---|
198 | };
|
---|
199 | extern CRegister *pobj_reg;
|
---|
200 |
|
---|
201 |
|
---|
202 | #define BACKUP_REGISTER_RESOURCE \
|
---|
203 | /* レジスタをスタックフレームにバックアップ */ \
|
---|
204 | pobj_BlockReg->backup(); \
|
---|
205 | if(pobj_reg) pobj_reg->backup(); \
|
---|
206 | \
|
---|
207 | /* レジスタブロッキングオブジェクトを退避して再生成 */ \
|
---|
208 | CBlockReg *pobj_BlockReg_back; \
|
---|
209 | pobj_BlockReg_back=pobj_BlockReg; \
|
---|
210 | pobj_BlockReg=new CBlockReg; \
|
---|
211 | \
|
---|
212 | /* レジスタ管理オブジェクトポインタを退避して0をセット */ \
|
---|
213 | CRegister *pobj_reg_back; \
|
---|
214 | pobj_reg_back=pobj_reg; \
|
---|
215 | pobj_reg=0;
|
---|
216 |
|
---|
217 | #define RESTORE_REGISTER_RESOURCE \
|
---|
218 | /* レジスタブロッキングオブジェクトポインタを復元 */ \
|
---|
219 | delete pobj_BlockReg; \
|
---|
220 | pobj_BlockReg=pobj_BlockReg_back; \
|
---|
221 | \
|
---|
222 | /* レジスタ管理オブジェクトポインタを復元 */ \
|
---|
223 | delete pobj_reg; \
|
---|
224 | pobj_reg=pobj_reg_back; \
|
---|
225 | \
|
---|
226 | /* レジスタをスタックフレームから復元 */ \
|
---|
227 | if(pobj_reg) pobj_reg->restore(); \
|
---|
228 | pobj_BlockReg->restore();
|
---|
229 |
|
---|
230 |
|
---|
231 |
|
---|
232 | //RSrcSection.cpp
|
---|
233 | char *GetRSrcSectionBuffer(int *pLen);
|
---|
234 |
|
---|
235 | //Compile.cpp
|
---|
236 | void ChangeOpcode(char *Command);
|
---|
237 | void GetGlobalDataForDll(void);
|
---|
238 | DWORD CompileBuffer(char Return_Sequence,WORD Return_Command);
|
---|
239 |
|
---|
240 | //Register.cpp
|
---|
241 | BOOL IsGeneralReg(int reg);
|
---|
242 | BOOL IsXmmReg(int reg);
|
---|
243 | BOOL IsVolatileReg(int reg);
|
---|
244 |
|
---|
245 | //Compile_Calc.cpp
|
---|
246 | void SetVariableFromRax(int VarType,int CalcType,RELATIVE_VAR *pRelativeVar);
|
---|
247 | void OpcodeCalc(char *Command);
|
---|
248 | void SetRefVariable( const char *varname, const char *expression );
|
---|
249 |
|
---|
250 | //NumOpe.cpp
|
---|
251 | int NumOpe(int *pReg,const char *Command,int BaseType,LONG_PTR lpBaseIndex,LONG_PTR *plpIndex,BOOL *pbUseHeap=0);
|
---|
252 |
|
---|
253 | //NumOpe_Arithmetic.cpp
|
---|
254 | BOOL CalcTwoTerm_Arithmetic(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
255 | BOOL Calc_Mod(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
256 | BOOL Calc_Divide(int *type,int *pStackPointer,int BaseType);
|
---|
257 | BOOL Calc_IntDivide(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
258 | BOOL Calc_MinusMark(int *type,int sp);
|
---|
259 | BOOL Calc_Power(int *type,int *pStackPointer);
|
---|
260 | BOOL Calc_Shift(int idCalc,int *type,int *pStackPointer);
|
---|
261 |
|
---|
262 | //NumOpe_Logical.cpp
|
---|
263 | BOOL CalcTwoTerm_Logical(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
264 | BOOL Calc_Not(int *type,int sp);
|
---|
265 |
|
---|
266 | //NumOpe_Relation.cpp
|
---|
267 | BOOL CalcTwoTerm_Relational(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
268 |
|
---|
269 | //NumOpe_TypeOperation.cpp
|
---|
270 | void ExtendTypeTo64(int type,int reg);
|
---|
271 | void ExtendTypeTo32(int type,int reg);
|
---|
272 | void ExtendTypeTo16(int type,int reg);
|
---|
273 | void ChangeTypeToXmm_Double(int type,int xmm_reg,int general_reg);
|
---|
274 | void ChangeTypeToXmm_Single(int type,int xmm_reg,int general_reg);
|
---|
275 | void ChangeTypeToWhole(int OldType,int NewType,int reg,int xmm_reg);
|
---|
276 | void SetOneTermToReg_RealCalc(int TermType,int *pXmmReg);
|
---|
277 | void SetOneTermToReg_Whole64Calc(int TermType,int *pReg);
|
---|
278 | void SetOneTermToReg_Whole32Calc(int TermType,int *pReg);
|
---|
279 | void SetTowTermToReg_RealCalc(int AnswerType,int *type,int sp,int *pXmmReg1,int *pXmmReg2);
|
---|
280 | void SetTowTermToReg_Whole64Calc(int *type,int sp,int *pReg1,int *pReg2);
|
---|
281 | void SetTowTermToReg_Whole32Calc(int *type,int sp,int *pReg1,int *pReg2);
|
---|
282 | BOOL Calc_Cast(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
283 |
|
---|
284 | //Compile_Set_Var.cpp
|
---|
285 | BOOL IsUse_r11(RELATIVE_VAR *pRelativeVar);
|
---|
286 | void SetObjectVariableFromRax(LONG_PTR lpVarIndex,int CalcType,LONG_PTR lpCalcIndex,RELATIVE_VAR *pRelativeVar,BOOL bUseHeap);
|
---|
287 | void SetDoubleVariable(int type,RELATIVE_VAR *pRelative);
|
---|
288 | void SetSingleVariable(int type,RELATIVE_VAR *pRelative);
|
---|
289 | void SetBooleanVariable(int type,RELATIVE_VAR *pRelative);
|
---|
290 | void SetWholeVariable(int var_size,int type,RELATIVE_VAR *pRelative);
|
---|
291 |
|
---|
292 | //increment.cpp
|
---|
293 | void IncDec(int idCalc, char *lpszLeft, char *lpszRight);
|
---|
294 |
|
---|
295 | //calc2.cpp
|
---|
296 | #define EXP_TYPE_NUMBER 1
|
---|
297 | #define EXP_TYPE_EAX 2
|
---|
298 | #define EXP_TYPE_FPU 3
|
---|
299 | #define EXP_TYPE_VAR 4
|
---|
300 | int NumOpEx(char *Command,double *pDbl,DWORD *pdwType,RELATIVE_VAR *pRelativeVar);
|
---|
301 |
|
---|
302 | //Compile_Calc_PushVar.cpp
|
---|
303 | void SetXmmReg_DoubleVariable(RELATIVE_VAR *pRelativeVar,int xmm_reg);
|
---|
304 | void SetXmmReg_SingleVariable(RELATIVE_VAR *pRelativeVar,int xmm_reg);
|
---|
305 | void SetReg_WholeVariable(int type,RELATIVE_VAR *pRelativeVar,int reg);
|
---|
306 |
|
---|
307 | //Compile_Object.cpp
|
---|
308 | int Operator_New(const char *Parameter,LONG_PTR *plpIndex);
|
---|
309 | void OpcodeDelete(const char *Parameter);
|
---|
310 |
|
---|
311 | //Compile_Var.cpp
|
---|
312 | void GetWithName(char *buffer);
|
---|
313 | void SetThisPtrToReg(int reg);
|
---|
314 | BOOL GetVarOffset(bool isErrorEnabled,bool isWriteAccess,const char *NameBuffer,int *pType,RELATIVE_VAR *pRelativeVar,LONG_PTR *plpIndex,int *pss=0);
|
---|
315 | BOOL SetInitGlobalData(int offset,int type,LONG_PTR lpIndex,int *SubScripts,char *InitBuf);
|
---|
316 | #define DIMFLAG_INITDEBUGVAR 0x01
|
---|
317 | #define DIMFLAG_NONCALL_CONSTRACTOR 0x02
|
---|
318 | #define DIMFLAG_STATIC 0x04
|
---|
319 | #define DIMFLAG_CONST 0x08
|
---|
320 | void OpcodeDim(char *Parameter,DWORD dwFlag);
|
---|
321 | void SetVarPtrToReg(int reg,RELATIVE_VAR *pRelativeVar);
|
---|
322 |
|
---|
323 | //CParameter.cpp
|
---|
324 | #define OVERLOAD_LEVEL1 1
|
---|
325 | #define OVERLOAD_LEVEL2 2
|
---|
326 | #define OVERLOAD_LEVEL3 3
|
---|
327 | class CParameter{
|
---|
328 | char *Parms[255];
|
---|
329 | TYPEINFO types[255];
|
---|
330 | int ParmsNum;
|
---|
331 |
|
---|
332 | TYPEINFO ReturnTypeInfo;
|
---|
333 |
|
---|
334 | //一時オブジェクト管理用
|
---|
335 | bool useTempObject;
|
---|
336 | bool useTempParameters[255];
|
---|
337 | int StackOffsetOfTempObject[255];
|
---|
338 |
|
---|
339 | public:
|
---|
340 | CParameter(const char *buffer);
|
---|
341 | CParameter(const PARAMETER_INFO *pParamInfo, const int ParmNum);
|
---|
342 | ~CParameter();
|
---|
343 | void SetReturnType(TYPEINFO *pTypeInfo);
|
---|
344 |
|
---|
345 | private:
|
---|
346 | BOOL _overload_check(PARAMETER_INFO *ppi,int pi_num,TYPEINFO *pReturnTypeInfo,int overload_level);
|
---|
347 | SUBINFO *OverloadSolutionWithReturnType( const char *name, std::vector<SUBINFO *> &subs );
|
---|
348 | public:
|
---|
349 | SUBINFO *OverloadSolution( const char *name, std::vector<SUBINFO *> &subs );
|
---|
350 |
|
---|
351 | BOOL ErrorCheck(const char *FuncName,PARAMETER_INFO *ppi,int pi_num,int SecondParmNum);
|
---|
352 | void MacroParameterSupport(PARAMETER_INFO *ppi);
|
---|
353 | void SetObjectParameter(int reg,CClass *pobj_Class,LPSTR Parameter);
|
---|
354 |
|
---|
355 | //一時オブジェクトパラメータの生成と破棄
|
---|
356 | void NewTempParameters( const char *FuncName,PARAMETER_INFO *ppi,int pi_num,int SecondParmNum );
|
---|
357 | void DeleteTempParameters();
|
---|
358 |
|
---|
359 | void SetParameter(const char *FuncName,PARAMETER_INFO *ppi,int pi_num,int SecondParmNum);
|
---|
360 |
|
---|
361 | void BackupParameter(int pi_num);
|
---|
362 | void RestoreParameter(int pi_num);
|
---|
363 | };
|
---|
364 |
|
---|
365 | //CLockParameter.cpp
|
---|
366 | #define MAX_LOCKPARMS 255
|
---|
367 | class CDBLockParms{
|
---|
368 | public:
|
---|
369 | int array_LevelCount[MAX_LOCKPARMS];
|
---|
370 | CDBLockParms();
|
---|
371 | ~CDBLockParms();
|
---|
372 |
|
---|
373 | void lock(int level);
|
---|
374 | void unlock(int level);
|
---|
375 | };
|
---|
376 |
|
---|
377 | //Compile_CallProc.cpp
|
---|
378 | void AddLocalVarAddrSchedule();
|
---|
379 | #define PROCFLAG_NEW 1
|
---|
380 | int Opcode_CallProcPtr(char *variable,char *Parameter,PROCPTRINFO *pi,LONG_PTR *plpIndex);
|
---|
381 | void Opcode_CallProc(char *Parameter,SUBINFO *psi,DWORD dwFlags,char *ObjectName,int RefType);
|
---|
382 | int Opcode_CallDllProc(char *Parameter,DECLAREINFO *pdi,LONG_PTR *plpIndex);
|
---|
383 |
|
---|
384 | //Compile_ProcOp.cpp
|
---|
385 | void CompileLocal();
|
---|
386 |
|
---|
387 | //Compile_Func.cpp
|
---|
388 | int GetFunctionType(int FuncNum);
|
---|
389 | int GetFunctionFromName(char *FuncName);
|
---|
390 | void Opcode_CallFunc( const char *Parameter, const int FuncNum, TYPEINFO &ReturnTypeInfo );
|
---|
391 |
|
---|
392 | //OperatorProc.cpp
|
---|
393 | void FreeTempObject(int reg,CClass *pobj_c);
|
---|
394 | int CallOperatorProc(int idCalc,TYPEINFO *pBaseTypeInfo,int *type,LONG_PTR *index_stack,BOOL *bUseHeap,int &sp);
|
---|
395 | void CallCastOperatorProc(int reg,int &CalcType,LONG_PTR &lpCalcIndex,BOOL bCalcUseHeap,int ToType,LONG_PTR lpToIndex);
|
---|
396 | void CallIndexerGetterProc(int reg,CClass *pobj_Class,char *ObjectName,char *Parameter,TYPEINFO &RetTypeInfo);
|
---|
397 |
|
---|
398 | //Compile_Statement.cpp
|
---|
399 | void OpcodeOthers(char *Command);
|
---|
400 | void OpcodeIf(char *Parameter);
|
---|
401 | void OpcodeGoto(char *Parameter);
|
---|
402 | void OpcodeWhile(char *Parameter);
|
---|
403 | void OpcodeFor(char *Parameter);
|
---|
404 | void OpcodeDo(char *Parameter);
|
---|
405 | void OpcodeContinue(void);
|
---|
406 | void OpcodeExitSub(void);
|
---|
407 | void OpcodeSelect(char *Parameter);
|
---|
408 | void OpcodeCase(char *Parameter);
|
---|
409 | void OpcodeGosub(char *Parameter);
|
---|
410 | void OpcodeReturn(char *Parameter);
|
---|
411 | void Opcode_Input(char *Parameter);
|
---|
412 | void Opcode_Print(char *Parameter,BOOL bWrite);
|
---|
413 | void OpcodeCallPtr(char *Parameter);
|
---|
414 | void OpcodeSetPtrData(char *Parameter,int type);
|
---|
415 |
|
---|
416 |
|
---|
417 | //InsertOpcode.cpp
|
---|
418 | void InsertDimStatement_ToProcHead(char *lpszCommand);
|
---|
419 |
|
---|
420 |
|
---|
421 |
|
---|
422 | ////////////////////////////////
|
---|
423 | // AMD64機械語生成に利用する関数郡
|
---|
424 | ////////////////////////////////
|
---|
425 |
|
---|
426 | //Mod(モード)
|
---|
427 | #define MOD_BASE (char)0x00
|
---|
428 | #define MOD_DISP32 (char)0xFF
|
---|
429 | #define MOD_BASE_DISP8 (char)0x40
|
---|
430 | #define MOD_BASE_DISP32 (char)0x80
|
---|
431 | #define MOD_REG (char)0xC0
|
---|
432 |
|
---|
433 | #define USE_OFFSET 1
|
---|
434 | #define NON_OFFSET 0
|
---|
435 |
|
---|
436 | //amd64_main.cpp
|
---|
437 | BOOL IsSafeReg(int reg);
|
---|
438 | void op_push(int reg);
|
---|
439 | void op_push_value(long data);
|
---|
440 | void op_pop(int reg);
|
---|
441 | void op_mov_RV (int op_size,int reg,int i32data);
|
---|
442 | void op_mov_RV64 (int reg,_int64 i64data);
|
---|
443 | void op_mov_RM (int op_size,int reg,int base_reg,int offset,char mod);
|
---|
444 | void op_mov_RM_ex (int op_size,int reg,int base_reg1,int base_reg2,int offset,BOOL bUseOffset);
|
---|
445 | void op_mov_MR (int op_size,int reg,int base_reg,int offset,char mod);
|
---|
446 | void op_mov_MR_ex (int op_size,int reg,int base_reg1,int base_reg2,int offset,BOOL bUseOffset);
|
---|
447 | void op_mov_MV (int op_size,int base_reg,int offset,BOOL bUseOffset,int i32data);
|
---|
448 | void op_mov_RR (int reg1,int reg2);
|
---|
449 | void op_mov64_ToReg (int reg,_int64 i64data);
|
---|
450 | void op_mov64_ToReg (int reg,int i32data);
|
---|
451 | void op_mov64_ToReg_FromReg (int reg1,int reg2);
|
---|
452 | void op_movsxd (int reg64,int reg32);
|
---|
453 | void op_movsx64_FromReg16 (int reg64,int reg16);
|
---|
454 | void op_movsx64_FromReg8 (int reg64,int reg8);
|
---|
455 | void op_movsx32_FromReg16 (int reg32,int reg16);
|
---|
456 | void op_movsx32_FromReg8 (int reg32,int reg8);
|
---|
457 | void op_movsx16_FromReg8 (int reg32,int reg8);
|
---|
458 | void op_inc (int reg);
|
---|
459 | void op_dec (int reg);
|
---|
460 | void op_add_RM (int op_size,int reg,int base_reg,int offset,char mod);
|
---|
461 | void op_add64_value (int reg,int offset);
|
---|
462 | void op_add64_reg (int reg1,int reg2);
|
---|
463 | void op_add32_reg (int reg1,int reg2);
|
---|
464 | void op_sub_RV (int op_size,int reg,int i32data);
|
---|
465 | void op_sub64_reg (int reg1,int reg2);
|
---|
466 | void op_sub32_reg (int reg1,int reg2);
|
---|
467 | void op_sbb_RR ( int op_size, int reg1, int reg2 );
|
---|
468 | void op_imul_reg (int op_size,int reg1,int reg2);
|
---|
469 | void op_imul_value (int op_size,int reg,int i32data);
|
---|
470 | void op_div64_reg (int reg);
|
---|
471 | void op_idiv64_reg (int reg);
|
---|
472 | void op_shl_reg (int op_size,int reg);
|
---|
473 | void op_sar_reg (int op_size,int reg);
|
---|
474 | void op_shr_reg (int op_size,int reg);
|
---|
475 | void op_and_reg (int op_size,int reg1,int reg2);
|
---|
476 | void op_and64_value (int reg,int offset);
|
---|
477 | void op_and32_value (int reg,int offset);
|
---|
478 | void op_or_reg (int op_size,int reg1,int reg2);
|
---|
479 | void op_xor_reg (int op_size,int reg1,int reg2);
|
---|
480 | void op_not_reg (int op_size,int reg);
|
---|
481 | void op_neg ( int reg );
|
---|
482 | void op_test (int reg1,int reg2);
|
---|
483 | void op_cmp_reg (int op_size,int reg1,int reg2);
|
---|
484 | void op_cmp_value (int op_size,int reg,char byte_data);
|
---|
485 | void op_setne (int reg);
|
---|
486 | void op_movlpd_MR (int xmm_reg,int base_reg,int offset,char mod);
|
---|
487 | void op_movlpd_RM (int xmm_reg,int base_reg,int offset,char mod);
|
---|
488 | void op_movsd_RR (int xmm_reg1,int xmm_reg2);
|
---|
489 | void op_movsd_MR (int xmm_reg,int base_reg,int offset,char mod);
|
---|
490 | void op_movss_RR (int xmm_reg1,int xmm_reg2);
|
---|
491 | void op_movss_RM (int xmm_reg,int base_reg,int offset,char mod);
|
---|
492 | void op_movss_MR (int xmm_reg,int base_reg,int offset,char mod);
|
---|
493 | void op_movd_RX (int reg,int xmm_reg);
|
---|
494 | void op_cvtsd2ss (int xmm_reg1,int xmm_reg2);
|
---|
495 | void op_cvtss2sd (int xmm_reg1,int xmm_reg2);
|
---|
496 | void op_cvttsd2si_xmm (int op_size,int reg,int xmm_reg);
|
---|
497 | void op_cvttss2si_xmm (int op_size,int reg,int xmm_reg);
|
---|
498 | void op_cvtsi2sd_reg (int op_size,int xmm_reg,int reg);
|
---|
499 | void op_cvtsi2ss_reg (int op_size,int xmm_reg,int reg);
|
---|
500 | void op_comisd (int xmm_reg1,int xmm_reg2);
|
---|
501 | void op_comiss (int xmm_reg1,int xmm_reg2);
|
---|
502 | void op_rep_movs (int op_size);
|
---|
503 | void op_add_rsp(int num);
|
---|
504 | void op_sub_rsp(int num);
|
---|
505 | void op_add_esp(int num);
|
---|
506 | void op_sub_esp(int num);
|
---|
507 | void op_fld_ptr_esp(int type);
|
---|
508 | void op_zero_reg(int reg);
|
---|
509 | void op_call( SUBINFO *psi );
|
---|
510 | void op_call( DECLAREINFO *pdi );
|
---|