1 | #pragma once
|
---|
2 |
|
---|
3 | #include <NativeCode.h>
|
---|
4 | #include <LexicalScope.h>
|
---|
5 |
|
---|
6 | #ifdef _AMD64_
|
---|
7 | #include "../../BasicCompiler64/MachineFixed.h"
|
---|
8 | #else
|
---|
9 | #include "../../BasicCompiler32/MachineFixed.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | // コード生成時の部分的なスケジューリング
|
---|
13 | class PertialSchedule
|
---|
14 | {
|
---|
15 | int codePos; // バッファ位置
|
---|
16 | int typeSize; // 対象サイズ(一般的には8bit/32bit)
|
---|
17 |
|
---|
18 | public:
|
---|
19 | PertialSchedule( int codePos, int typeSize )
|
---|
20 | : codePos( codePos )
|
---|
21 | , typeSize( typeSize )
|
---|
22 | {
|
---|
23 | }
|
---|
24 | ~PertialSchedule()
|
---|
25 | {
|
---|
26 | }
|
---|
27 |
|
---|
28 | int GetCodePos() const
|
---|
29 | {
|
---|
30 | return codePos;
|
---|
31 | }
|
---|
32 | int GetTypeSize() const
|
---|
33 | {
|
---|
34 | return typeSize;
|
---|
35 | }
|
---|
36 | };
|
---|
37 | typedef std::vector<const PertialSchedule *> PertialSchedules;
|
---|
38 |
|
---|
39 | //Goto未知ラベル
|
---|
40 | class GotoLabelSchedule : public PertialSchedule
|
---|
41 | {
|
---|
42 | std::string name;
|
---|
43 | int line;
|
---|
44 | int sourceCodePos;
|
---|
45 | public:
|
---|
46 | GotoLabelSchedule( const std::string &name, int nativeCodePos, int sourceCodePos )
|
---|
47 | : PertialSchedule( nativeCodePos, sizeof(long) )
|
---|
48 | , name( name )
|
---|
49 | , line( -1 )
|
---|
50 | , sourceCodePos( sourceCodePos )
|
---|
51 | {
|
---|
52 | }
|
---|
53 | GotoLabelSchedule( int line, int nativeCodePos, int sourceCodePos )
|
---|
54 | : PertialSchedule( nativeCodePos, sizeof(long) )
|
---|
55 | , line( line )
|
---|
56 | , sourceCodePos( sourceCodePos )
|
---|
57 | {
|
---|
58 | }
|
---|
59 | const std::string &GetName() const
|
---|
60 | {
|
---|
61 | return name;
|
---|
62 | }
|
---|
63 | int GetLineNum() const
|
---|
64 | {
|
---|
65 | return line;
|
---|
66 | }
|
---|
67 | int GetSourceCodePos() const
|
---|
68 | {
|
---|
69 | return sourceCodePos;
|
---|
70 | }
|
---|
71 | };
|
---|
72 | typedef std::vector<const GotoLabelSchedule *> GotoLabelSchedules;
|
---|
73 |
|
---|
74 | //ラベルアドレス
|
---|
75 | class GotoLabel
|
---|
76 | {
|
---|
77 | public:
|
---|
78 | std::string name;
|
---|
79 | int line;
|
---|
80 | DWORD address;
|
---|
81 |
|
---|
82 | GotoLabel( const std::string &name, long nativeCodePos )
|
---|
83 | : name( name )
|
---|
84 | , line( -1 )
|
---|
85 | , address( nativeCodePos )
|
---|
86 | {
|
---|
87 | }
|
---|
88 | GotoLabel( int line, long nativeCodePos )
|
---|
89 | : name( "" )
|
---|
90 | , line( line )
|
---|
91 | , address( nativeCodePos )
|
---|
92 | {
|
---|
93 | }
|
---|
94 | };
|
---|
95 | typedef std::vector<GotoLabel> GotoLabels;
|
---|
96 |
|
---|
97 | class LexicalScope
|
---|
98 | {
|
---|
99 | public:
|
---|
100 | enum SCOPE_TYPE{
|
---|
101 | //ベース
|
---|
102 | SCOPE_TYPE_BASE,
|
---|
103 |
|
---|
104 | //分岐
|
---|
105 | SCOPE_TYPE_IF,
|
---|
106 |
|
---|
107 | //ループ
|
---|
108 | SCOPE_TYPE_DO,
|
---|
109 | SCOPE_TYPE_FOR,
|
---|
110 | SCOPE_TYPE_WHILE,
|
---|
111 |
|
---|
112 | //ケース分け
|
---|
113 | SCOPE_TYPE_SELECT,
|
---|
114 | };
|
---|
115 |
|
---|
116 | private:
|
---|
117 | int level;
|
---|
118 | int StartAddress;
|
---|
119 | SCOPE_TYPE TypeOfStatement;
|
---|
120 |
|
---|
121 | PertialSchedules breakPertialSchedules;
|
---|
122 |
|
---|
123 | public:
|
---|
124 | LexicalScope( int level, int addr, SCOPE_TYPE TypeOfStatement )
|
---|
125 | : level( level )
|
---|
126 | , StartAddress( addr )
|
---|
127 | , TypeOfStatement( TypeOfStatement )
|
---|
128 | {
|
---|
129 | }
|
---|
130 | ~LexicalScope()
|
---|
131 | {
|
---|
132 | }
|
---|
133 |
|
---|
134 | int GetStartAddress()
|
---|
135 | {
|
---|
136 | return StartAddress;
|
---|
137 | }
|
---|
138 | SCOPE_TYPE GetTypeOfStatement()
|
---|
139 | {
|
---|
140 | return TypeOfStatement;
|
---|
141 | }
|
---|
142 |
|
---|
143 | void Break();
|
---|
144 | void RunScheduleOfBreak();
|
---|
145 | };
|
---|
146 |
|
---|
147 | class LexicalScopes
|
---|
148 | {
|
---|
149 | LexicalScope **ppScopes;
|
---|
150 | int level;
|
---|
151 |
|
---|
152 | public:
|
---|
153 |
|
---|
154 | LexicalScopes(){
|
---|
155 | ppScopes = (LexicalScope **)malloc( 1 );
|
---|
156 | level=0;
|
---|
157 | }
|
---|
158 | ~LexicalScopes(){
|
---|
159 | free( ppScopes );
|
---|
160 | }
|
---|
161 |
|
---|
162 | //初期化(関数コンパイルの開始時に呼び出される)
|
---|
163 | void Init(int addr);
|
---|
164 |
|
---|
165 | // スコープを開始
|
---|
166 | void Start( int addr, LexicalScope::SCOPE_TYPE TypeOfStatement );
|
---|
167 |
|
---|
168 | // スコープを検索
|
---|
169 | LexicalScope *SearchScope( LexicalScope::SCOPE_TYPE TypeOfStatement );
|
---|
170 |
|
---|
171 | int GetNowLevel(void);
|
---|
172 | void SetNowLevel( int level );
|
---|
173 | int GetStartAddress(void);
|
---|
174 |
|
---|
175 | void End();
|
---|
176 |
|
---|
177 | //スコープ終了時のデストラクタ呼び出し
|
---|
178 | void CallDestructorsOfScopeEnd();
|
---|
179 |
|
---|
180 | //Returnステートメント用のデストラクタ呼び出し
|
---|
181 | void CallDestructorsOfReturn( int BaseLevel = 0 );
|
---|
182 | };
|
---|
183 |
|
---|
184 | class CodeGenerator
|
---|
185 | {
|
---|
186 | NativeCode *pNativeCode;
|
---|
187 |
|
---|
188 | private:
|
---|
189 | // 部分スケジュールの管理
|
---|
190 | PertialSchedules pertialSchedules;
|
---|
191 |
|
---|
192 | // Continue用のコード位置情報の管理
|
---|
193 | std::vector<long> continueCodePositions;
|
---|
194 |
|
---|
195 | public:
|
---|
196 |
|
---|
197 | // ローカル変数用スケジュールの管理
|
---|
198 | PertialSchedules localVarPertialSchedules;
|
---|
199 |
|
---|
200 | // Exit Subスケジュールの管理
|
---|
201 | std::vector<long> exitSubCodePositions;
|
---|
202 |
|
---|
203 | // Gotoスケジュールの管理
|
---|
204 | GotoLabels gotoLabels;
|
---|
205 | GotoLabelSchedules gotoLabelSchedules;
|
---|
206 |
|
---|
207 | // レキシカルスコープの管理
|
---|
208 | LexicalScopes lexicalScopes;
|
---|
209 |
|
---|
210 | CodeGenerator()
|
---|
211 | : pNativeCode( 0 )
|
---|
212 | {
|
---|
213 | }
|
---|
214 | ~CodeGenerator()
|
---|
215 | {
|
---|
216 | if( pNativeCode )
|
---|
217 | {
|
---|
218 | CheckUnresolveSchedule();
|
---|
219 | }
|
---|
220 | }
|
---|
221 |
|
---|
222 | void Select( NativeCode &nativeCode )
|
---|
223 | {
|
---|
224 | if( pNativeCode )
|
---|
225 | {
|
---|
226 | CheckUnresolveSchedule();
|
---|
227 | }
|
---|
228 | pNativeCode = &nativeCode;
|
---|
229 | }
|
---|
230 | long GetNativeCodeSize() const
|
---|
231 | {
|
---|
232 | return pNativeCode->GetSize();
|
---|
233 | }
|
---|
234 |
|
---|
235 | void NextSourceLine()
|
---|
236 | {
|
---|
237 | pNativeCode->NextSourceLine();
|
---|
238 | }
|
---|
239 |
|
---|
240 | long GetContinueCodePos() const
|
---|
241 | {
|
---|
242 | if( continueCodePositions.size() == 0 )
|
---|
243 | {
|
---|
244 | return -1;
|
---|
245 | }
|
---|
246 | return continueCodePositions[continueCodePositions.size()-1];
|
---|
247 | }
|
---|
248 | void ClearContinueArea()
|
---|
249 | {
|
---|
250 | continueCodePositions.clear();
|
---|
251 | }
|
---|
252 | void ContinueAreaBegin()
|
---|
253 | {
|
---|
254 | continueCodePositions.push_back( pNativeCode->GetSize() );
|
---|
255 | }
|
---|
256 | void ContinueAreaEnd()
|
---|
257 | {
|
---|
258 | continueCodePositions.pop_back();
|
---|
259 | }
|
---|
260 |
|
---|
261 | void ResolveExitSubSchedule();
|
---|
262 |
|
---|
263 | void CheckUnresolveSchedule();
|
---|
264 |
|
---|
265 | void opfix( const PertialSchedule *pPertialSchedule, long newValue );
|
---|
266 | void opfix_offset( const PertialSchedule *pPertialSchedule, long offset );
|
---|
267 | void opfix_JmpPertialSchedule( const PertialSchedule *pPertialSchedule );
|
---|
268 |
|
---|
269 |
|
---|
270 | /////////////////////////////////////////////////////////////////
|
---|
271 | // 32bit/64bit共通 機械語生成
|
---|
272 | /////////////////////////////////////////////////////////////////
|
---|
273 |
|
---|
274 | private:
|
---|
275 | const PertialSchedule *__jmp_op_format( char opcode, long offset, int op_size, bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
276 | public:
|
---|
277 | const PertialSchedule *op_jle( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
278 | const PertialSchedule *op_jbe( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
279 | const PertialSchedule *op_jge( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
280 | const PertialSchedule *op_jae( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
281 | const PertialSchedule *op_jl( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
282 | const PertialSchedule *op_jb( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
283 | const PertialSchedule *op_jg( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
284 | const PertialSchedule *op_ja( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
285 | const PertialSchedule *op_jne( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
286 | const PertialSchedule *op_je( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
287 | const PertialSchedule *op_jmp( long offset, int op_size = sizeof(char), bool isPertialSchedule = false, bool isSelfOpcodeOffset = false );
|
---|
288 | void op_jmp_continue();
|
---|
289 | void op_jmp_exitsub();
|
---|
290 | void op_jmp_goto_schedule( const std::string &name, int lineNum, int sourceCodePos );
|
---|
291 |
|
---|
292 |
|
---|
293 | #ifdef _AMD64_
|
---|
294 | /////////////////////////////////////////////////////////////////
|
---|
295 | // 64ビット機械語生成
|
---|
296 | /////////////////////////////////////////////////////////////////
|
---|
297 | private:
|
---|
298 | void set_rex(int op_size,int reg,int index_reg,int base_reg);
|
---|
299 | const PertialSchedule *set_mod_rm_sib_disp(char mod,int reg,int scale,int index_reg,int base_reg,long disp, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
300 | const PertialSchedule *__op_format(int op_size,char op_prefix,char opcode1,char opcode2,int reg,int base_reg,long offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
301 | public:
|
---|
302 | void op_mov_RV (int op_size,int reg,long i32data, Schedule::Type scheduleType = Schedule::None );
|
---|
303 | void op_mov_RV64 (int reg,_int64 i64data);
|
---|
304 | const PertialSchedule *op_mov_RM (int op_size,int reg,int base_reg,long offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
305 | const PertialSchedule *op_mov_RM_ex (int op_size,int reg,int base_reg1,int base_reg2,long offset,BOOL bUseOffset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
306 | const PertialSchedule *op_mov_MR (int op_size,int reg,int base_reg,long offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
307 | const PertialSchedule *op_mov_MR_ex (int op_size,int reg,int base_reg1,int base_reg2,long offset,BOOL bUseOffset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
308 | const PertialSchedule *op_mov_MV (int op_size,int base_reg,int offset, Schedule::Type offsetScheduleType, bool isPertialSchedule, BOOL bUseOffset,long i32data);
|
---|
309 | void op_mov_RR (int reg1,int reg2);
|
---|
310 | void op_movsxd (int reg64,int reg32);
|
---|
311 | void op_movsx64_FromReg16 (int reg64,int reg16);
|
---|
312 | void op_movsx64_FromReg8 (int reg64,int reg8);
|
---|
313 | void op_movsx32_FromReg16 (int reg32,int reg16);
|
---|
314 | void op_movsx32_FromReg8 (int reg32,int reg8);
|
---|
315 | void op_movsx16_FromReg8 (int reg32,int reg8);
|
---|
316 | void op_cqo ();
|
---|
317 | void op_inc (int reg);
|
---|
318 | void op_dec (int reg);
|
---|
319 | const PertialSchedule *op_add_RM (int op_size,int reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
320 | const PertialSchedule *op_add_RV (int reg,long offset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
321 | void op_add_RR (int reg1,int reg2);
|
---|
322 | void op_add32_reg (int reg1,int reg2);
|
---|
323 | void op_sub_RV (int op_size,int reg,long i32data);
|
---|
324 | void op_sub64_reg (int reg1,int reg2);
|
---|
325 | void op_sub32_reg (int reg1,int reg2);
|
---|
326 | void op_sbb_RR ( int op_size, int reg1, int reg2 );
|
---|
327 | void op_imul_RR (int op_size,int reg1,int reg2);
|
---|
328 | void op_imul_RV (int op_size,int reg,long i32data);
|
---|
329 | void op_div64_reg (int reg);
|
---|
330 | void op_idiv64_reg (int reg);
|
---|
331 | void op_shl_reg (int op_size,int reg);
|
---|
332 | void op_sar_reg (int op_size,int reg);
|
---|
333 | void op_shr_reg (int op_size,int reg);
|
---|
334 | void op_and_reg (int op_size,int reg1,int reg2);
|
---|
335 | void op_and64_value (int reg,long offset);
|
---|
336 | void op_and32_value (int reg,long offset);
|
---|
337 | void op_or_reg (int op_size,int reg1,int reg2);
|
---|
338 | void op_xor_reg (int op_size,int reg1,int reg2);
|
---|
339 | void op_not_reg (int op_size,int reg);
|
---|
340 | void op_neg ( int reg );
|
---|
341 | void op_test (int reg1,int reg2);
|
---|
342 | void op_cmp_reg (int op_size,int reg1,int reg2);
|
---|
343 | void op_cmp_value (int op_size,int reg,char byte_data);
|
---|
344 | void op_setne (int reg);
|
---|
345 | const PertialSchedule *op_movlpd_MR (int xmm_reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
346 | const PertialSchedule *op_movlpd_RM (int xmm_reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
347 | void op_movsd_RR (int xmm_reg1,int xmm_reg2);
|
---|
348 | const PertialSchedule *op_movsd_MR (int xmm_reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
349 | void op_movss_RR (int xmm_reg1,int xmm_reg2);
|
---|
350 | const PertialSchedule *op_movss_RM (int xmm_reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
351 | const PertialSchedule *op_movss_MR (int xmm_reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
352 | void op_movd_RX (int reg,int xmm_reg);
|
---|
353 | void op_cvtsd2ss (int xmm_reg1,int xmm_reg2);
|
---|
354 | void op_cvtss2sd (int xmm_reg1,int xmm_reg2);
|
---|
355 | void op_cvttsd2si_xmm (int op_size,int reg,int xmm_reg);
|
---|
356 | void op_cvttss2si_xmm (int op_size,int reg,int xmm_reg);
|
---|
357 | void op_cvtsi2sd_reg (int op_size,int xmm_reg,int reg);
|
---|
358 | void op_cvtsi2ss_reg (int op_size,int xmm_reg,int reg);
|
---|
359 | void op_comisd (int xmm_reg1,int xmm_reg2);
|
---|
360 | void op_comiss (int xmm_reg1,int xmm_reg2);
|
---|
361 | void op_rep_movs (int op_size);
|
---|
362 | void op_add_rsp(long num);
|
---|
363 | const PertialSchedule *op_sub_rsp( long num, bool isPertialSchedule = false );
|
---|
364 | void op_fld_ptr_esp(int type);
|
---|
365 | void op_zero_reg(int reg);
|
---|
366 | void op_call( const UserProc *pUserProc );
|
---|
367 | void op_call( const DllProc *pDllProc );
|
---|
368 | void op_ret();
|
---|
369 | void op_addressof( int reg, const UserProc *pUserProc );
|
---|
370 |
|
---|
371 | #else
|
---|
372 | /////////////////////////////////////////////////////////////////
|
---|
373 | // 32ビット機械語生成
|
---|
374 | /////////////////////////////////////////////////////////////////
|
---|
375 | private:
|
---|
376 | const PertialSchedule *set_mod_rm_sib_disp(char mod,int reg,int scale,int index_reg,int base_reg,long disp, Schedule::Type scheduleType, bool isPertialSchedule );
|
---|
377 | void __op_format(char op_prefix,char opcode,int reg);
|
---|
378 | const PertialSchedule *__op_format(char op_prefix,char opcode1,char opcode2,int reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
379 | public:
|
---|
380 | const PertialSchedule *op_mov_MV ( int op_size, int base_reg, long offset, Schedule::Type offsetScheduleType, bool isPertialSchedule, long value, Schedule::Type valueScheduleType = Schedule::None );
|
---|
381 | void op_mov_RV ( int reg,long offset, Schedule::Type scheduleType = Schedule::None );
|
---|
382 | void op_mov_RR ( int reg1,int reg2);
|
---|
383 | const PertialSchedule *op_mov_RM ( int op_size,int reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
384 | const PertialSchedule *op_mov_RM_ex ( int op_size,int reg,int base_reg1,int base_reg2,long offset,BOOL bUseOffset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
385 | const PertialSchedule *op_mov_MR ( int op_size,int reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
386 | const PertialSchedule *op_mov_MR_ex ( int op_size,int reg,int base_reg1,int base_reg2,long offset,BOOL bUseOffset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
387 | void op_movsx_R32R16 ( int reg32,int reg16 = REG_NON);
|
---|
388 | void op_movsx_R32R8 ( int reg32,int reg8 = REG_NON);
|
---|
389 | void op_movsx_R16R8 ( int reg16,int reg8 = REG_NON);
|
---|
390 | const PertialSchedule *op_lea_RM ( int reg, int base_reg, long offset, char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
391 | void op_inc (int reg);
|
---|
392 | void op_dec (int reg);
|
---|
393 | void op_add_RV8 (int reg,char cValue);
|
---|
394 | const PertialSchedule *op_add_RV ( int reg, long offset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
395 | void op_add_RR ( int reg1, int reg2 );
|
---|
396 | const PertialSchedule *op_add_RM (int op_size,int reg,int base_reg,int offset,char mod, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
397 | void op_adc_RV8 (int reg,char cValue);
|
---|
398 | void op_adc_RR ( int reg1, int reg2 );
|
---|
399 | void op_sub_RV8 (int reg,char cValue);
|
---|
400 | void op_sub_RR ( int reg1, int reg2 );
|
---|
401 | void op_sbb_RV8 (int reg,char cValue);
|
---|
402 | void op_sbb_RR ( int reg1, int reg2 );
|
---|
403 | void op_imul_RR (int reg1,int reg2);
|
---|
404 | void op_imul_RV (int reg,long i32data);
|
---|
405 | void op_imul_RV8 (int reg,char cValue);
|
---|
406 | void op_div_R ( int reg );
|
---|
407 | void op_idiv_R ( int reg );
|
---|
408 | void op_and_RV (int reg,long value);
|
---|
409 | void op_and_RR ( int reg1, int reg2 );
|
---|
410 | void op_or_RR ( int op_size, int reg1, int reg2 );
|
---|
411 | void op_xor_RR ( int reg1, int reg2 = REG_NON );
|
---|
412 | void op_neg ( int reg );
|
---|
413 | void op_cdq ();
|
---|
414 |
|
---|
415 | void op_rep_movs (int op_size);
|
---|
416 |
|
---|
417 | void op_push(int reg);
|
---|
418 | void op_push_V( long data, Schedule::Type scheduleType = Schedule::None );
|
---|
419 | void op_push_M( int base_reg );
|
---|
420 | const PertialSchedule *op_push_M( int base_reg, long offset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
421 | void op_pop(int reg = REG_NON);
|
---|
422 | void op_add_esp(long num);
|
---|
423 | const PertialSchedule *op_sub_esp( long num, bool isPertialSchedule = false );
|
---|
424 | void op_cmp_RR( int reg1, int reg2 );
|
---|
425 | void op_cmp_value(int op_size,int reg,char byte_data);
|
---|
426 | void op_setne( int reg );
|
---|
427 | void op_test(int reg1,int reg2);
|
---|
428 | void op_test_ah( char cValue );
|
---|
429 | void op_fld_ptr_esp(int type);
|
---|
430 | void op_fld_basereg (int type,int base_reg);
|
---|
431 | const PertialSchedule *op_fld_base_offset (int type,int base_reg,long offset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
432 | const PertialSchedule *op_fld_base_offset_ex (int type,int base_reg1,int base_reg2,long offset,BOOL bUseOffset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
433 | void op_fstp_basereg (int type,int base_reg);
|
---|
434 | const PertialSchedule *op_fstp_base_offset (int type,int base_reg,long offset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
435 | const PertialSchedule *op_fstp_base_offset_ex (int type,int base_reg1,int base_reg2,long offset,BOOL bUseOffset, Schedule::Type scheduleType = Schedule::None, bool isPertialSchedule = false );
|
---|
436 | void op_fistp_ptr_esp ( int typeSize );
|
---|
437 | void op_fstp_push ( Type &type );
|
---|
438 | void op_fcompp();
|
---|
439 | void op_fnstsw_ax();
|
---|
440 | void op_zero_reg(int reg);
|
---|
441 | void fpu_cast();
|
---|
442 | void fpu_cast_end();
|
---|
443 |
|
---|
444 | void op_call_R( int reg );
|
---|
445 | void op_call(const UserProc *pUserProc);
|
---|
446 | void op_call(const DllProc *pDllProc);
|
---|
447 | void op_ret();
|
---|
448 | void op_ret( short stackFrameSize );
|
---|
449 | void op_addressof( int reg, const UserProc *pUserProc );
|
---|
450 | void op_mov_RV_vtbl( int reg, const CClass *pClass );
|
---|
451 | #endif
|
---|
452 |
|
---|
453 |
|
---|
454 |
|
---|
455 | void PutOld( long l, Schedule::Type scheduleType )
|
---|
456 | {
|
---|
457 | pNativeCode->Put( l, scheduleType );
|
---|
458 | }
|
---|
459 | const PertialSchedule *PutOld( long l, bool isPertialSchedule )
|
---|
460 | {
|
---|
461 | const PertialSchedule *pPertialSchedule;
|
---|
462 | if( isPertialSchedule )
|
---|
463 | {
|
---|
464 | pertialSchedules.push_back( new PertialSchedule( pNativeCode->GetSize(), sizeof(long) ) );
|
---|
465 | pPertialSchedule = pertialSchedules.back();
|
---|
466 | }
|
---|
467 | pNativeCode->Put( l, Schedule::None );
|
---|
468 | return pPertialSchedule;
|
---|
469 | }
|
---|
470 | void PutOld( const NativeCode &nativeCode )
|
---|
471 | {
|
---|
472 | pNativeCode->Put( nativeCode );
|
---|
473 | }
|
---|
474 | void PutOld( char c )
|
---|
475 | {
|
---|
476 | pNativeCode->Put( c );
|
---|
477 | }
|
---|
478 | void PutOld( char c1, char c2 )
|
---|
479 | {
|
---|
480 | pNativeCode->Put( c1 );
|
---|
481 | pNativeCode->Put( c2 );
|
---|
482 | }
|
---|
483 | void PutOld( char c1, char c2, char c3 )
|
---|
484 | {
|
---|
485 | pNativeCode->Put( c1 );
|
---|
486 | pNativeCode->Put( c2 );
|
---|
487 | pNativeCode->Put( c3 );
|
---|
488 | }
|
---|
489 | void PutOld( char c1, char c2, char c3, char c4 )
|
---|
490 | {
|
---|
491 | pNativeCode->Put( c1 );
|
---|
492 | pNativeCode->Put( c2 );
|
---|
493 | pNativeCode->Put( c3 );
|
---|
494 | pNativeCode->Put( c4 );
|
---|
495 | }
|
---|
496 | void PutOld( char c1, char c2, char c3, long l )
|
---|
497 | {
|
---|
498 | pNativeCode->Put( c1 );
|
---|
499 | pNativeCode->Put( c2 );
|
---|
500 | pNativeCode->Put( c3 );
|
---|
501 | pNativeCode->Put( l );
|
---|
502 | }
|
---|
503 | void PutOld( char c1, char c2, char c3, char c4, char c5 )
|
---|
504 | {
|
---|
505 | pNativeCode->Put( c1 );
|
---|
506 | pNativeCode->Put( c2 );
|
---|
507 | pNativeCode->Put( c3 );
|
---|
508 | pNativeCode->Put( c4 );
|
---|
509 | pNativeCode->Put( c5 );
|
---|
510 | }
|
---|
511 | void PutOld( char c1, char c2, char c3, char c4, char c5, char c6 )
|
---|
512 | {
|
---|
513 | pNativeCode->Put( c1 );
|
---|
514 | pNativeCode->Put( c2 );
|
---|
515 | pNativeCode->Put( c3 );
|
---|
516 | pNativeCode->Put( c4 );
|
---|
517 | pNativeCode->Put( c5 );
|
---|
518 | pNativeCode->Put( c6 );
|
---|
519 | }
|
---|
520 | };
|
---|