Changeset 224 in dev for trunk/abdev/BasicCompiler64/NumOpe.cpp
- Timestamp:
- Jul 21, 2007, 4:46:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/NumOpe.cpp
r206 r224 600 600 } 601 601 602 i2 = compiler.Get NativeCode().GetDataTable().AddBinary( binary, num * tempBaseType.GetSize() );602 i2 = compiler.GetDataTable().AddBinary( binary, num * tempBaseType.GetSize() ); 603 603 604 604 //mov reg,i2 … … 793 793 bLiteralCalculation=0; 794 794 795 i2 = compiler.Get NativeCode().GetDataTable().AddString( term, i3 );795 i2 = compiler.GetDataTable().AddString( term, i3 ); 796 796 797 797 //mov reg,i2 … … 978 978 } 979 979 else{ 980 i3 = compiler.Get NativeCode().GetDataTable().Add( i64data );980 i3 = compiler.GetDataTable().Add( i64data ); 981 981 982 982 //movlpd xmm_reg,qword ptr[data table offset] … … 1007 1007 } 1008 1008 else{ 1009 i3=compiler.Get NativeCode().GetDataTable().Add( i32data );1009 i3=compiler.GetDataTable().Add( i32data ); 1010 1010 1011 1011 //movss xmm_reg,dword ptr[data table offset] … … 1146 1146 1147 1147 if(resultType.IsDouble()){ 1148 i3 = compiler.Get NativeCode().GetDataTable().Add( i64data );1148 i3 = compiler.GetDataTable().Add( i64data ); 1149 1149 1150 1150 //movlpd xmm_reg,qword ptr[data table offset] … … 1166 1166 memcpy(&i32data,&flt,sizeof(long)); 1167 1167 1168 i3 = compiler.Get NativeCode().GetDataTable().Add( i32data );1168 i3 = compiler.GetDataTable().Add( i32data ); 1169 1169 1170 1170 //movss xmm_reg,dword ptr[data table offset]
Note:
See TracChangeset
for help on using the changeset viewer.