[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[183] | 3 | #include <jenga/include/smoothie/Smoothie.h>
|
---|
| 4 |
|
---|
| 5 | #include <Program.h>
|
---|
[193] | 6 | #include <Compiler.h>
|
---|
[248] | 7 | #include <LexicalScope.h>
|
---|
[206] | 8 | #include <Class.h>
|
---|
| 9 | #include <Variable.h>
|
---|
[195] | 10 | #include <NamespaceSupporter.h>
|
---|
[183] | 11 |
|
---|
[3] | 12 | #include "../BasicCompiler_Common/common.h"
|
---|
| 13 | #include "Opcode.h"
|
---|
| 14 |
|
---|
| 15 |
|
---|
[86] | 16 | void SystemProc( const UserProc &userProc ){
|
---|
| 17 | if( userProc.GetName() == "_System_GetEip" ){
|
---|
[3] | 18 | //mov eax,dword ptr[esp]
|
---|
[235] | 19 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_ESP, 0, MOD_BASE );
|
---|
[3] | 20 |
|
---|
| 21 | //ret
|
---|
[225] | 22 | compiler.codeGenerator.op_ret();
|
---|
[3] | 23 | }
|
---|
[86] | 24 | else if( userProc.GetName() == "_System_InitDllGlobalVariables" ){
|
---|
[3] | 25 | ////////////////////////////////////////
|
---|
| 26 | // DLLのグローバル領域をコンパイル
|
---|
| 27 | ////////////////////////////////////////
|
---|
| 28 |
|
---|
[266] | 29 | if( !compiler.IsDll() ){
|
---|
[3] | 30 | //ret
|
---|
[225] | 31 | compiler.codeGenerator.op_ret();
|
---|
[3] | 32 |
|
---|
| 33 | return;
|
---|
| 34 | }
|
---|
| 35 |
|
---|
[206] | 36 | const UserProc *pBackUserProc;
|
---|
[76] | 37 | pBackUserProc = &UserProc::CompilingUserProc();
|
---|
| 38 | UserProc::CompileStartForGlobalArea();
|
---|
[3] | 39 |
|
---|
| 40 | int BackCp;
|
---|
| 41 | BackCp=cp;
|
---|
| 42 | cp=-1;
|
---|
| 43 |
|
---|
| 44 | extern BOOL bDebugCompile;
|
---|
| 45 | if(bDebugCompile){
|
---|
| 46 | //デバッグ用の変数を定義
|
---|
| 47 | DebugVariable();
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | //GC用の変数を定義
|
---|
| 51 | InitGCVariables();
|
---|
| 52 |
|
---|
[129] | 53 | //_System_StartupProgramの呼び出し
|
---|
[206] | 54 | extern const UserProc *pSub_System_StartupProgram;
|
---|
[225] | 55 | compiler.codeGenerator.op_call(pSub_System_StartupProgram);
|
---|
[129] | 56 |
|
---|
[42] | 57 | //クラスに属する静的メンバを定義
|
---|
[265] | 58 | compiler.GetObjectModule().meta.GetClasses().InitStaticMember();
|
---|
[42] | 59 |
|
---|
[3] | 60 | GetGlobalDataForDll();
|
---|
| 61 |
|
---|
[76] | 62 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
[3] | 63 | cp=BackCp;
|
---|
| 64 |
|
---|
| 65 | //ret
|
---|
[225] | 66 | compiler.codeGenerator.op_ret();
|
---|
[3] | 67 | }
|
---|
[86] | 68 | else if( userProc.GetName() == "_System_InitStaticLocalVariables" ){
|
---|
[3] | 69 | //静的ローカルオブジェクトのコンストラクタ呼び出し
|
---|
| 70 |
|
---|
[265] | 71 | BOOST_FOREACH( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){
|
---|
[76] | 72 | if(memicmp(pVar->GetName().c_str(),"Static%",7)==0){
|
---|
[3] | 73 | //コンストラクタ呼び出し
|
---|
[206] | 74 | if( pVar->GetType().IsObject() ){
|
---|
[3] | 75 |
|
---|
| 76 | //エラー用
|
---|
[76] | 77 | cp=pVar->source_code_address;
|
---|
[3] | 78 |
|
---|
[50] | 79 | CallConstructor(
|
---|
[76] | 80 | pVar->GetName().c_str(),
|
---|
[206] | 81 | pVar->GetSubscripts(),
|
---|
| 82 | pVar->GetType(),
|
---|
| 83 | pVar->GetParamStrForConstructor().c_str());
|
---|
[3] | 84 | }
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | //ret
|
---|
[225] | 89 | compiler.codeGenerator.op_ret();
|
---|
[3] | 90 | }
|
---|
[86] | 91 | else if( userProc.GetName() == "_System_Call_Destructor_of_GlobalObject" ){
|
---|
[3] | 92 |
|
---|
[206] | 93 | const UserProc *pBackUserProc;
|
---|
[76] | 94 | pBackUserProc = &UserProc::CompilingUserProc();
|
---|
| 95 | UserProc::CompileStartForGlobalArea();
|
---|
[3] | 96 |
|
---|
[248] | 97 | compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
|
---|
[3] | 98 |
|
---|
[76] | 99 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
[3] | 100 |
|
---|
| 101 |
|
---|
| 102 | //ret
|
---|
[225] | 103 | compiler.codeGenerator.op_ret();
|
---|
[3] | 104 | }
|
---|
[86] | 105 | else if( userProc.GetName() == "_allrem" ){
|
---|
[3] | 106 | //乗除演算用の特殊関数(64ビット整数対応)
|
---|
| 107 | BYTE Buffer_allrem[]={
|
---|
| 108 | 0x53,0x57,0x33,0xFF,0x8B,0x44,0x24,0x10,0x0B,0xC0,0x7D,0x14,0x47,0x8B,0x54,0x24,0x0C,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x10,0x89,0x54,0x24,0x0C,0x8B,0x44,0x24,0x18,0x0B,0xC0,0x7D,0x13,0x8B,0x54,0x24,0x14,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x18,0x89,0x54,0x24,0x14,0x0B,0xC0,0x75,0x1B,0x8B,0x4C,0x24,0x14,0x8B,0x44,0x24,0x10,0x33,0xD2,0xF7,0xF1,0x8B,0x44,0x24,0x0C,0xF7,0xF1,0x8B,0xC2,0x33,0xD2,0x4F,0x79,0x4E,0xEB,0x53,0x8B,0xD8,0x8B,0x4C,0x24,0x14,0x8B,0x54,0x24,0x10,0x8B,0x44,0x24,0x0C,0xD1,0xEB,0xD1,0xD9,0xD1,0xEA,0xD1,0xD8,0x0B,0xDB,0x75,0xF4,0xF7,0xF1,0x8B,0xC8,0xF7,0x64,0x24,0x18,0x91,0xF7,0x64,0x24,0x14,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x10,0x77,0x08,0x72,0x0E,0x3B,0x44,0x24,0x0C,0x76,0x08,0x2B,0x44,0x24,0x14,0x1B,0x54,0x24,0x18,0x2B,0x44,0x24,0x0C,0x1B,0x54,0x24,0x10,0x4F,0x79,0x07,0xF7,0xDA,0xF7,0xD8,0x83,0xDA,0x00,0x5F,0x5B,0xC2,0x10,0x00
|
---|
| 109 | };
|
---|
| 110 |
|
---|
[276] | 111 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allrem, 178 ) );
|
---|
[3] | 112 | }
|
---|
[86] | 113 | else if( userProc.GetName() == "_aullrem" ){
|
---|
[3] | 114 | //乗除演算用の特殊関数(64ビット整数対応)
|
---|
| 115 | BYTE Buffer_aullrem[]={
|
---|
| 116 | 0x53,0x8B,0x44,0x24,0x14,0x0B,0xC0,0x75,0x18,0x8B,0x4C,0x24,0x10,0x8B,
|
---|
| 117 | 0x44,0x24,0x0C,0x33,0xD2,0xF7,0xF1,0x8B,0x44,0x24,0x08,0xF7,0xF1,0x8B,
|
---|
| 118 | 0xC2,0x33,0xD2,0xEB,0x50,0x8B,0xC8,0x8B,0x5C,0x24,0x10,0x8B,0x54,0x24,
|
---|
| 119 | 0x0C,0x8B,0x44,0x24,0x08,0xD1,0xE9,0xD1,0xDB,0xD1,0xEA,0xD1,0xD8,0x0B,
|
---|
| 120 | 0xC9,0x75,0xF4,0xF7,0xF3,0x8B,0xC8,0xF7,0x64,0x24,0x14,0x91,0xF7,0x64,
|
---|
| 121 | 0x24,0x10,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x0C,0x77,0x08,0x72,0x0E,
|
---|
| 122 | 0x3B,0x44,0x24,0x08,0x76,0x08,0x2B,0x44,0x24,0x10,0x1B,0x54,0x24,0x14,
|
---|
| 123 | 0x2B,0x44,0x24,0x08,0x1B,0x54,0x24,0x0C,0xF7,0xDA,0xF7,0xD8,0x83,0xDA,
|
---|
| 124 | 0x00,0x5B,0xC2,0x10,0x00
|
---|
| 125 | };
|
---|
| 126 |
|
---|
[276] | 127 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_aullrem, 117 ) );
|
---|
[3] | 128 | }
|
---|
[86] | 129 | else if( userProc.GetName() == "_allmul" ){
|
---|
[3] | 130 | //乗算用の特殊関数(64ビット整数対応)
|
---|
| 131 | BYTE Buffer_allmul[]={
|
---|
| 132 | 0x8B,0x44,0x24,0x08,0x8B,0x4C,0x24,0x10,0x0B,0xC8,0x8B,0x4C,0x24,0x0C,0x75,0x09,0x8B,0x44,0x24,0x04,0xF7,0xE1,0xC2,0x10,0x00,0x53,0xF7,0xE1,0x8B,0xD8,0x8B,0x44,0x24,0x08,0xF7,0x64,0x24,0x14,0x03,0xD8,0x8B,0x44,0x24,0x08,0xF7,0xE1,0x03,0xD3,0x5B,0xC2,0x10,0x00
|
---|
| 133 | };
|
---|
| 134 |
|
---|
[276] | 135 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allmul, 52 ) );
|
---|
[3] | 136 | }
|
---|
[86] | 137 | else if( userProc.GetName() == "_alldiv" ){
|
---|
[3] | 138 | //除算用の特殊関数(64ビット整数対応)
|
---|
| 139 | BYTE Buffer_alldiv[]={
|
---|
| 140 | 0x57,0x56,0x53,0x33,0xFF,0x8B,0x44,0x24,0x14,0x0B,0xC0,0x7D,0x14,0x47,0x8B,0x54,0x24,0x10,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x14,0x89,0x54,0x24,0x10,0x8B,0x44,0x24,0x1C,0x0B,0xC0,0x7D,0x14,0x47,0x8B,0x54,0x24,0x18,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x1C,0x89,0x54,0x24,0x18,0x0B,0xC0,0x75,0x18,0x8B,0x4C,0x24,0x18,0x8B,0x44,0x24,0x14,0x33,0xD2,0xF7,0xF1,0x8B,0xD8,0x8B,0x44,0x24,0x10,0xF7,0xF1,0x8B,0xD3,0xEB,0x41,0x8B,0xD8,0x8B,0x4C,0x24,0x18,0x8B,0x54,0x24,0x14,0x8B,0x44,0x24,0x10,0xD1,0xEB,0xD1,0xD9,0xD1,0xEA,0xD1,0xD8,0x0B,0xDB,0x75,0xF4,0xF7,0xF1,0x8B,0xF0,0xF7,0x64,0x24,0x1C,0x8B,0xC8,0x8B,0x44,0x24,0x18,0xF7,0xE6,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x14,0x77,0x08,0x72,0x07,0x3B,0x44,0x24,0x10,0x76,0x01,0x4E,0x33,0xD2,0x8B,0xC6,0x4F,0x75,0x07,0xF7,0xDA,0xF7,0xD8,0x83,0xDA,0x00,0x5B,0x5E,0x5F,0xC2,0x10,0x00
|
---|
| 141 | };
|
---|
| 142 |
|
---|
[276] | 143 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_alldiv, 170 ) );
|
---|
[3] | 144 | }
|
---|
[86] | 145 | else if( userProc.GetName() == "_aulldiv" ){
|
---|
[3] | 146 | //整数除算用の特殊関数(64ビット整数対応)
|
---|
| 147 | BYTE Buffer_aulldiv[]={
|
---|
| 148 | 0x53,0x56,0x8B,0x44,0x24,0x18,0x0B,0xC0,0x75,0x18,0x8B,0x4C,0x24,0x14,
|
---|
| 149 | 0x8B,0x44,0x24,0x10,0x33,0xD2,0xF7,0xF1,0x8B,0xD8,0x8B,0x44,0x24,0x0C,
|
---|
| 150 | 0xF7,0xF1,0x8B,0xD3,0xEB,0x41,0x8B,0xC8,0x8B,0x5C,0x24,0x14,0x8B,0x54,
|
---|
| 151 | 0x24,0x10,0x8B,0x44,0x24,0x0C,0xD1,0xE9,0xD1,0xDB,0xD1,0xEA,0xD1,0xD8,
|
---|
| 152 | 0x0B,0xC9,0x75,0xF4,0xF7,0xF3,0x8B,0xF0,0xF7,0x64,0x24,0x18,0x8B,0xC8,
|
---|
| 153 | 0x8B,0x44,0x24,0x14,0xF7,0xE6,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x10,
|
---|
| 154 | 0x77,0x08,0x72,0x07,0x3B,0x44,0x24,0x0C,0x76,0x01,0x4E,0x33,0xD2,0x8B,
|
---|
| 155 | 0xC6,0x5E,0x5B,0xC2,0x10,0x00
|
---|
| 156 | };
|
---|
| 157 |
|
---|
[276] | 158 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_aulldiv, 104 ) );
|
---|
[3] | 159 | }
|
---|
[86] | 160 | else if( userProc.GetName() == "_allshl" ){
|
---|
[3] | 161 | //符号あり左ビットシフト用の特殊関数(64ビット整数対応)
|
---|
| 162 | BYTE Buffer_allshl[]={
|
---|
| 163 | 0x80,0xF9,0x40,0x73,0x15,0x80,0xF9,0x20,0x73,0x06,0x0F,0xA5,0xC2,0xD3,0xE0,0xC3,0x8B,0xD0,0x33,0xC0,0x80,0xE1,0x1F,0xD3,0xE2,0xC3,0x33,0xC0,0x33,0xD2,0xC3
|
---|
| 164 | };
|
---|
| 165 |
|
---|
[276] | 166 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allshl, 31 ) );
|
---|
[3] | 167 | }
|
---|
[86] | 168 | else if( userProc.GetName() == "_allshr" ){
|
---|
[3] | 169 | //符号あり右ビットシフト用の特殊関数(64ビット整数対応)
|
---|
| 170 | BYTE Buffer_allshr[]={
|
---|
| 171 | 0x80,0xF9,0x40,0x73,0x16,0x80,0xF9,0x20,0x73,0x06,0x0F,0xAD,0xD0,0xD3,0xFA,0xC3,0x8B,0xC2,0xC1,0xFA,0x1F,0x80,0xE1,0x1F,0xD3,0xF8,0xC3,0xC1,0xFA,0x1F,0x8B,0xC2,0xC3
|
---|
| 172 | };
|
---|
| 173 |
|
---|
[276] | 174 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allshr, 33 ) );
|
---|
[3] | 175 | }
|
---|
[86] | 176 | else if( userProc.GetName() == "_aullshr" ){
|
---|
[3] | 177 | //符号なし右ビットシフト用の特殊関数(64ビット整数対応)
|
---|
| 178 | BYTE Buffer_aullshr[]={
|
---|
| 179 | 0x80,0xF9,0x40, //cmp cl,40h
|
---|
| 180 | 0x73,0x15, //jae RETZERO (0040d71a)
|
---|
| 181 | 0x80,0xF9,0x20, //cmp cl,20h
|
---|
| 182 | 0x73,0x06, //jae MORE32 (0040d710)
|
---|
| 183 | 0x0F,0xAD,0xD0, //shrd eax,edx,cl
|
---|
| 184 | 0xD3,0xEA, //shr edx,cl
|
---|
| 185 | 0xC3, //ret
|
---|
| 186 | //MORE32:
|
---|
| 187 | 0x8B,0xC2, //mov eax,edx
|
---|
| 188 | 0x33,0xD2, //xor edx,edx
|
---|
| 189 | 0x80,0xE1,0x1F, //and cl,1Fh
|
---|
| 190 | 0xD3,0xE8, //shr eax,cl
|
---|
| 191 | 0xC3, //ret
|
---|
| 192 | //RETZERO:
|
---|
| 193 | 0x33,0xC0, //xor eax,eax
|
---|
| 194 | 0x33,0xD2, //xor edx,edx
|
---|
| 195 | 0xC3 //ret
|
---|
| 196 | };
|
---|
| 197 |
|
---|
[276] | 198 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_aullshr, 31 ) );
|
---|
[3] | 199 | }
|
---|
[90] | 200 | else{
|
---|
| 201 | SetError();
|
---|
| 202 | }
|
---|
| 203 | }
|
---|
[206] | 204 | void AutoGeneration( const UserProc &userProc){
|
---|
[90] | 205 | if( userProc.GetName() == "InitializeUserTypes"
|
---|
[89] | 206 | && userProc.HasParentClass()
|
---|
[131] | 207 | && userProc.GetParentClass().GetName() == "_System_TypeBase" ){
|
---|
[89] | 208 |
|
---|
[265] | 209 | compiler.GetObjectModule().meta.GetClasses().Compile_System_InitializeUserTypes();
|
---|
[86] | 210 | }
|
---|
[355] | 211 | else if( userProc.GetName() == "InitializeUserTypesForBaseType"
|
---|
| 212 | && userProc.HasParentClass()
|
---|
| 213 | && userProc.GetParentClass().GetName() == "_System_TypeBase" )
|
---|
| 214 | {
|
---|
| 215 | compiler.GetObjectModule().meta.GetClasses().Compile_System_InitializeUserTypesForBaseType();
|
---|
| 216 | }
|
---|
[95] | 217 | else if( userProc.GetName() == "RegisterGlobalRoots"
|
---|
| 218 | && userProc.HasParentClass()
|
---|
[131] | 219 | && userProc.GetParentClass().GetName() == "_System_CGarbageCollection" ){
|
---|
[95] | 220 |
|
---|
| 221 | Compile_AddGlobalRootsForGc();
|
---|
| 222 | }
|
---|
[308] | 223 | else if( userProc.GetName() == compiler.globalAreaProcName ){
|
---|
| 224 | ////////////////////////////////////////
|
---|
| 225 | // グローバル領域をコンパイル
|
---|
| 226 | ////////////////////////////////////////
|
---|
| 227 |
|
---|
[365] | 228 | UserProc::pGlobalProc = &userProc;
|
---|
| 229 |
|
---|
[308] | 230 | const UserProc *pBackUserProc = &UserProc::CompilingUserProc();
|
---|
| 231 | UserProc::CompileStartForGlobalArea();
|
---|
| 232 |
|
---|
| 233 | int BackCp = cp;
|
---|
| 234 | cp=-1;
|
---|
| 235 |
|
---|
| 236 | //クラスに属する静的メンバを定義
|
---|
| 237 | compiler.GetObjectModule().meta.GetClasses().InitStaticMember();
|
---|
| 238 |
|
---|
| 239 | //グローバル実行領域をコンパイル開始
|
---|
| 240 | CompileBuffer(0,0);
|
---|
| 241 |
|
---|
| 242 | //Goto未知ラベルスケジュールが存在したらエラーにする
|
---|
| 243 | BOOST_FOREACH( const GotoLabelSchedule *pGotoLabelSchedule, compiler.codeGenerator.gotoLabelSchedules )
|
---|
| 244 | {
|
---|
| 245 | if(pGotoLabelSchedule->GetName().size()>0){
|
---|
| 246 | SetError(6,pGotoLabelSchedule->GetName(),pGotoLabelSchedule->GetSourceCodePos());
|
---|
| 247 | }
|
---|
| 248 | else{
|
---|
| 249 | char temporary[255];
|
---|
| 250 | sprintf(temporary,"%d",pGotoLabelSchedule->GetLineNum());
|
---|
| 251 | SetError(6,temporary,pGotoLabelSchedule->GetSourceCodePos());
|
---|
| 252 | }
|
---|
| 253 | }
|
---|
| 254 |
|
---|
| 255 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
| 256 | cp=BackCp;
|
---|
| 257 | }
|
---|
[350] | 258 | else if( userProc.HasParentClass()
|
---|
| 259 | && userProc.IsCastOperator()
|
---|
| 260 | && userProc.ReturnType().IsInterface() )
|
---|
| 261 | {
|
---|
| 262 | // インターフェイス型にキャストするためのメソッド
|
---|
| 263 |
|
---|
| 264 | int vtblMasterListIndex = userProc.GetParentClass().GetVtblMasterListIndex( &userProc.ReturnType().GetClass() );
|
---|
| 265 |
|
---|
| 266 | char temporary[1024];
|
---|
| 267 | sprintf( temporary,
|
---|
[370] | 268 | "Return New %s(ObjPtr( This ),Get_LONG_PTR( (Get_LONG_PTR( ObjPtr(This)+SizeOf(VoidPtr) ) + SizeOf(LONG_PTR)*%d) As VoidPtr ) As VoidPtr )",
|
---|
[350] | 269 | userProc.ReturnType().GetClass().GetName().c_str(),
|
---|
| 270 | vtblMasterListIndex
|
---|
| 271 | );
|
---|
| 272 | MakeMiddleCode( temporary );
|
---|
| 273 |
|
---|
| 274 | ChangeOpcode( temporary );
|
---|
| 275 | }
|
---|
[78] | 276 | else{
|
---|
| 277 | SetError();
|
---|
| 278 | }
|
---|
[3] | 279 | }
|
---|
| 280 |
|
---|
[316] | 281 | void _compile_proc(const UserProc *pUserProc)
|
---|
| 282 | {
|
---|
[3] | 283 | extern char *basbuf;
|
---|
| 284 | extern HANDLE hHeap;
|
---|
| 285 | extern BOOL bDebugCompile;
|
---|
[253] | 286 | int i3,i4,BaseOffset;
|
---|
[3] | 287 | char temporary[VN_SIZE];
|
---|
| 288 |
|
---|
[206] | 289 | if( pUserProc->GetLocalVars().size() ){
|
---|
[76] | 290 | SetError();
|
---|
| 291 | return;
|
---|
| 292 | }
|
---|
| 293 |
|
---|
[206] | 294 | trace_for_sourcecodestep( "★★★ " << pUserProc->GetFullName() << "のコンパイルを開始" );
|
---|
| 295 |
|
---|
[75] | 296 | pUserProc->CompleteCompile();
|
---|
[3] | 297 |
|
---|
| 298 | extern BOOL bSystemProc;
|
---|
[75] | 299 | if(memcmp(pUserProc->GetName().c_str(),"_System_",8)==0) bSystemProc=1;
|
---|
[3] | 300 | else bSystemProc=0;
|
---|
| 301 |
|
---|
| 302 | extern BOOL bDebugSupportProc;
|
---|
[75] | 303 | if(memcmp(pUserProc->GetName().c_str(),"_DebugSys_",10)==0){
|
---|
[3] | 304 | if(!bDebugCompile){
|
---|
| 305 | return;
|
---|
| 306 | }
|
---|
| 307 | bDebugSupportProc=1;
|
---|
| 308 | }
|
---|
| 309 | else bDebugSupportProc=0;
|
---|
| 310 |
|
---|
[278] | 311 | if( pUserProc->GetCodeSize() != 0 || pUserProc->GetNativeCode().GetSize() != 0 )
|
---|
[276] | 312 | {
|
---|
| 313 | // 既にコード生成が行われている場合はエラー
|
---|
| 314 | SetError();
|
---|
| 315 | }
|
---|
[3] | 316 |
|
---|
[89] | 317 | //コンパイル中の関数が属するクラス
|
---|
[290] | 318 | compiler.pCompilingClass = pUserProc->GetParentClassPtr();
|
---|
[89] | 319 |
|
---|
| 320 | //コンパイルスタートをクラス管理クラスに追加
|
---|
[265] | 321 | compiler.GetObjectModule().meta.GetClasses().StartCompile( pUserProc );
|
---|
[89] | 322 |
|
---|
| 323 | //コンパイル中の関数
|
---|
| 324 | UserProc::CompileStartForUserProc( pUserProc );
|
---|
| 325 |
|
---|
[101] | 326 | // コンパイル中の関数が属する名前空間
|
---|
[199] | 327 | compiler.GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
|
---|
[101] | 328 |
|
---|
[108] | 329 | // コンパイル中の関数でImportsされている名前空間
|
---|
[199] | 330 | compiler.GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
|
---|
[108] | 331 |
|
---|
[225] | 332 | // コード生成対象を選択
|
---|
| 333 | compiler.codeGenerator.Select( (const_cast<UserProc *>(pUserProc))->GetNativeCode() );
|
---|
| 334 |
|
---|
[75] | 335 | if(pUserProc->IsSystem()){
|
---|
[89] | 336 | ////////////////////
|
---|
| 337 | // 特殊関数
|
---|
| 338 | ////////////////////
|
---|
| 339 |
|
---|
[3] | 340 | extern int AllLocalVarSize;
|
---|
| 341 | AllLocalVarSize=0;
|
---|
| 342 |
|
---|
[86] | 343 | SystemProc(*pUserProc);
|
---|
[3] | 344 | return;
|
---|
| 345 | }
|
---|
| 346 |
|
---|
[285] | 347 | if( !pUserProc->IsAutoGeneration() )
|
---|
| 348 | {
|
---|
| 349 | cp=pUserProc->GetCodePos();
|
---|
| 350 | for(;;cp++){
|
---|
| 351 | if(IsCommandDelimitation(basbuf[cp])) break;
|
---|
| 352 | }
|
---|
| 353 | cp--;
|
---|
[3] | 354 | }
|
---|
| 355 |
|
---|
| 356 | //ローカル変数に関する情報
|
---|
| 357 | extern int AllLocalVarSize;
|
---|
| 358 | AllLocalVarSize=0;
|
---|
| 359 |
|
---|
| 360 | //パラメータ用の変数データを考慮
|
---|
[75] | 361 | for(i3=(int)pUserProc->RealParams().size()-1;i3>=0;i3--){
|
---|
| 362 | Parameter ¶m = *pUserProc->RealParams()[i3];
|
---|
[73] | 363 |
|
---|
[275] | 364 | Variable *pVar = new Variable( param.GetVarName(), param, false, param.IsRef(), "", false );
|
---|
[3] | 365 |
|
---|
[76] | 366 | if( param.IsArray() ){
|
---|
[206] | 367 | pVar->SetArray( param.GetSubscripts() );
|
---|
[3] | 368 | }
|
---|
| 369 |
|
---|
[76] | 370 | int varSize;
|
---|
[73] | 371 | if( param.IsRef() == false && param.IsStruct() ){
|
---|
[64] | 372 | //構造体のByValパラメータ
|
---|
[76] | 373 | pVar->ThisIsParameter();
|
---|
| 374 | varSize=PTR_SIZE;
|
---|
[3] | 375 | }
|
---|
| 376 | else{
|
---|
[76] | 377 | if( param.IsArray() == false ){
|
---|
| 378 | varSize = pVar->GetMemorySize();
|
---|
[3] | 379 | }
|
---|
| 380 | else{
|
---|
[76] | 381 | varSize=PTR_SIZE;
|
---|
[3] | 382 | }
|
---|
| 383 | }
|
---|
[76] | 384 | AllLocalVarSize+=varSize;
|
---|
[206] | 385 | pVar->SetOffsetAddress( AllLocalVarSize );
|
---|
[3] | 386 |
|
---|
| 387 | //レキシカルスコープ情報
|
---|
[248] | 388 | pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
|
---|
| 389 | pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
|
---|
[392] | 390 | pVar->isLiving = true;
|
---|
[3] | 391 |
|
---|
[206] | 392 | pUserProc->GetLocalVars().push_back( pVar );
|
---|
[3] | 393 | }
|
---|
| 394 |
|
---|
| 395 | //Thisポインタを示すローカルオフセット値をセット
|
---|
| 396 | extern int LocalVar_ThisPtrOffset;
|
---|
| 397 | LocalVar_ThisPtrOffset=AllLocalVarSize;
|
---|
| 398 |
|
---|
| 399 | BaseOffset=AllLocalVarSize;
|
---|
| 400 |
|
---|
| 401 | //ret用のアドレスを考慮
|
---|
| 402 | AllLocalVarSize+=sizeof(long);
|
---|
| 403 |
|
---|
| 404 |
|
---|
| 405 | ///////////////////////
|
---|
| 406 | // ここからコード生成
|
---|
| 407 |
|
---|
| 408 | //sub esp,AllLocalVarSize(スケジュール)
|
---|
[253] | 409 | const PertialSchedule *pAllLocalVarPertialSchedule = compiler.codeGenerator.op_sub_esp( 0, true );
|
---|
[3] | 410 |
|
---|
| 411 | //push ebp
|
---|
[225] | 412 | compiler.codeGenerator.op_push(REG_EBP);
|
---|
[3] | 413 |
|
---|
| 414 | //mov ebp,esp
|
---|
[235] | 415 | compiler.codeGenerator.op_mov_RR( REG_EBP, REG_ESP );
|
---|
[3] | 416 |
|
---|
| 417 | //push ebx
|
---|
[225] | 418 | compiler.codeGenerator.op_push(REG_EBX);
|
---|
[3] | 419 |
|
---|
| 420 | //push esi
|
---|
[235] | 421 | compiler.codeGenerator.op_push( REG_ESI );
|
---|
[3] | 422 |
|
---|
| 423 | //push edi
|
---|
[235] | 424 | compiler.codeGenerator.op_push( REG_EDI );
|
---|
[3] | 425 |
|
---|
[75] | 426 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
[3] | 427 | //戻り値が存在するとき
|
---|
| 428 |
|
---|
[75] | 429 | const char *temp = pUserProc->GetName().c_str();
|
---|
| 430 | if( temp[0]==1&&temp[1]==ESC_OPERATOR ){
|
---|
| 431 | temp = "_System_ReturnValue";
|
---|
| 432 | }
|
---|
[3] | 433 |
|
---|
[75] | 434 | if( pUserProc->ReturnType().IsStruct() ){
|
---|
[64] | 435 | //戻り値用の構造体(値型)はパラメータで引き渡される
|
---|
[3] | 436 | }
|
---|
| 437 | else{
|
---|
[89] | 438 | if( pUserProc->ReturnType().IsObject() ){
|
---|
[299] | 439 | sprintf(temporary,"%s=Nothing%c%c%s",temp,1,ESC_AS, compiler.TypeToString( pUserProc->ReturnType() ).c_str() );
|
---|
[89] | 440 | }
|
---|
| 441 | else{
|
---|
| 442 | //戻り値用の変数の定義
|
---|
[299] | 443 | sprintf(temporary,"%s%c%c%s",temp,1,ESC_AS, compiler.TypeToString( pUserProc->ReturnType() ).c_str() );
|
---|
[89] | 444 | }
|
---|
[40] | 445 |
|
---|
[3] | 446 | OpcodeDim(temporary,0);
|
---|
| 447 | }
|
---|
| 448 | }
|
---|
| 449 |
|
---|
| 450 | //プロシージャ抜け出しスケジュール(Exit Sub/Function)
|
---|
[247] | 451 | compiler.codeGenerator.exitSubCodePositions.clear();
|
---|
[3] | 452 |
|
---|
[260] | 453 | //ラベル管理オブジェクトを初期化
|
---|
[261] | 454 | compiler.codeGenerator.gotoLabels.clear();
|
---|
[3] | 455 |
|
---|
| 456 | //Gotoラベルスケジュール
|
---|
[246] | 457 | compiler.codeGenerator.gotoLabelSchedules.clear();
|
---|
[3] | 458 |
|
---|
| 459 | //With情報のメモリを確保
|
---|
| 460 | extern WITHINFO WithInfo;
|
---|
| 461 | WithInfo.ppName=(char **)HeapAlloc(hHeap,0,1);
|
---|
| 462 | WithInfo.pWithCp=(int *)HeapAlloc(hHeap,0,1);
|
---|
| 463 | WithInfo.num=0;
|
---|
| 464 |
|
---|
| 465 | //重複エラー情報管理のメモリを確保
|
---|
| 466 | extern char **SynonymErrorWords;
|
---|
| 467 | extern int SynonymErrorNum;
|
---|
| 468 | SynonymErrorNum=0;
|
---|
| 469 | SynonymErrorWords=(char **)HeapAlloc(hHeap,0,1);
|
---|
| 470 |
|
---|
| 471 | //Continueアドレスを初期化
|
---|
[241] | 472 | compiler.codeGenerator.ClearContinueArea();
|
---|
[3] | 473 |
|
---|
[308] | 474 | //レキシカルスコープ情報を初期化
|
---|
| 475 | compiler.codeGenerator.lexicalScopes.Init( compiler.codeGenerator.GetNativeCodeSize() );
|
---|
| 476 |
|
---|
[251] | 477 | const PertialSchedule *pEspOffsetPertialSchedule = NULL;
|
---|
[3] | 478 | if(bDebugCompile&&bDebugSupportProc==0){
|
---|
| 479 | //push dword ptr[ebp+(AllLocalVarSize-BaseOffset)](スケジュール)
|
---|
[251] | 480 | pEspOffsetPertialSchedule = compiler.codeGenerator.op_push_M( REG_EBP, 0, Schedule::None, true );
|
---|
[3] | 481 |
|
---|
| 482 | //push dword ptr[ebp](以前のebp)
|
---|
[235] | 483 | compiler.codeGenerator.op_push_M( REG_EBP );
|
---|
[3] | 484 |
|
---|
| 485 | //call _DebugSys_StartProc
|
---|
[206] | 486 | extern const UserProc *pSub_DebugSys_StartProc;
|
---|
[225] | 487 | compiler.codeGenerator.op_call(pSub_DebugSys_StartProc);
|
---|
[3] | 488 | }
|
---|
| 489 |
|
---|
[206] | 490 | if(compiler.pCompilingClass){
|
---|
| 491 | if( pUserProc->GetName() == compiler.pCompilingClass->GetName() ){
|
---|
[3] | 492 | ////////////////////////////////////
|
---|
| 493 | // コンストラクタをコンパイルするとき
|
---|
| 494 | ////////////////////////////////////
|
---|
| 495 |
|
---|
[17] | 496 | //コンストラクタのコンパイル開始を通知
|
---|
[206] | 497 | compiler.pCompilingClass->NotifyStartConstructorCompile();
|
---|
[17] | 498 |
|
---|
[27] | 499 | //基底クラスかどうかの識別
|
---|
| 500 | //(継承元がインターフェイスの場合も基底クラスと見なす)
|
---|
[3] | 501 | BOOL bThisIsSuperClass;
|
---|
[206] | 502 | if( !compiler.pCompilingClass->HasSuperClass() ) bThisIsSuperClass=1;
|
---|
| 503 | else if( compiler.pCompilingClass->GetSuperClass().GetConstructorMethod() == NULL ){
|
---|
[3] | 504 | //インターフェイスを継承したときはコンストラクタを持たない
|
---|
| 505 | bThisIsSuperClass=1;
|
---|
| 506 | }
|
---|
| 507 | else bThisIsSuperClass=0;
|
---|
| 508 |
|
---|
| 509 | if(!bThisIsSuperClass){
|
---|
| 510 | /* サブクラスコンストラクタをコンパイルしているときは、
|
---|
[27] | 511 | 基底クラスのコンストラクタを呼び出す */
|
---|
[3] | 512 |
|
---|
| 513 | i3=cp+1;
|
---|
| 514 | while(IsCommandDelimitation(basbuf[i3])) i3++;
|
---|
| 515 | for(i4=0;;i3++,i4++){
|
---|
| 516 | if(!IsVariableChar(basbuf[i3])){
|
---|
| 517 | temporary[i4]=0;
|
---|
| 518 | break;
|
---|
| 519 | }
|
---|
| 520 | temporary[i4]=basbuf[i3];
|
---|
| 521 | }
|
---|
[206] | 522 | if( compiler.pCompilingClass->GetSuperClass().GetName() == temporary ){
|
---|
[27] | 523 | //基底クラスのコンストラクタを呼び出す
|
---|
[3] | 524 | cp=i3;
|
---|
| 525 | for(i4=0;;cp++,i4++){
|
---|
| 526 | if(IsCommandDelimitation(basbuf[cp])){
|
---|
| 527 | temporary[i4]=0;
|
---|
| 528 | break;
|
---|
| 529 | }
|
---|
| 530 | temporary[i4]=basbuf[cp];
|
---|
| 531 | }
|
---|
| 532 | if(!(temporary[0]=='('&&temporary[lstrlen(temporary)-1]==')')){
|
---|
| 533 | SetError(1,NULL,cp);
|
---|
| 534 | }
|
---|
| 535 | RemoveStringPare(temporary);
|
---|
| 536 |
|
---|
[89] | 537 | Type dummyType;
|
---|
| 538 | CallProc( PROC_DEFAULT
|
---|
[206] | 539 | , &compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc()
|
---|
| 540 | , compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc().GetName().c_str()
|
---|
[89] | 541 | , temporary
|
---|
[331] | 542 | , Type() // baseTypeはなし
|
---|
| 543 | , dummyType
|
---|
| 544 | );
|
---|
[3] | 545 | }
|
---|
| 546 | else{
|
---|
[27] | 547 | //基底クラスのコンストラクタを暗黙的に呼び出す
|
---|
[3] | 548 | Opcode_CallProc("",
|
---|
[206] | 549 | &compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc(),
|
---|
[3] | 550 | 0,
|
---|
[290] | 551 | ""
|
---|
| 552 | );
|
---|
[3] | 553 | }
|
---|
| 554 | }
|
---|
| 555 | }
|
---|
[75] | 556 | else if( pUserProc->IsDestructor() ){
|
---|
[18] | 557 | //デストラクタをコンパイルしたとき
|
---|
| 558 |
|
---|
| 559 | //デストラクタのコンパイル開始を通知
|
---|
[206] | 560 | compiler.pCompilingClass->NotifyStartDestructorCompile();
|
---|
[18] | 561 | }
|
---|
[3] | 562 | }
|
---|
| 563 |
|
---|
| 564 | //////////////////////////////////////////
|
---|
| 565 | //////////////////////////////////////////
|
---|
| 566 | ////// プロシージャ内をコンパイル ////////
|
---|
[90] | 567 | if( pUserProc->IsAutoGeneration() ){
|
---|
| 568 | AutoGeneration( *pUserProc );
|
---|
| 569 | }
|
---|
[75] | 570 | else{
|
---|
[90] | 571 | if(pUserProc->IsMacro()){
|
---|
| 572 | CompileBuffer(ESC_ENDMACRO,0);
|
---|
| 573 | }
|
---|
| 574 | else{
|
---|
| 575 | if(pUserProc->IsSub()){
|
---|
| 576 | CompileBuffer(ESC_ENDSUB,0);
|
---|
| 577 | }
|
---|
| 578 | else if(pUserProc->IsFunction()){
|
---|
| 579 | CompileBuffer(ESC_ENDFUNCTION,0);
|
---|
| 580 | }
|
---|
| 581 | }
|
---|
[75] | 582 | }
|
---|
[3] | 583 | //////////////////////////////////////////
|
---|
| 584 | //////////////////////////////////////////
|
---|
| 585 |
|
---|
[206] | 586 | if( compiler.pCompilingClass ){
|
---|
[17] | 587 |
|
---|
[206] | 588 | if( compiler.pCompilingClass->IsCompilingConstructor() ){
|
---|
[17] | 589 | // コンストラクタをコンパイルしていたとき
|
---|
[18] | 590 |
|
---|
[17] | 591 | // コンストラクタのコンパイルが完了したことを通知
|
---|
[206] | 592 | compiler.pCompilingClass->NotifyFinishConstructorCompile();
|
---|
[17] | 593 | }
|
---|
[75] | 594 | else if( pUserProc->IsDestructor() ){
|
---|
[3] | 595 | ////////////////////////////////////
|
---|
| 596 | //デストラクタをコンパイルしたとき
|
---|
| 597 | ////////////////////////////////////
|
---|
| 598 |
|
---|
[18] | 599 | // デストラクタのコンパイルが完了したことを通知
|
---|
[206] | 600 | compiler.pCompilingClass->NotifyFinishDestructorCompile();
|
---|
[18] | 601 |
|
---|
[206] | 602 | if( compiler.pCompilingClass->HasSuperClass() ){
|
---|
[3] | 603 | /* サブクラスのデストラクタをコンパイルしているときは、
|
---|
[27] | 604 | 基底クラスのデストラクタを呼び出す */
|
---|
[3] | 605 |
|
---|
[206] | 606 | const CMethod *method = compiler.pCompilingClass->GetSuperClass().GetDestructorMethod();
|
---|
[51] | 607 | if( method ){
|
---|
[3] | 608 | Opcode_CallProc("",
|
---|
[206] | 609 | &method->GetUserProc(),
|
---|
[3] | 610 | 0,
|
---|
[290] | 611 | ""
|
---|
| 612 | );
|
---|
[3] | 613 | }
|
---|
| 614 | }
|
---|
| 615 | }
|
---|
| 616 | }
|
---|
| 617 |
|
---|
| 618 | //With情報のメモリを解放
|
---|
| 619 | for(i3=0;i3<WithInfo.num;i3++){
|
---|
| 620 | SetError(22,"With",WithInfo.pWithCp[i3]);
|
---|
| 621 | HeapDefaultFree(WithInfo.ppName[i3]);
|
---|
| 622 | }
|
---|
| 623 | HeapDefaultFree(WithInfo.ppName);
|
---|
| 624 | HeapDefaultFree(WithInfo.pWithCp);
|
---|
| 625 |
|
---|
| 626 | //push ebp
|
---|
| 627 | AllLocalVarSize+=sizeof(long);
|
---|
| 628 |
|
---|
| 629 | //ローカルオブジェクトの解放処理
|
---|
[248] | 630 | compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
|
---|
[3] | 631 |
|
---|
[34] | 632 | //プロシージャ抜け出しスケジュール(Exit Sub/Function)
|
---|
[247] | 633 | compiler.codeGenerator.ResolveExitSubSchedule();
|
---|
[34] | 634 |
|
---|
| 635 | if(bDebugCompile&&bDebugSupportProc==0){
|
---|
[251] | 636 | compiler.codeGenerator.opfix( pEspOffsetPertialSchedule, AllLocalVarSize-BaseOffset-sizeof(long) );
|
---|
[34] | 637 |
|
---|
| 638 | //call _DebugSys_EndProc
|
---|
[206] | 639 | extern const UserProc *pSub_DebugSys_EndProc;
|
---|
[225] | 640 | compiler.codeGenerator.op_call(pSub_DebugSys_EndProc);
|
---|
[34] | 641 | }
|
---|
| 642 |
|
---|
[75] | 643 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
[3] | 644 | //戻り値をeax、edxに設定
|
---|
| 645 | RELATIVE_VAR RelativeVar;
|
---|
| 646 |
|
---|
[75] | 647 | const char *temp = pUserProc->GetName().c_str();
|
---|
| 648 | if( temp[0]==1 && temp[1]==ESC_OPERATOR ){
|
---|
[3] | 649 | temp="_System_ReturnValue";
|
---|
[75] | 650 | }
|
---|
[76] | 651 | GetVarOffsetReadWrite(temp,&RelativeVar,Type());
|
---|
[3] | 652 |
|
---|
[290] | 653 | const Type &returnType = pUserProc->ReturnType();
|
---|
| 654 | if( returnType.IsObject() || returnType.IsStruct() )
|
---|
| 655 | {
|
---|
[3] | 656 | SetVarPtrToEax(&RelativeVar);
|
---|
[290] | 657 | if( returnType.IsObject() )
|
---|
| 658 | {
|
---|
[64] | 659 | //mov eax,dword ptr[eax]
|
---|
[225] | 660 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
---|
[64] | 661 | }
|
---|
[3] | 662 | }
|
---|
[290] | 663 | else if( returnType.IsReal() )
|
---|
[231] | 664 | {
|
---|
[3] | 665 | //fld qword ptr[ebp+offset]
|
---|
[253] | 666 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
[290] | 667 | compiler.codeGenerator.op_fld_base_offset( returnType.GetBasicType(), REG_EBP, RelativeVar.offset, Schedule::None, true )
|
---|
[253] | 668 | );
|
---|
[3] | 669 | }
|
---|
[290] | 670 | else if( returnType.Is64() )
|
---|
| 671 | {
|
---|
[3] | 672 | //mov eax,dword ptr[ebp+offset]
|
---|
[253] | 673 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
| 674 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
| 675 | );
|
---|
[3] | 676 |
|
---|
| 677 | //mov edx,dword ptr[ebp+offset+sizeof(long)]
|
---|
[253] | 678 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
| 679 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_EBP, RelativeVar.offset+sizeof(long), MOD_BASE_DISP32, Schedule::None, true )
|
---|
| 680 | );
|
---|
[3] | 681 | }
|
---|
[290] | 682 | else if( returnType.GetSize() == sizeof(long) )
|
---|
[253] | 683 | {
|
---|
[3] | 684 | //mov eax,dword ptr[ebp+offset]
|
---|
[253] | 685 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
| 686 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
| 687 | );
|
---|
[3] | 688 | }
|
---|
[290] | 689 | else if( returnType.GetSize() == sizeof(short) )
|
---|
| 690 | {
|
---|
[3] | 691 | //xor eax,eax(eaxを0に初期化する)
|
---|
[225] | 692 | compiler.codeGenerator.op_zero_reg(REG_EAX);
|
---|
[3] | 693 |
|
---|
| 694 | //mov ax,word ptr[ebp+offset]
|
---|
[253] | 695 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
| 696 | compiler.codeGenerator.op_mov_RM( sizeof(short), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
| 697 | );
|
---|
[3] | 698 | }
|
---|
[290] | 699 | else if( returnType.GetSize() == sizeof(char) )
|
---|
| 700 | {
|
---|
[3] | 701 | //xor eax,eax(eaxを0に初期化する)
|
---|
[225] | 702 | compiler.codeGenerator.op_zero_reg(REG_EAX);
|
---|
[3] | 703 |
|
---|
| 704 | //mov al,byte ptr[ebp+offset]
|
---|
[253] | 705 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
| 706 | compiler.codeGenerator.op_mov_RM( sizeof(char), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
| 707 | );
|
---|
[3] | 708 | }
|
---|
[290] | 709 | else
|
---|
| 710 | {
|
---|
| 711 | SetError();
|
---|
| 712 | }
|
---|
[3] | 713 | }
|
---|
| 714 |
|
---|
| 715 | //ローカル変数アドレススケジュール
|
---|
[253] | 716 | BOOST_FOREACH( const PertialSchedule *pPertialSchedule, compiler.codeGenerator.localVarPertialSchedules )
|
---|
| 717 | {
|
---|
| 718 | compiler.codeGenerator.opfix_offset( pPertialSchedule, AllLocalVarSize );
|
---|
[3] | 719 | }
|
---|
[253] | 720 | compiler.codeGenerator.localVarPertialSchedules.clear();
|
---|
[206] | 721 | BOOST_FOREACH( Variable *pVar, pUserProc->GetLocalVars() ){
|
---|
[76] | 722 | //後にデバッグで利用する
|
---|
[206] | 723 | pVar->SetOffsetAddress( AllLocalVarSize - pVar->GetOffsetAddress() );
|
---|
[3] | 724 | }
|
---|
| 725 |
|
---|
| 726 | //push ebp、ret用のアドレスを考慮
|
---|
| 727 | AllLocalVarSize-=sizeof(long)*2;
|
---|
| 728 |
|
---|
| 729 | //ローカル変数用メモリを確保するためのスケジュール(subコマンド)
|
---|
[253] | 730 | compiler.codeGenerator.opfix( pAllLocalVarPertialSchedule, AllLocalVarSize - BaseOffset );
|
---|
[3] | 731 |
|
---|
| 732 | //pop edi
|
---|
[235] | 733 | compiler.codeGenerator.op_pop( REG_EDI );
|
---|
[3] | 734 |
|
---|
| 735 | //pop esi
|
---|
[235] | 736 | compiler.codeGenerator.op_pop( REG_ESI );
|
---|
[3] | 737 |
|
---|
| 738 | //pop ebx
|
---|
[225] | 739 | compiler.codeGenerator.op_pop(REG_EBX);
|
---|
[3] | 740 |
|
---|
[64] | 741 | if(bDebugCompile){
|
---|
| 742 | //cmp esp,ebp
|
---|
[225] | 743 | compiler.codeGenerator.op_cmp_RR( REG_ESP, REG_EBP );
|
---|
[64] | 744 |
|
---|
[240] | 745 | //je 6(次のcallとbreakpointを飛び越す)
|
---|
| 746 | compiler.codeGenerator.op_je( 6 );
|
---|
[64] | 747 |
|
---|
| 748 | //call _esp_error
|
---|
[206] | 749 | extern const UserProc *pSub_esp_error;
|
---|
[225] | 750 | compiler.codeGenerator.op_call( pSub_esp_error );
|
---|
[64] | 751 |
|
---|
| 752 | breakpoint;
|
---|
| 753 | }
|
---|
| 754 |
|
---|
[3] | 755 | //mov esp,ebp
|
---|
[235] | 756 | compiler.codeGenerator.op_mov_RR( REG_ESP, REG_EBP );
|
---|
[3] | 757 |
|
---|
| 758 | //pop ebp
|
---|
[225] | 759 | compiler.codeGenerator.op_pop(REG_EBP);
|
---|
[3] | 760 |
|
---|
| 761 | //add esp AllLocalVarSize
|
---|
[225] | 762 | compiler.codeGenerator.op_add_esp(AllLocalVarSize-BaseOffset);
|
---|
[3] | 763 |
|
---|
[75] | 764 | if( BaseOffset==0 || pUserProc->IsCdecl() ){
|
---|
[142] | 765 | //ret
|
---|
[225] | 766 | compiler.codeGenerator.op_ret();
|
---|
[3] | 767 | }
|
---|
| 768 | else{
|
---|
| 769 | //ret BaseOffset(パラメータ分のスタック領域を解放)
|
---|
[240] | 770 | compiler.codeGenerator.op_ret( (_int16)BaseOffset );
|
---|
[3] | 771 | }
|
---|
| 772 |
|
---|
[76] | 773 |
|
---|
[75] | 774 | //重複エラー情報管理のメモリを解放
|
---|
| 775 | for(i3=0;i3<SynonymErrorNum;i3++) HeapDefaultFree(SynonymErrorWords[i3]);
|
---|
| 776 | HeapDefaultFree(SynonymErrorWords);
|
---|
| 777 | SynonymErrorWords=0;
|
---|
| 778 |
|
---|
| 779 |
|
---|
[3] | 780 | //ローカル変数のネーム情報は後に解放する
|
---|
| 781 | }
|
---|