Changeset 348 in dev for trunk/abdev/BasicCompiler64/Compile_Func.cpp
- Timestamp:
- Oct 12, 2007, 3:25:54 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Func.cpp
r345 r348 121 121 // ->func3 122 122 123 int vtblMasterListIndex, vtblIndex; 124 pobj_c->GetVtblMasterListIndexAndVtblIndex( &userProc, vtblMasterListIndex, vtblIndex ); 125 123 126 // vtblマスターリストのポインタを取得 124 127 //mov r11,qword ptr[rcx] … … 127 130 // vtblのポインタを取得 128 131 //mov r11,dword ptr[r11+vtblMasterListIndex] 129 int vtblMasterListIndex = pobj_c->GetVtblMasterListIndex( &userProc );130 132 compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_R11, REG_R11, vtblMasterListIndex, MOD_BASE_DISP32 ); 131 132 int vtblIndex = pobj_c->GetFuncNumInVtbl( &userProc );133 133 134 134 //mov rax,qword ptr[r11+func_index]
Note:
See TracChangeset
for help on using the changeset viewer.