Changeset 225 in dev for trunk/abdev/BasicCompiler_Common/gc.cpp
- Timestamp:
- Jul 21, 2007, 11:47:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/gc.cpp
r223 r225 1 1 #include "stdafx.h" 2 2 3 #include "common.h"3 #include <Compiler.h> 4 4 5 5 #ifdef _AMD64_ … … 25 25 26 26 //mov rax,rsp 27 op_mov_RR(REG_RAX,REG_RSP);27 compiler.codeGenerator.op_mov_RR(REG_RAX,REG_RSP); 28 28 29 29 //mov ptr[offset],rax/eax 30 op_mov_MR(PTR_SIZE,REG_RAX,0,(int)RelativeVar.offset,MOD_DISP32);30 compiler.codeGenerator.op_mov_MR(PTR_SIZE,REG_RAX,0,(int)RelativeVar.offset,MOD_DISP32); 31 31 obp-=sizeof(long); 32 32 pobj_GlobalVarSchedule->add();
Note:
See TracChangeset
for help on using the changeset viewer.