Ignore:
Timestamp:
Oct 12, 2007, 3:25:54 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/Compile_Func.cpp

    r345 r348  
    121121        //                ->func3
    122122
     123        int vtblMasterListIndex, vtblIndex;
     124        pobj_c->GetVtblMasterListIndexAndVtblIndex( &userProc, vtblMasterListIndex, vtblIndex );
     125
    123126        // vtblマスターリストのポインタを取得
    124127        //mov r11,qword ptr[rcx]
     
    127130        // vtblのポインタを取得
    128131        //mov r11,dword ptr[r11+vtblMasterListIndex]
    129         int vtblMasterListIndex = pobj_c->GetVtblMasterListIndex( &userProc );
    130132        compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_R11, REG_R11, vtblMasterListIndex, MOD_BASE_DISP32 );
    131 
    132         int vtblIndex = pobj_c->GetFuncNumInVtbl( &userProc );
    133133
    134134        //mov rax,qword ptr[r11+func_index]
Note: See TracChangeset for help on using the changeset viewer.