| 1 | #include "stdafx.h"
|
|---|
| 2 |
|
|---|
| 3 | #include <jenga/include/smoothie/Smoothie.h>
|
|---|
| 4 | #include <jenga/include/smoothie/LexicalAnalysis.h>
|
|---|
| 5 |
|
|---|
| 6 | #include <Compiler.h>
|
|---|
| 7 |
|
|---|
| 8 | #include "../BasicCompiler_Common/common.h"
|
|---|
| 9 | #include "Opcode.h"
|
|---|
| 10 |
|
|---|
| 11 | void PushReturnValue(int type){
|
|---|
| 12 | //関数の戻り値をスタックへプッシュする
|
|---|
| 13 | //※この処理内では、esi、ediは使用不可
|
|---|
| 14 |
|
|---|
| 15 | if(type==DEF_OBJECT || type==DEF_STRUCT){
|
|---|
| 16 | //push eax
|
|---|
| 17 | compiler.codeGenerator.op_push(REG_EAX);
|
|---|
| 18 | }
|
|---|
| 19 | else if(type==DEF_DOUBLE){
|
|---|
| 20 | //sub esp,8
|
|---|
| 21 | compiler.codeGenerator.op_sub_esp(8);
|
|---|
| 22 |
|
|---|
| 23 | //fstp qword ptr[esp]
|
|---|
| 24 | compiler.codeGenerator.op_fstp_basereg( DEF_DOUBLE, REG_ESP );
|
|---|
| 25 | }
|
|---|
| 26 | else if(type==DEF_SINGLE){
|
|---|
| 27 | //sub esp,4
|
|---|
| 28 | compiler.codeGenerator.op_sub_esp(4);
|
|---|
| 29 |
|
|---|
| 30 | //fstp dword ptr[esp]
|
|---|
| 31 | compiler.codeGenerator.op_fstp_basereg( DEF_SINGLE, REG_ESP );
|
|---|
| 32 | }
|
|---|
| 33 | else if(type==DEF_INT64||type==DEF_QWORD){
|
|---|
| 34 | //push edx
|
|---|
| 35 | compiler.codeGenerator.op_push(REG_EDX);
|
|---|
| 36 |
|
|---|
| 37 | //push eax
|
|---|
| 38 | compiler.codeGenerator.op_push(REG_EAX);
|
|---|
| 39 | }
|
|---|
| 40 | else if(type==DEF_LONG){
|
|---|
| 41 | //push eax
|
|---|
| 42 | compiler.codeGenerator.op_push(REG_EAX);
|
|---|
| 43 | }
|
|---|
| 44 | else if(type==DEF_INTEGER || (Smoothie::IsUnicode()&&type==DEF_CHAR)){
|
|---|
| 45 | //movsx ebx,ax
|
|---|
| 46 | compiler.codeGenerator.op_movsx_R32R16( REG_EBX, REG_EAX );
|
|---|
| 47 |
|
|---|
| 48 | //push ebx
|
|---|
| 49 | compiler.codeGenerator.op_push(REG_EBX);
|
|---|
| 50 | }
|
|---|
| 51 | else if(type==DEF_SBYTE || (Smoothie::IsUnicode()==false&&type==DEF_CHAR)){
|
|---|
| 52 | //movsx ebx,al
|
|---|
| 53 | compiler.codeGenerator.op_movsx_R32R8( REG_EBX, REG_EAX );
|
|---|
| 54 |
|
|---|
| 55 | //push ebx
|
|---|
| 56 | compiler.codeGenerator.op_push(REG_EBX);
|
|---|
| 57 | }
|
|---|
| 58 | else if(type==DEF_DWORD||type==DEF_WORD||type==DEF_BYTE||type==DEF_BOOLEAN||
|
|---|
| 59 | IsPtrType(type)){
|
|---|
| 60 | //push eax
|
|---|
| 61 | compiler.codeGenerator.op_push(REG_EAX);
|
|---|
| 62 | }
|
|---|
| 63 | else{
|
|---|
| 64 | SetError();
|
|---|
| 65 | }
|
|---|
| 66 | }
|
|---|
| 67 |
|
|---|
| 68 | void NewStringObject( const char *str ){
|
|---|
| 69 | ///////////////////////////////////////////////////////
|
|---|
| 70 | // lpszTextを元にStringオブジェクトを生成し、
|
|---|
| 71 | // オブジェクトポインタをregに格納する
|
|---|
| 72 | ///////////////////////////////////////////////////////
|
|---|
| 73 |
|
|---|
| 74 | char *parameter = (char *)malloc( lstrlen( str ) + 32 );
|
|---|
| 75 | sprintf( parameter, "%s%c%c*Char", str, 1, ESC_AS );
|
|---|
| 76 |
|
|---|
| 77 | Operator_New( *compiler.GetObjectModule().meta.GetClasses().GetStringClassPtr(), "", parameter, Type( DEF_OBJECT, *compiler.GetObjectModule().meta.GetClasses().GetStringClassPtr() ) );
|
|---|
| 78 |
|
|---|
| 79 | free( parameter );
|
|---|
| 80 | }
|
|---|
| 81 |
|
|---|
| 82 | void ExtendRegToBigType( int reg, int bigBasicType, int baseBasicType ){
|
|---|
| 83 | if( reg != REG_EAX ){
|
|---|
| 84 | SetError();
|
|---|
| 85 | }
|
|---|
| 86 | switch( Type::GetBasicSize( bigBasicType ) ){
|
|---|
| 87 | case sizeof(_int64):
|
|---|
| 88 | ExtendTypeTo64(baseBasicType);
|
|---|
| 89 | break;
|
|---|
| 90 | case sizeof(long):
|
|---|
| 91 | ExtendTypeTo32(baseBasicType,reg);
|
|---|
| 92 | break;
|
|---|
| 93 | case sizeof(short):
|
|---|
| 94 | ExtendTypeTo16(baseBasicType,reg);
|
|---|
| 95 | break;
|
|---|
| 96 | }
|
|---|
| 97 | }
|
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
|
|---|
| 101 | bool VarToReg( RELATIVE_VAR &relativeVar, const Type &baseType, Type &resultType ){
|
|---|
| 102 | const int useReg = REG_EAX;
|
|---|
| 103 |
|
|---|
| 104 | //大きな型への暗黙の変換
|
|---|
| 105 | int bigType = AutoBigCast(baseType.GetBasicType(),resultType.GetBasicType());
|
|---|
| 106 |
|
|---|
| 107 | if(resultType.GetBasicType()&FLAG_PTR){
|
|---|
| 108 | //配列ポインタ
|
|---|
| 109 | resultType.SetBasicType( GetPtrType(resultType.GetBasicType()^FLAG_PTR) );
|
|---|
| 110 |
|
|---|
| 111 | SetVarPtrToReg(useReg, &relativeVar);
|
|---|
| 112 | }
|
|---|
| 113 | else if( resultType.IsStruct() ){
|
|---|
| 114 | //構造体ポインタをeaxへ格納(構造体は値型)
|
|---|
| 115 | SetVarPtrToReg(useReg, &relativeVar);
|
|---|
| 116 | }
|
|---|
| 117 | else if( resultType.IsReal() ){
|
|---|
| 118 | // 実数
|
|---|
| 119 | SetReg_RealVariable( resultType.GetBasicType(), &relativeVar );
|
|---|
| 120 | }
|
|---|
| 121 | else if( resultType.IsWhole() || resultType.IsObject()){
|
|---|
| 122 | //整数型
|
|---|
| 123 | SetReg_WholeVariable(resultType,&relativeVar,useReg);
|
|---|
| 124 | }
|
|---|
| 125 | else if( resultType.IsStruct() ){
|
|---|
| 126 | //構造体ポインタをUseRegへ格納(構造体は値型)
|
|---|
| 127 | SetVarPtrToReg(useReg,&relativeVar);
|
|---|
| 128 | }
|
|---|
| 129 | else{
|
|---|
| 130 | return false;
|
|---|
| 131 | }
|
|---|
| 132 |
|
|---|
| 133 | if( resultType.GetBasicType() != bigType ){
|
|---|
| 134 | // 大きな型へ変換された場合
|
|---|
| 135 | // ※レジスタの値をキャストする
|
|---|
| 136 | ExtendRegToBigType( useReg, bigType, resultType.GetBasicType() );
|
|---|
| 137 |
|
|---|
| 138 | resultType.SetBasicType( bigType );
|
|---|
| 139 | }
|
|---|
| 140 |
|
|---|
| 141 | return true;
|
|---|
| 142 | }
|
|---|
| 143 | bool TermMemberOpe( const Type &leftType, const Type &baseType, Type &resultType, const char *termFull, const char *termLeft, const char *member )
|
|---|
| 144 | {
|
|---|
| 145 | const CClass &objClass = leftType.GetClass();
|
|---|
| 146 |
|
|---|
| 147 | const int useReg = REG_EAX;
|
|---|
| 148 |
|
|---|
| 149 |
|
|---|
| 150 | ////////////////////////////////
|
|---|
| 151 | // インデクサ(getアクセサ)
|
|---|
| 152 | ////////////////////////////////
|
|---|
| 153 | char VarName[VN_SIZE],ArrayElements[VN_SIZE];
|
|---|
| 154 | GetArrayElement(member,VarName,ArrayElements);
|
|---|
| 155 | if(ArrayElements[0]){
|
|---|
| 156 | Type classType;
|
|---|
| 157 | GetMemberType( leftType, VarName, classType, 0, false );
|
|---|
| 158 | if( classType.IsObject() )
|
|---|
| 159 | {
|
|---|
| 160 | //オブジェクトポインタをecxにコピー
|
|---|
| 161 | compiler.codeGenerator.op_mov_RR( REG_ECX, useReg );
|
|---|
| 162 |
|
|---|
| 163 | RELATIVE_VAR relativeVar;
|
|---|
| 164 | relativeVar.dwKind=VAR_DIRECTMEM;
|
|---|
| 165 |
|
|---|
| 166 | if( !_member_offset(
|
|---|
| 167 | true, //エラー表示あり
|
|---|
| 168 | false, //読み込み専用
|
|---|
| 169 | leftType,
|
|---|
| 170 | VarName,&relativeVar,classType,0)){
|
|---|
| 171 | return false;
|
|---|
| 172 | }
|
|---|
| 173 |
|
|---|
| 174 | // オブジェクトメンバのポインタをeaxにコピー
|
|---|
| 175 | if( !VarToReg( relativeVar, baseType, resultType ) ){
|
|---|
| 176 | SetError(11,termFull,cp);
|
|---|
| 177 | }
|
|---|
| 178 |
|
|---|
| 179 |
|
|---|
| 180 | //オブジェクトポインタをスタックに入れておく
|
|---|
| 181 | //push eax
|
|---|
| 182 | compiler.codeGenerator.op_push( REG_EAX );
|
|---|
| 183 |
|
|---|
| 184 | char objectFullName[VN_SIZE], dummyArrayElements[VN_SIZE];
|
|---|
| 185 | GetArrayElement(termFull,objectFullName,dummyArrayElements);
|
|---|
| 186 |
|
|---|
| 187 | CallIndexerGetterProc(/*UseReg,*/classType,objectFullName, ArrayElements,resultType, PROCFLAG_NEW );
|
|---|
| 188 |
|
|---|
| 189 | compiler.codeGenerator.op_pop();
|
|---|
| 190 |
|
|---|
| 191 | return true;
|
|---|
| 192 | }
|
|---|
| 193 | }
|
|---|
| 194 |
|
|---|
| 195 |
|
|---|
| 196 | ///////////////////////////////////////////////////////////////////
|
|---|
| 197 | // メンバを検索
|
|---|
| 198 | ///////////////////////////////////////////////////////////////////
|
|---|
| 199 | if( GetMemberType( leftType, member, resultType, 0, false ) ){
|
|---|
| 200 | // メンバが見つかったとき
|
|---|
| 201 |
|
|---|
| 202 | //オブジェクトポインタをecxにコピー
|
|---|
| 203 | compiler.codeGenerator.op_mov_RR( REG_ECX, useReg );
|
|---|
| 204 |
|
|---|
| 205 | RELATIVE_VAR relativeVar;
|
|---|
| 206 | relativeVar.dwKind=VAR_DIRECTMEM;
|
|---|
| 207 |
|
|---|
| 208 | if( !_member_offset(
|
|---|
| 209 | true, //エラー表示あり
|
|---|
| 210 | false, //読み込み専用
|
|---|
| 211 | leftType,
|
|---|
| 212 | member,&relativeVar,resultType,0)){
|
|---|
| 213 | return false;
|
|---|
| 214 | }
|
|---|
| 215 |
|
|---|
| 216 | if( !VarToReg( relativeVar, baseType, resultType ) ){
|
|---|
| 217 | SetError(11,termFull,cp);
|
|---|
| 218 | }
|
|---|
| 219 |
|
|---|
| 220 | return true;
|
|---|
| 221 | }
|
|---|
| 222 |
|
|---|
| 223 |
|
|---|
| 224 | ///////////////////////////////////////////////////////////////////
|
|---|
| 225 | // 動的メソッドを検索
|
|---|
| 226 | ///////////////////////////////////////////////////////////////////
|
|---|
| 227 | vector<const UserProc *> userProcs;
|
|---|
| 228 |
|
|---|
| 229 | char methodName[VN_SIZE], lpPtrOffset[VN_SIZE], parameter[VN_SIZE], dummy[1];
|
|---|
| 230 | ReferenceKind refType;
|
|---|
| 231 | lstrcpy( methodName, member );
|
|---|
| 232 | GetVarFormatString(methodName,parameter,lpPtrOffset,dummy,refType);
|
|---|
| 233 |
|
|---|
| 234 | objClass.EnumDynamicMethodsOrInterfaceMethods( methodName, userProcs );
|
|---|
| 235 | if(userProcs.size()){
|
|---|
| 236 | //オーバーロードを解決
|
|---|
| 237 | const UserProc *pUserProc = OverloadSolutionWithStrParam(termFull,userProcs,parameter,termLeft);
|
|---|
| 238 |
|
|---|
| 239 | if( pUserProc ){
|
|---|
| 240 |
|
|---|
| 241 | resultType = pUserProc->ReturnType();
|
|---|
| 242 |
|
|---|
| 243 | {
|
|---|
| 244 | //オブジェクトポインタをスタックに入れておく
|
|---|
| 245 | //push reg
|
|---|
| 246 | compiler.codeGenerator.op_push( useReg );
|
|---|
| 247 |
|
|---|
| 248 | if( !Opcode_CallProc(parameter,pUserProc,PROCFLAG_NEW,termLeft) ){
|
|---|
| 249 |
|
|---|
| 250 | return false;
|
|---|
| 251 | }
|
|---|
| 252 |
|
|---|
| 253 | compiler.codeGenerator.op_pop();
|
|---|
| 254 |
|
|---|
| 255 | /////////////////////
|
|---|
| 256 | // 戻り値の処理
|
|---|
| 257 | /////////////////////
|
|---|
| 258 |
|
|---|
| 259 | //大きな型への暗黙の変換
|
|---|
| 260 | int bigType = AutoBigCast(baseType.GetBasicType(), resultType.GetBasicType() );
|
|---|
| 261 |
|
|---|
| 262 | if( resultType.GetBasicType() != bigType ){
|
|---|
| 263 | // 大きな型へ変換された場合
|
|---|
| 264 | // ※レジスタの値をキャストする
|
|---|
| 265 | ExtendRegToBigType( REG_EAX, bigType, resultType.GetBasicType() );
|
|---|
| 266 |
|
|---|
| 267 | resultType.SetBasicType( bigType );
|
|---|
| 268 | }
|
|---|
| 269 |
|
|---|
| 270 | //SetUseRegFromRax(resultType.GetBasicType(),UseReg,XmmReg);
|
|---|
| 271 |
|
|---|
| 272 | // 型パラメータを解決
|
|---|
| 273 | ResolveFormalGenericTypeParameter( resultType, leftType, pUserProc );
|
|---|
| 274 | }
|
|---|
| 275 |
|
|---|
| 276 | return true;
|
|---|
| 277 | }
|
|---|
| 278 | }
|
|---|
| 279 |
|
|---|
| 280 | SetError();
|
|---|
| 281 |
|
|---|
| 282 | return false;
|
|---|
| 283 | }
|
|---|
| 284 | bool TermOpe( const char *term, const Type &baseType, Type &resultType, bool &isLiteral, BOOL *pbUseHeap, bool isWantObject, bool *pIsClassName, bool isProcedureCallOnly ){
|
|---|
| 285 | char parameter[VN_SIZE];
|
|---|
| 286 |
|
|---|
| 287 | // Withを解決
|
|---|
| 288 | char termFull[VN_SIZE];
|
|---|
| 289 | if(term[0]=='.'){
|
|---|
| 290 | GetWithName(termFull);
|
|---|
| 291 | lstrcat(termFull,term);
|
|---|
| 292 | }
|
|---|
| 293 | else lstrcpy(termFull,term);
|
|---|
| 294 |
|
|---|
| 295 | char termLeft[VN_SIZE];
|
|---|
| 296 | lstrcpy(termLeft,termFull);
|
|---|
| 297 |
|
|---|
| 298 | // パース
|
|---|
| 299 | char member[VN_SIZE];
|
|---|
| 300 | ReferenceKind refType;
|
|---|
| 301 | if( SplitMemberName( termFull, termLeft, member, refType ) ){
|
|---|
| 302 | ///////////////////////////////////////////////////////////////////
|
|---|
| 303 | // オブジェクトとメンバに分解できるとき
|
|---|
| 304 | // termLeft.member
|
|---|
| 305 | ///////////////////////////////////////////////////////////////////
|
|---|
| 306 |
|
|---|
| 307 | isLiteral = false;
|
|---|
| 308 |
|
|---|
| 309 | // オブジェクト側の型を取得
|
|---|
| 310 | bool isClassName = false;
|
|---|
| 311 | Type leftType;
|
|---|
| 312 | if( GetTermType( termLeft, Type(), leftType, isLiteral, &isClassName ) ){
|
|---|
| 313 | if( isClassName == false && compiler.GetObjectModule().meta.GetBlittableTypes().IsExist( leftType ) ){
|
|---|
| 314 | // 左側のオブジェクト部分がBlittable型のとき
|
|---|
| 315 |
|
|---|
| 316 | char temporary[VN_SIZE];
|
|---|
| 317 | lstrcpy( temporary, termLeft );
|
|---|
| 318 | sprintf( termLeft, "%s(%s)",
|
|---|
| 319 | compiler.GetObjectModule().meta.GetBlittableTypes().Find( leftType ).GetCreateStaticMethodFullName().c_str(),
|
|---|
| 320 | temporary );
|
|---|
| 321 | }
|
|---|
| 322 | }
|
|---|
| 323 |
|
|---|
| 324 | if( !TermOpe( termLeft, baseType, leftType, isLiteral, pbUseHeap, true, &isClassName ) ){
|
|---|
| 325 | goto globalArea;
|
|---|
| 326 | }
|
|---|
| 327 |
|
|---|
| 328 | if( isClassName ){
|
|---|
| 329 | // 静的メンバ/メソッドの場合
|
|---|
| 330 | goto globalArea;
|
|---|
| 331 | }
|
|---|
| 332 |
|
|---|
| 333 | if( !leftType.HasMember() ){
|
|---|
| 334 | // メンバを持たない型の場合
|
|---|
| 335 | if( isProcedureCallOnly )
|
|---|
| 336 | {
|
|---|
| 337 | SetError(1,NULL,cp);
|
|---|
| 338 | }
|
|---|
| 339 | return false;
|
|---|
| 340 | }
|
|---|
| 341 |
|
|---|
| 342 | return TermMemberOpe( leftType, baseType, resultType, termFull, termLeft, member );
|
|---|
| 343 | }
|
|---|
| 344 | globalArea:
|
|---|
| 345 |
|
|---|
| 346 |
|
|---|
| 347 | //////////////////////////////////////////////
|
|---|
| 348 | // クラス名かどうかをチェック(静的メンバ用)
|
|---|
| 349 | //////////////////////////////////////////////
|
|---|
| 350 |
|
|---|
| 351 | if( pIsClassName ){
|
|---|
| 352 | if( compiler.GetObjectModule().meta.GetClasses().Find( termFull ) ){
|
|---|
| 353 | *pIsClassName = true;
|
|---|
| 354 | return true;
|
|---|
| 355 | }
|
|---|
| 356 | }
|
|---|
| 357 |
|
|---|
| 358 |
|
|---|
| 359 | /////////////////////////////////////////////////////////////////
|
|---|
| 360 | // グローバル属性エリア
|
|---|
| 361 | /////////////////////////////////////////////////////////////////
|
|---|
| 362 |
|
|---|
| 363 | const int useReg = REG_EAX;
|
|---|
| 364 |
|
|---|
| 365 |
|
|---|
| 366 | if(lstrcmpi(termFull,"This")==0 && isProcedureCallOnly == false ){
|
|---|
| 367 | //Thisオブジェクト
|
|---|
| 368 | resultType.SetType( DEF_OBJECT, compiler.pCompilingClass );
|
|---|
| 369 |
|
|---|
| 370 | SetThisPtrToReg( useReg );
|
|---|
| 371 |
|
|---|
| 372 | isLiteral = false;
|
|---|
| 373 |
|
|---|
| 374 | return true;
|
|---|
| 375 | }
|
|---|
| 376 |
|
|---|
| 377 |
|
|---|
| 378 | //////////////////////////////////////
|
|---|
| 379 | // 関数(DLL、ユーザー定義、組み込み)
|
|---|
| 380 | //////////////////////////////////////
|
|---|
| 381 | char procName[VN_SIZE];
|
|---|
| 382 | char temporary[8192];
|
|---|
| 383 |
|
|---|
| 384 | int i2=GetCallProcName(termFull,procName);
|
|---|
| 385 | if(termFull[i2]=='('){
|
|---|
| 386 | int i4=GetStringInPare_RemovePare(parameter,termFull+i2+1);
|
|---|
| 387 |
|
|---|
| 388 | void *pInfo;
|
|---|
| 389 | int idProc=GetProc(procName,(void **)&pInfo);
|
|---|
| 390 |
|
|---|
| 391 | if(idProc)
|
|---|
| 392 | {
|
|---|
| 393 | if(termFull[i2+1+i4+1]!='\0')
|
|---|
| 394 | {
|
|---|
| 395 | //閉じカッコ")"に続く文字がNULLでないとき
|
|---|
| 396 | SetError(42,NULL,cp);
|
|---|
| 397 | }
|
|---|
| 398 |
|
|---|
| 399 |
|
|---|
| 400 | {
|
|---|
| 401 | ////////////////
|
|---|
| 402 | // 呼び出し
|
|---|
| 403 | ////////////////
|
|---|
| 404 |
|
|---|
| 405 | CallProc(idProc,pInfo,procName,parameter, baseType,resultType);
|
|---|
| 406 |
|
|---|
| 407 |
|
|---|
| 408 | /////////////////////
|
|---|
| 409 | // 戻り値の処理
|
|---|
| 410 | /////////////////////
|
|---|
| 411 |
|
|---|
| 412 | //大きな型への暗黙の変換
|
|---|
| 413 | int bigType = AutoBigCast(baseType.GetBasicType(), resultType.GetBasicType() );
|
|---|
| 414 |
|
|---|
| 415 | /*
|
|---|
| 416 | ※後でNumOpe内でプッシュする
|
|---|
| 417 | //スタックへプッシュ
|
|---|
| 418 | PushReturnValue( resultType.GetBasicType() );
|
|---|
| 419 | */
|
|---|
| 420 |
|
|---|
| 421 | if( resultType.GetBasicType() != bigType ){
|
|---|
| 422 | // 大きな型へ変換された場合
|
|---|
| 423 | // ※レジスタの値をキャストする
|
|---|
| 424 | ExtendRegToBigType( useReg, bigType, resultType.GetBasicType() );
|
|---|
| 425 |
|
|---|
| 426 | resultType.SetBasicType( bigType );
|
|---|
| 427 | }
|
|---|
| 428 |
|
|---|
| 429 | //SetUseRegFromRax(resultType.GetBasicType(),UseReg,XmmReg);
|
|---|
| 430 | }
|
|---|
| 431 |
|
|---|
| 432 |
|
|---|
| 433 | if(resultType.IsStruct()){
|
|---|
| 434 | //構造体が戻ったときはヒープ領域にインスタンスが格納されている
|
|---|
| 435 | //※後にfreeする必要あり
|
|---|
| 436 | // TODO: 解放はGCに任せる
|
|---|
| 437 | *pbUseHeap = 1;
|
|---|
| 438 | }
|
|---|
| 439 |
|
|---|
| 440 | isLiteral = false;
|
|---|
| 441 |
|
|---|
| 442 | return true;
|
|---|
| 443 | }
|
|---|
| 444 |
|
|---|
| 445 | ConstMacro *pConstMacro = compiler.GetObjectModule().meta.GetGlobalConstMacros().Find( procName );
|
|---|
| 446 | if( pConstMacro )
|
|---|
| 447 | {
|
|---|
| 448 | if( pConstMacro->GetCalcBuffer( parameter, temporary ) )
|
|---|
| 449 | {
|
|---|
| 450 | /////////////////////////
|
|---|
| 451 | // マクロ関数
|
|---|
| 452 | /////////////////////////
|
|---|
| 453 |
|
|---|
| 454 | //閉じカッコ")"に続く文字がNULLでないときはエラーにする
|
|---|
| 455 | if(termFull[i2+1+i4+1]!='\0') SetError(42,NULL,cp);
|
|---|
| 456 |
|
|---|
| 457 | //マクロ関数の場合
|
|---|
| 458 | NumOpe(useReg, temporary,Type(),resultType);
|
|---|
| 459 |
|
|---|
| 460 | if(!IS_LITERAL(resultType.GetIndex())){
|
|---|
| 461 | //リテラル値ではなかったとき
|
|---|
| 462 | isLiteral = false;
|
|---|
| 463 | }
|
|---|
| 464 |
|
|---|
| 465 | return true;
|
|---|
| 466 | }
|
|---|
| 467 | }
|
|---|
| 468 | }
|
|---|
| 469 | else if( isProcedureCallOnly ){
|
|---|
| 470 | // 関数呼び出し以外は受け付けない
|
|---|
| 471 | return false;
|
|---|
| 472 | }
|
|---|
| 473 |
|
|---|
| 474 |
|
|---|
| 475 | ////////////////////////////////
|
|---|
| 476 | // インデクサ(getアクセサ)
|
|---|
| 477 | ////////////////////////////////
|
|---|
| 478 |
|
|---|
| 479 | char VarName[VN_SIZE],ArrayElements[VN_SIZE];
|
|---|
| 480 | GetArrayElement(termFull,VarName,ArrayElements);
|
|---|
| 481 | if(ArrayElements[0]){
|
|---|
| 482 | Type classType;
|
|---|
| 483 | GetVarType(VarName,classType,false);
|
|---|
| 484 | if( classType.IsObject() )
|
|---|
| 485 | {
|
|---|
| 486 | CallIndexerGetterProc(/*UseReg,*/classType,VarName, ArrayElements,resultType);
|
|---|
| 487 |
|
|---|
| 488 | isLiteral = false;
|
|---|
| 489 |
|
|---|
| 490 | return true;
|
|---|
| 491 | }
|
|---|
| 492 | }
|
|---|
| 493 |
|
|---|
| 494 |
|
|---|
| 495 | ////////////////////////////////
|
|---|
| 496 | // 変数
|
|---|
| 497 | ////////////////////////////////
|
|---|
| 498 |
|
|---|
| 499 | RELATIVE_VAR relativeVar;
|
|---|
| 500 | if(GetVarOffset(
|
|---|
| 501 | false, //エラー表示なし
|
|---|
| 502 | false, //読み込み専用
|
|---|
| 503 | termFull,
|
|---|
| 504 | &relativeVar,resultType)){
|
|---|
| 505 | //////////
|
|---|
| 506 | // 変数
|
|---|
| 507 | //////////
|
|---|
| 508 |
|
|---|
| 509 | if( !VarToReg( relativeVar, baseType, resultType ) ){
|
|---|
| 510 | SetError(11,termFull,cp);
|
|---|
| 511 | }
|
|---|
| 512 |
|
|---|
| 513 | isLiteral = false;
|
|---|
| 514 |
|
|---|
| 515 | return true;
|
|---|
| 516 | }
|
|---|
| 517 |
|
|---|
| 518 |
|
|---|
| 519 | /////////////////////////////////
|
|---|
| 520 | // プロパティ用のメソッド
|
|---|
| 521 | /////////////////////////////////
|
|---|
| 522 |
|
|---|
| 523 | //配列要素を排除
|
|---|
| 524 | GetArrayElement(termFull,VarName,ArrayElements);
|
|---|
| 525 |
|
|---|
| 526 | if(GetSubHash(VarName,0)){
|
|---|
| 527 |
|
|---|
| 528 | {
|
|---|
| 529 | CallPropertyMethod(termFull,NULL,resultType);
|
|---|
| 530 |
|
|---|
| 531 | //大きな型への暗黙の変換
|
|---|
| 532 | int bigType = AutoBigCast(baseType.GetBasicType(), resultType.GetBasicType() );
|
|---|
| 533 |
|
|---|
| 534 | if( resultType.GetBasicType() != bigType ){
|
|---|
| 535 | // 大きな型へ変換された場合
|
|---|
| 536 | // ※レジスタの値をキャストする
|
|---|
| 537 | ExtendRegToBigType( REG_EAX, bigType, resultType.GetBasicType() );
|
|---|
| 538 |
|
|---|
| 539 | resultType.SetBasicType( bigType );
|
|---|
| 540 | }
|
|---|
| 541 |
|
|---|
| 542 | //SetUseRegFromRax(resultType.GetBasicType(),UseReg,XmmReg);
|
|---|
| 543 | }
|
|---|
| 544 |
|
|---|
| 545 |
|
|---|
| 546 | if(resultType.IsStruct()){
|
|---|
| 547 | //構造体が戻ったときはヒープ領域にインスタンスが格納されている
|
|---|
| 548 | //※後にfreeする必要あり
|
|---|
| 549 | // TODO: 解放はGCに任せる
|
|---|
| 550 | *pbUseHeap = 1;
|
|---|
| 551 | }
|
|---|
| 552 |
|
|---|
| 553 | isLiteral = false;
|
|---|
| 554 |
|
|---|
| 555 | return true;
|
|---|
| 556 | }
|
|---|
| 557 |
|
|---|
| 558 | if( isProcedureCallOnly )
|
|---|
| 559 | {
|
|---|
| 560 | SetError(3, termLeft, cp );
|
|---|
| 561 | }
|
|---|
| 562 |
|
|---|
| 563 | return false;
|
|---|
| 564 | }
|
|---|
| 565 |
|
|---|
| 566 |
|
|---|
| 567 | bool NumOpe( int reg,
|
|---|
| 568 | const char *expression,
|
|---|
| 569 | const Type &baseType,
|
|---|
| 570 | Type &resultType,
|
|---|
| 571 | BOOL *pbUseHeap ){
|
|---|
| 572 |
|
|---|
| 573 | if( !NumOpe( expression, baseType, resultType, pbUseHeap ) ){
|
|---|
| 574 | return false;
|
|---|
| 575 | }
|
|---|
| 576 |
|
|---|
| 577 | if( reg != REG_EAX ){
|
|---|
| 578 | // TODO: 未実装
|
|---|
| 579 | SetError();
|
|---|
| 580 | }
|
|---|
| 581 |
|
|---|
| 582 | if( resultType.IsReal() ){
|
|---|
| 583 | //fld ptr[esp]
|
|---|
| 584 | compiler.codeGenerator.op_fld_ptr_esp( resultType.GetBasicType() );
|
|---|
| 585 |
|
|---|
| 586 | //add esp,size
|
|---|
| 587 | compiler.codeGenerator.op_add_esp( resultType.GetBasicSize() );
|
|---|
| 588 | }
|
|---|
| 589 | else{
|
|---|
| 590 | //pop eax
|
|---|
| 591 | compiler.codeGenerator.op_pop(REG_EAX);
|
|---|
| 592 |
|
|---|
| 593 | if( resultType.Is64() ){
|
|---|
| 594 | //pop edx
|
|---|
| 595 | compiler.codeGenerator.op_pop(REG_EDX);
|
|---|
| 596 | }
|
|---|
| 597 | }
|
|---|
| 598 | return true;
|
|---|
| 599 | }
|
|---|
| 600 | bool NumOpe( const char *expression,
|
|---|
| 601 | const Type &baseType,
|
|---|
| 602 | Type &resultType,
|
|---|
| 603 | BOOL *pbUseHeap )
|
|---|
| 604 | {
|
|---|
| 605 | int i,i2,i3;
|
|---|
| 606 | char temporary[1024],temp2[1024];
|
|---|
| 607 |
|
|---|
| 608 | if(expression[0]=='\0'){
|
|---|
| 609 | SetError(1,NULL,cp);
|
|---|
| 610 | return false;
|
|---|
| 611 | }
|
|---|
| 612 |
|
|---|
| 613 | if( !baseType.IsNull() && expression[0] == '[' ){
|
|---|
| 614 | // リテラル配列の場合
|
|---|
| 615 |
|
|---|
| 616 | int dataTableOffset;
|
|---|
| 617 | if( !compiler.GetObjectModule().dataTable.MakeLiteralArrayBuffer( expression, baseType, dataTableOffset ) )
|
|---|
| 618 | {
|
|---|
| 619 | return false;
|
|---|
| 620 | }
|
|---|
| 621 |
|
|---|
| 622 | //mov eax,i2
|
|---|
| 623 | compiler.codeGenerator.op_mov_RV(REG_EAX,dataTableOffset, Schedule::DataTable );
|
|---|
| 624 |
|
|---|
| 625 | resultType = baseType;
|
|---|
| 626 |
|
|---|
| 627 | //push eax
|
|---|
| 628 | compiler.codeGenerator.op_push( REG_EAX );
|
|---|
| 629 |
|
|---|
| 630 | return true;
|
|---|
| 631 | }
|
|---|
| 632 |
|
|---|
| 633 | bool isLiteralCalculation;
|
|---|
| 634 | if( NumOpe_GetType( expression, baseType, resultType, &isLiteralCalculation ) )
|
|---|
| 635 | {
|
|---|
| 636 | if( isLiteralCalculation )
|
|---|
| 637 | {
|
|---|
| 638 | //右辺値が数値の定数式の場合
|
|---|
| 639 | _int64 i64data;
|
|---|
| 640 | StaticCalculation(true, expression,baseType.GetBasicType(),&i64data,resultType);
|
|---|
| 641 |
|
|---|
| 642 | if( resultType.GetBasicSize() == sizeof(_int64) ){
|
|---|
| 643 | //64ビット(符号有り整数/実数)
|
|---|
| 644 |
|
|---|
| 645 | //push HILONG(i64data)
|
|---|
| 646 | compiler.codeGenerator.op_push_V((long)*(long *)(((char *)(&i64data))+4));
|
|---|
| 647 |
|
|---|
| 648 | //push LOLONG(i64data)
|
|---|
| 649 | compiler.codeGenerator.op_push_V(*(long *)(&i64data));
|
|---|
| 650 | }
|
|---|
| 651 | else if( resultType.IsSingle() ){
|
|---|
| 652 | //single実数
|
|---|
| 653 |
|
|---|
| 654 | double dbl;
|
|---|
| 655 | memcpy(&dbl,&i64data,sizeof(_int64));
|
|---|
| 656 |
|
|---|
| 657 | float flt;
|
|---|
| 658 | flt=(float)dbl;
|
|---|
| 659 | long l;
|
|---|
| 660 | memcpy(&l,&flt,sizeof(long));
|
|---|
| 661 |
|
|---|
| 662 | //push flt
|
|---|
| 663 | compiler.codeGenerator.op_push_V(l);
|
|---|
| 664 | }
|
|---|
| 665 | else{
|
|---|
| 666 | //整数(符号有り/無し)
|
|---|
| 667 |
|
|---|
| 668 | long l = (long)i64data;
|
|---|
| 669 |
|
|---|
| 670 | if(resultType.GetBasicSize()==sizeof(char)) l = l & 0x000000FF;
|
|---|
| 671 | if(resultType.GetBasicSize()==sizeof(short)) l = l & 0x0000FFFF;
|
|---|
| 672 |
|
|---|
| 673 | //push term
|
|---|
| 674 | compiler.codeGenerator.op_push_V(l);
|
|---|
| 675 | }
|
|---|
| 676 | return true;
|
|---|
| 677 | }
|
|---|
| 678 | }
|
|---|
| 679 |
|
|---|
| 680 | if(expression[0]==1 )
|
|---|
| 681 | {
|
|---|
| 682 | if( expression[1]==ESC_NEW ){
|
|---|
| 683 | //New演算子(オブジェクト生成)
|
|---|
| 684 |
|
|---|
| 685 | if( !Operator_New( expression+2, baseType, resultType ) ){
|
|---|
| 686 | return false;
|
|---|
| 687 | }
|
|---|
| 688 |
|
|---|
| 689 | return true;
|
|---|
| 690 | }
|
|---|
| 691 | else if( expression[1] == ESC_SYSTEM_STATIC_NEW )
|
|---|
| 692 | {
|
|---|
| 693 | // 静的領域にオブジェクトを作る
|
|---|
| 694 |
|
|---|
| 695 | // 静的領域にオブジェクトを生成
|
|---|
| 696 | int dataTableOffset;
|
|---|
| 697 | if( !compiler.GetObjectModule().dataTable.MakeConstObjectToProcessStaticBuffer( expression + 2, resultType, dataTableOffset ) )
|
|---|
| 698 | {
|
|---|
| 699 | return false;
|
|---|
| 700 | }
|
|---|
| 701 |
|
|---|
| 702 | // push value
|
|---|
| 703 | compiler.codeGenerator.op_push_V( dataTableOffset, Schedule::DataTable );
|
|---|
| 704 |
|
|---|
| 705 | return true;
|
|---|
| 706 | }
|
|---|
| 707 | }
|
|---|
| 708 |
|
|---|
| 709 |
|
|---|
| 710 | /////////////////////////////////
|
|---|
| 711 | // 式要素を逆ポーランド式で取得
|
|---|
| 712 | /////////////////////////////////
|
|---|
| 713 |
|
|---|
| 714 | char *values[255];
|
|---|
| 715 | long calc[255];
|
|---|
| 716 | long stack[255];
|
|---|
| 717 | int pnum;
|
|---|
| 718 | if(!GetNumOpeElements(expression,&pnum,values,calc,stack)){
|
|---|
| 719 | for(i=0;i<pnum;i++){
|
|---|
| 720 | if(values[i]) HeapDefaultFree(values[i]);
|
|---|
| 721 | }
|
|---|
| 722 | return false;
|
|---|
| 723 | }
|
|---|
| 724 |
|
|---|
| 725 |
|
|---|
| 726 | BOOL bError;
|
|---|
| 727 | bError=0;
|
|---|
| 728 |
|
|---|
| 729 | //リテラル値のみの計算かどうかを判別するためのフラグ
|
|---|
| 730 | BOOL bLiteralCalculation=1;
|
|---|
| 731 |
|
|---|
| 732 | double dbl;
|
|---|
| 733 | int sp;
|
|---|
| 734 | int type_stack[255];
|
|---|
| 735 | bool isNothing_stack[255];
|
|---|
| 736 | LONG_PTR index_stack[255];
|
|---|
| 737 | BOOL bUseHeap[255];
|
|---|
| 738 | _int64 i64data;
|
|---|
| 739 | for(i=0,sp=0;i<pnum;i++){
|
|---|
| 740 | int idCalc;
|
|---|
| 741 | idCalc=calc[i]%100;
|
|---|
| 742 |
|
|---|
| 743 | if(idCalc){
|
|---|
| 744 | if(type_stack[sp-2]==DEF_OBJECT){
|
|---|
| 745 | if( idCalc == CALC_AS
|
|---|
| 746 | && type_stack[sp-1] == ( DEF_OBJECT | FLAG_CAST )
|
|---|
| 747 | && index_stack[sp-1] == index_stack[sp-2]
|
|---|
| 748 | || isNothing_stack[sp-2] ){
|
|---|
| 749 | // 同一の型、またはNothingに対するAsはAs演算子を呼び出さない
|
|---|
| 750 | }
|
|---|
| 751 | else if( idCalc == CALC_AS
|
|---|
| 752 | && type_stack[sp-1] == ( DEF_OBJECT | FLAG_CAST )
|
|---|
| 753 | && ( ((CClass *)index_stack[sp-1])->IsEqualsOrSubClass( (CClass *)index_stack[sp-2] ) || ((CClass *)index_stack[sp-2])->IsEqualsOrSubClass( (CClass *)index_stack[sp-1] )
|
|---|
| 754 | )){
|
|---|
| 755 | // ダウンキャストを許可する
|
|---|
| 756 | }
|
|---|
| 757 | else{
|
|---|
| 758 | //オーバーロードされたオペレータを呼び出す
|
|---|
| 759 | i2=CallOperatorProc(idCalc,baseType,type_stack,index_stack,bUseHeap,sp);
|
|---|
| 760 | if(i2==0){
|
|---|
| 761 | if(idCalc==CALC_EQUAL) lstrcpy(temp2,"==");
|
|---|
| 762 | else GetCalcName(idCalc,temp2);
|
|---|
| 763 | sprintf(temporary,"Operator %s",temp2);
|
|---|
| 764 | SetError(27,temporary,cp);
|
|---|
| 765 | goto error;
|
|---|
| 766 | }
|
|---|
| 767 | else if(i2==-1) goto error;
|
|---|
| 768 |
|
|---|
| 769 | continue;
|
|---|
| 770 | }
|
|---|
| 771 | }
|
|---|
| 772 |
|
|---|
| 773 | if(!CheckCalcType(idCalc,type_stack,sp)) goto error;
|
|---|
| 774 | }
|
|---|
| 775 |
|
|---|
| 776 | switch(idCalc){
|
|---|
| 777 | //数値
|
|---|
| 778 | case 0:
|
|---|
| 779 | index_stack[sp]=-1;
|
|---|
| 780 | isNothing_stack[sp] = false;
|
|---|
| 781 | bUseHeap[sp]=0;
|
|---|
| 782 |
|
|---|
| 783 | char *term;
|
|---|
| 784 | term=values[i];
|
|---|
| 785 |
|
|---|
| 786 | if( calc[i+1]%100 == CALC_AS ){
|
|---|
| 787 | // As演算子の右辺値
|
|---|
| 788 | //型名
|
|---|
| 789 | if( compiler.StringToType( term, resultType ) ){
|
|---|
| 790 | resultType.SetBasicType( resultType.GetBasicType() | FLAG_CAST );
|
|---|
| 791 | }
|
|---|
| 792 | else{
|
|---|
| 793 | SetError(3, term, cp );
|
|---|
| 794 | goto error;
|
|---|
| 795 | }
|
|---|
| 796 |
|
|---|
| 797 | type_stack[sp] = resultType.GetBasicType();
|
|---|
| 798 | index_stack[sp] = resultType.GetIndex();
|
|---|
| 799 | sp++;
|
|---|
| 800 |
|
|---|
| 801 | break;
|
|---|
| 802 | }
|
|---|
| 803 |
|
|---|
| 804 | if( (term[0]=='e'||term[0]=='E')
|
|---|
| 805 | && (term[1]=='x'||term[1]=='X')
|
|---|
| 806 | && term[2]=='\"'
|
|---|
| 807 | || term[0] == '\"' )
|
|---|
| 808 | {
|
|---|
| 809 | bool isEx = true;
|
|---|
| 810 | if( term[0] == '\"' )
|
|---|
| 811 | {
|
|---|
| 812 | isEx = false;
|
|---|
| 813 | }
|
|---|
| 814 |
|
|---|
| 815 | if( isEx )
|
|---|
| 816 | {
|
|---|
| 817 | // 拡張版リテラル文字列(エスケープシーケンス可能)
|
|---|
| 818 | if(!RemoveStringQuotes(term+2)){
|
|---|
| 819 | SetError(43,NULL,cp);
|
|---|
| 820 | goto error;
|
|---|
| 821 | }
|
|---|
| 822 | i3=FormatString_EscapeSequence(term+2);
|
|---|
| 823 | term+=2;
|
|---|
| 824 | }
|
|---|
| 825 | else
|
|---|
| 826 | {
|
|---|
| 827 | // 通常文字列
|
|---|
| 828 | if(!RemoveStringQuotes(term)){
|
|---|
| 829 | SetError(43,NULL,cp);
|
|---|
| 830 | goto error;
|
|---|
| 831 | }
|
|---|
| 832 | i3=lstrlen(term);
|
|---|
| 833 | }
|
|---|
| 834 |
|
|---|
| 835 | if( !baseType.IsPointer() )
|
|---|
| 836 | {
|
|---|
| 837 | //要求タイプがオブジェクト、または未定のとき
|
|---|
| 838 |
|
|---|
| 839 | //String型オブジェクトを生成
|
|---|
| 840 | i2 = compiler.GetObjectModule().dataTable.MakeConstStringObjectToProcessStaticBuffer( term );
|
|---|
| 841 |
|
|---|
| 842 | // push value
|
|---|
| 843 | compiler.codeGenerator.op_push_V( i2, Schedule::DataTable );
|
|---|
| 844 |
|
|---|
| 845 | type_stack[sp]=DEF_OBJECT;
|
|---|
| 846 | index_stack[sp]=(LONG_PTR)compiler.GetObjectModule().meta.GetClasses().GetStringClassPtr();
|
|---|
| 847 | bLiteralCalculation=0;
|
|---|
| 848 |
|
|---|
| 849 | sp++;
|
|---|
| 850 | break;
|
|---|
| 851 | }
|
|---|
| 852 | StrLiteral:
|
|---|
| 853 | type_stack[sp]=typeOfPtrChar;
|
|---|
| 854 | bLiteralCalculation=0;
|
|---|
| 855 |
|
|---|
| 856 | i2=compiler.GetObjectModule().dataTable.AddString(term,i3);
|
|---|
| 857 |
|
|---|
| 858 | //push DataSize
|
|---|
| 859 | compiler.codeGenerator.op_push_V( i2, Schedule::DataTable );
|
|---|
| 860 | }
|
|---|
| 861 | else if(IsVariableTopChar(term[0])||
|
|---|
| 862 | term[0]=='*'||
|
|---|
| 863 | (term[0]=='.'&&IsVariableTopChar(term[1]))){
|
|---|
| 864 | //////////////////
|
|---|
| 865 | // 何らかの識別子
|
|---|
| 866 |
|
|---|
| 867 | bool isLiteral;
|
|---|
| 868 | if( TermOpe( term, baseType, resultType, isLiteral, &bUseHeap[sp] ) ){
|
|---|
| 869 | if(resultType.IsNull()){
|
|---|
| 870 | //戻り値が存在しないとき
|
|---|
| 871 | for(i2=0;;i2++){
|
|---|
| 872 | if(term[i2]=='('||term[i2]=='\0'){
|
|---|
| 873 | term[i2]=0;
|
|---|
| 874 | break;
|
|---|
| 875 | }
|
|---|
| 876 | }
|
|---|
| 877 | SetError(38,term,cp);
|
|---|
| 878 |
|
|---|
| 879 | goto error;
|
|---|
| 880 | }
|
|---|
| 881 |
|
|---|
| 882 | type_stack[sp] = resultType.GetBasicType();
|
|---|
| 883 | index_stack[sp] = resultType.GetIndex();
|
|---|
| 884 |
|
|---|
| 885 | if( !isLiteral ){
|
|---|
| 886 | bLiteralCalculation=0;
|
|---|
| 887 | }
|
|---|
| 888 |
|
|---|
| 889 | if( resultType.GetBasicType() & FLAG_CAST ){
|
|---|
| 890 | // 型名のみ
|
|---|
| 891 | SetError();
|
|---|
| 892 | }
|
|---|
| 893 | else{
|
|---|
| 894 | if( resultType.IsReal() ){
|
|---|
| 895 | //sub esp,size
|
|---|
| 896 | //fstp ptr[esp]
|
|---|
| 897 | compiler.codeGenerator.op_fstp_push( resultType );
|
|---|
| 898 | }
|
|---|
| 899 | else{
|
|---|
| 900 | if( resultType.Is64() ){
|
|---|
| 901 | //push edx
|
|---|
| 902 | compiler.codeGenerator.op_push( REG_EDX );
|
|---|
| 903 | }
|
|---|
| 904 | else{
|
|---|
| 905 | ExtendTypeTo32( resultType.GetBasicType(), REG_EAX );
|
|---|
| 906 | }
|
|---|
| 907 |
|
|---|
| 908 | //push eax
|
|---|
| 909 | compiler.codeGenerator.op_push( REG_EAX );
|
|---|
| 910 | }
|
|---|
| 911 | }
|
|---|
| 912 |
|
|---|
| 913 | sp++;
|
|---|
| 914 | break;
|
|---|
| 915 | }
|
|---|
| 916 |
|
|---|
| 917 |
|
|---|
| 918 | // Nothing
|
|---|
| 919 | if( lstrcmp( term, "Nothing" ) == 0 ){
|
|---|
| 920 | isNothing_stack[sp] = true;
|
|---|
| 921 |
|
|---|
| 922 | type_stack[sp] = DEF_OBJECT;
|
|---|
| 923 | if( baseType.IsObject() ){
|
|---|
| 924 | index_stack[sp] = baseType.GetIndex();
|
|---|
| 925 | }
|
|---|
| 926 | else{
|
|---|
| 927 | index_stack[sp] = (LONG_PTR)compiler.GetObjectModule().meta.GetClasses().GetObjectClassPtr();
|
|---|
| 928 | }
|
|---|
| 929 |
|
|---|
| 930 | bLiteralCalculation = 0;
|
|---|
| 931 |
|
|---|
| 932 | //push 0
|
|---|
| 933 | compiler.codeGenerator.op_push_V( 0 );
|
|---|
| 934 |
|
|---|
| 935 | sp++;
|
|---|
| 936 | break;
|
|---|
| 937 | }
|
|---|
| 938 |
|
|---|
| 939 |
|
|---|
| 940 | //////////////
|
|---|
| 941 | // 定数の場合
|
|---|
| 942 | //////////////
|
|---|
| 943 |
|
|---|
| 944 | i3 = compiler.GetObjectModule().meta.GetGlobalConsts().GetBasicType(term);
|
|---|
| 945 | if(i3){
|
|---|
| 946 | if( compiler.GetObjectModule().meta.GetGlobalConsts().IsStringPtr( term ) ){
|
|---|
| 947 | //リテラル文字列
|
|---|
| 948 |
|
|---|
| 949 | if( baseType.IsObject() || baseType.IsNull() )
|
|---|
| 950 | {
|
|---|
| 951 | //要求タイプがオブジェクト、または未定のとき
|
|---|
| 952 |
|
|---|
| 953 | //String型オブジェクトを生成
|
|---|
| 954 | NewStringObject(term);
|
|---|
| 955 |
|
|---|
| 956 | type_stack[sp]=DEF_OBJECT;
|
|---|
| 957 | index_stack[sp]=(LONG_PTR)compiler.GetObjectModule().meta.GetClasses().GetStringClassPtr();
|
|---|
| 958 | bLiteralCalculation=0;
|
|---|
| 959 |
|
|---|
| 960 | sp++;
|
|---|
| 961 | break;
|
|---|
| 962 | }
|
|---|
| 963 |
|
|---|
| 964 | double dbl = compiler.GetObjectModule().meta.GetGlobalConsts().GetDoubleData(term);
|
|---|
| 965 | memcpy(&i64data,&dbl,sizeof(double));
|
|---|
| 966 |
|
|---|
| 967 | //バイト数
|
|---|
| 968 | i3=lstrlen((char *)i64data);
|
|---|
| 969 |
|
|---|
| 970 | memcpy(term,(char *)i64data,i3);
|
|---|
| 971 | term[i3]=0;
|
|---|
| 972 | goto StrLiteral;
|
|---|
| 973 | }
|
|---|
| 974 |
|
|---|
| 975 | type_stack[sp]=i3;
|
|---|
| 976 | if(IsRealNumberType(i3)){
|
|---|
| 977 | //実数
|
|---|
| 978 | double dbl = compiler.GetObjectModule().meta.GetGlobalConsts().GetDoubleData(term);
|
|---|
| 979 | memcpy(&i64data,&dbl,sizeof(double));
|
|---|
| 980 | goto Literal;
|
|---|
| 981 | }
|
|---|
| 982 | else if(IsWholeNumberType(i3)){
|
|---|
| 983 | //整数
|
|---|
| 984 | i64data = compiler.GetObjectModule().meta.GetGlobalConsts().GetWholeData(term);
|
|---|
| 985 | goto Literal;
|
|---|
| 986 | }
|
|---|
| 987 | else{
|
|---|
| 988 | SetError(300,NULL,cp);
|
|---|
| 989 | goto error;
|
|---|
| 990 | }
|
|---|
| 991 | }
|
|---|
| 992 |
|
|---|
| 993 |
|
|---|
| 994 | //該当する識別子が見当たらないときはエラー扱いにする
|
|---|
| 995 | bError=1;
|
|---|
| 996 | SetError(3,term,cp);
|
|---|
| 997 | type_stack[sp]=DEF_DOUBLE;
|
|---|
| 998 | }
|
|---|
| 999 | else{
|
|---|
| 1000 | //リテラル値
|
|---|
| 1001 | type_stack[sp]=GetLiteralValue(term,&i64data,baseType.GetBasicType());
|
|---|
| 1002 | Literal:
|
|---|
| 1003 | if(type_stack[sp]==DEF_INT64||
|
|---|
| 1004 | type_stack[sp]==DEF_QWORD||
|
|---|
| 1005 | type_stack[sp]==DEF_DOUBLE){
|
|---|
| 1006 | //64ビット(符号有り整数/実数)
|
|---|
| 1007 |
|
|---|
| 1008 | //push HILONG(dbl)
|
|---|
| 1009 | compiler.codeGenerator.op_push_V((long)*(long *)(((char *)(&i64data))+4));
|
|---|
| 1010 |
|
|---|
| 1011 | //push LOLONG(dbl)
|
|---|
| 1012 | compiler.codeGenerator.op_push_V(*(long *)(&i64data));
|
|---|
| 1013 | }
|
|---|
| 1014 | else if(type_stack[sp]==DEF_SINGLE){
|
|---|
| 1015 | //single実数
|
|---|
| 1016 |
|
|---|
| 1017 | float flt;
|
|---|
| 1018 | memcpy(&dbl,&i64data,sizeof(double));
|
|---|
| 1019 | flt=(float)dbl;
|
|---|
| 1020 | memcpy(&i3,&flt,sizeof(long));
|
|---|
| 1021 |
|
|---|
| 1022 | //push term
|
|---|
| 1023 | compiler.codeGenerator.op_push_V(i3);
|
|---|
| 1024 | }
|
|---|
| 1025 | else{
|
|---|
| 1026 | //その他
|
|---|
| 1027 |
|
|---|
| 1028 | //push term
|
|---|
| 1029 | compiler.codeGenerator.op_push_V((long)i64data);
|
|---|
| 1030 |
|
|---|
| 1031 | if((long)i64data==0) index_stack[sp]=LITERAL_NULL;
|
|---|
| 1032 | }
|
|---|
| 1033 |
|
|---|
| 1034 |
|
|---|
| 1035 | //リテラル値の種類
|
|---|
| 1036 | if(Is64Type(type_stack[sp])==0&&IsRealNumberType(type_stack[sp])==0){
|
|---|
| 1037 | //整数(符号有り/無し)
|
|---|
| 1038 |
|
|---|
| 1039 | index_stack[sp]=GetLiteralIndex(i64data);
|
|---|
| 1040 | }
|
|---|
| 1041 | }
|
|---|
| 1042 | sp++;
|
|---|
| 1043 | break;
|
|---|
| 1044 |
|
|---|
| 1045 | //論理演算子
|
|---|
| 1046 | case CALC_XOR:
|
|---|
| 1047 | //value[sp-2] xor= value[sp-1]
|
|---|
| 1048 | //xor演算
|
|---|
| 1049 | if(!Calc_Xor(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1050 | break;
|
|---|
| 1051 | case CALC_OR:
|
|---|
| 1052 | //value[sp-2] or= value[sp-1]
|
|---|
| 1053 | //or演算
|
|---|
| 1054 | if(!Calc_Or(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1055 | break;
|
|---|
| 1056 | case CALC_AND:
|
|---|
| 1057 | //value[sp-2] and= value[sp-1]
|
|---|
| 1058 | //and演算
|
|---|
| 1059 | if(!Calc_And(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1060 | break;
|
|---|
| 1061 | case CALC_NOT:
|
|---|
| 1062 | //value[sp-1]=Not value[sp-1]
|
|---|
| 1063 | //NOT演算子
|
|---|
| 1064 | if(!Calc_Not(type_stack,sp)) goto error;
|
|---|
| 1065 | break;
|
|---|
| 1066 |
|
|---|
| 1067 | //比較演算子
|
|---|
| 1068 | case CALC_PE:
|
|---|
| 1069 | //value[sp-2]<=value[sp-1]
|
|---|
| 1070 | if(!Calc_Relation_PE(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1071 | break;
|
|---|
| 1072 | case CALC_QE:
|
|---|
| 1073 | //value[sp-2]>=value[sp-1]
|
|---|
| 1074 | if(!Calc_Relation_QE(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1075 | break;
|
|---|
| 1076 | case CALC_P:
|
|---|
| 1077 | //value[sp-2]<value[sp-1]
|
|---|
| 1078 | if(!Calc_Relation_P(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1079 | break;
|
|---|
| 1080 | case CALC_Q:
|
|---|
| 1081 | //value[sp-2]>value[sp-1]
|
|---|
| 1082 | if(!Calc_Relation_Q(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1083 | break;
|
|---|
| 1084 | case CALC_NOTEQUAL:
|
|---|
| 1085 | //value[sp-2]<>value[sp-1]
|
|---|
| 1086 | if(!Calc_Relation_NotEqual(type_stack,&sp)) goto error;
|
|---|
| 1087 | break;
|
|---|
| 1088 | case CALC_EQUAL:
|
|---|
| 1089 | //value[sp-2]=value[sp-1]
|
|---|
| 1090 | if(!Calc_Relation_Equal(type_stack,&sp)) goto error;
|
|---|
| 1091 | break;
|
|---|
| 1092 |
|
|---|
| 1093 | //ビットシフト
|
|---|
| 1094 | case CALC_SHL:
|
|---|
| 1095 | //value[sp-2]=value[sp-2]<<value[sp-1]
|
|---|
| 1096 | if(!Calc_SHL(type_stack,&sp)) goto error;
|
|---|
| 1097 | break;
|
|---|
| 1098 | case CALC_SHR:
|
|---|
| 1099 | //value[sp-2]=value[sp-2]>>value[sp-1]
|
|---|
| 1100 | if(!Calc_SHR(type_stack,&sp)) goto error;
|
|---|
| 1101 | break;
|
|---|
| 1102 |
|
|---|
| 1103 | //算術演算
|
|---|
| 1104 | case CALC_ADDITION:
|
|---|
| 1105 | case CALC_SUBTRACTION:
|
|---|
| 1106 | case CALC_PRODUCT:
|
|---|
| 1107 | if(!CalcTwoTerm_Arithmetic(idCalc,type_stack,index_stack,&sp)) goto error;
|
|---|
| 1108 | break;
|
|---|
| 1109 |
|
|---|
| 1110 | case CALC_MOD:
|
|---|
| 1111 | //value[sp-2]%=value[sp-1]
|
|---|
| 1112 | //剰余演算
|
|---|
| 1113 | if(!Calc_Mod(type_stack,&sp)) goto error;
|
|---|
| 1114 | break;
|
|---|
| 1115 | case CALC_QUOTIENT:
|
|---|
| 1116 | //value[sp-2]/=value[sp-1];
|
|---|
| 1117 | //除算
|
|---|
| 1118 | if(!Calc_Divide(type_stack,&sp,baseType.GetBasicType())) goto error;
|
|---|
| 1119 | break;
|
|---|
| 1120 | case CALC_INTQUOTIENT:
|
|---|
| 1121 | //value[sp-2]/=value[sp-1]
|
|---|
| 1122 | //整数除算
|
|---|
| 1123 | if(!Calc_IntDivide(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1124 | break;
|
|---|
| 1125 | case CALC_MINUSMARK:
|
|---|
| 1126 | //value[sp-1]=-value[sp-1]
|
|---|
| 1127 | //符号反転
|
|---|
| 1128 | if(!Calc_MinusMark(type_stack,sp)) goto error;
|
|---|
| 1129 | index_stack[sp-1]=-1;
|
|---|
| 1130 | break;
|
|---|
| 1131 | case CALC_POWER:
|
|---|
| 1132 | //べき乗演算(浮動小数点演算のみ)
|
|---|
| 1133 | if(!Calc_Power(type_stack,&sp)) goto error;
|
|---|
| 1134 | break;
|
|---|
| 1135 | case CALC_AS:
|
|---|
| 1136 | //キャスト
|
|---|
| 1137 | if(!Calc_Cast(type_stack,index_stack,&sp)) goto error;
|
|---|
| 1138 | break;
|
|---|
| 1139 |
|
|---|
| 1140 | case CALC_BYVAL:
|
|---|
| 1141 | //ポインタ型→参照型
|
|---|
| 1142 | if( PTR_LEVEL( type_stack[sp-1] ) <= 0 ){
|
|---|
| 1143 | //ポインタ型ではないとき
|
|---|
| 1144 | SetError( 3, NULL, cp );
|
|---|
| 1145 | goto error;
|
|---|
| 1146 | }
|
|---|
| 1147 |
|
|---|
| 1148 | type_stack[sp-1] = PTR_LEVEL_DOWN( type_stack[sp-1] );
|
|---|
| 1149 |
|
|---|
| 1150 | break;
|
|---|
| 1151 |
|
|---|
| 1152 | default:
|
|---|
| 1153 | SetError(300,NULL,cp);
|
|---|
| 1154 | goto error;
|
|---|
| 1155 | }
|
|---|
| 1156 | }
|
|---|
| 1157 |
|
|---|
| 1158 | if(bError) goto error;
|
|---|
| 1159 |
|
|---|
| 1160 | if(sp!=1){
|
|---|
| 1161 | SetError(1,NULL,cp);
|
|---|
| 1162 | goto error;
|
|---|
| 1163 | }
|
|---|
| 1164 |
|
|---|
| 1165 | if(bLiteralCalculation){
|
|---|
| 1166 | //右辺値が数値の定数式の場合
|
|---|
| 1167 | SetError();
|
|---|
| 1168 | }
|
|---|
| 1169 | else{
|
|---|
| 1170 | //右辺値が数値の定数式ではないとき
|
|---|
| 1171 | if(IS_LITERAL(index_stack[0])) index_stack[0]=-1;
|
|---|
| 1172 | }
|
|---|
| 1173 |
|
|---|
| 1174 | if(pbUseHeap) *pbUseHeap=bUseHeap[0];
|
|---|
| 1175 |
|
|---|
| 1176 | resultType.SetType( type_stack[0], index_stack[0] );
|
|---|
| 1177 |
|
|---|
| 1178 | bool isSuccessful = true;
|
|---|
| 1179 | goto finish;
|
|---|
| 1180 |
|
|---|
| 1181 |
|
|---|
| 1182 | error:
|
|---|
| 1183 | isSuccessful = false;
|
|---|
| 1184 | goto finish;
|
|---|
| 1185 |
|
|---|
| 1186 |
|
|---|
| 1187 | finish:
|
|---|
| 1188 |
|
|---|
| 1189 | for(i=0;i<pnum;i++){
|
|---|
| 1190 | if(values[i]) HeapDefaultFree(values[i]);
|
|---|
| 1191 | }
|
|---|
| 1192 |
|
|---|
| 1193 | // 強制終了を防ぐためのダミー(原因不明)
|
|---|
| 1194 | if( lstrcmp( expression, "-1/t" ) == 0 )
|
|---|
| 1195 | {
|
|---|
| 1196 | }
|
|---|
| 1197 |
|
|---|
| 1198 | return isSuccessful;
|
|---|
| 1199 | }
|
|---|