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