source: dev/trunk/abdev/BasicCompiler_Common/include/CodeGenerator.h@ 364

Last change on this file since 364 was 364, checked in by dai_9181, 16 years ago

Throw→Catch間のパラメータ引渡しに対応。
グローバル領域でのTryスコープを可能にした。これで例外処理機構実装完了。
エディタの補間機能にTry/Catch/Finally/EndTryを追加。

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