Changeset 589 in dev for trunk/ab5.0/abdev/compiler_x64
- Timestamp:
- May 10, 2008, 3:37:40 PM (17 years ago)
- Location:
- trunk/ab5.0/abdev/compiler_x64
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x64/NumOpe.cpp
r587 r589 763 763 764 764 int dataTableOffset; 765 if( ! compiler.GetObjectModule().dataTable.MakeLiteralArrayBuffer(expression, baseType, dataTableOffset ) )765 if( !ActiveBasic::Compiler::DataTableGenerator::MakeLiteralArrayBuffer( compiler.GetObjectModule().dataTable, expression, baseType, dataTableOffset ) ) 766 766 { 767 767 return false; … … 866 866 // 静的領域にオブジェクトを生成 867 867 int dataTableOffset; 868 if( ! compiler.GetObjectModule().dataTable.MakeConstObjectToProcessStaticBuffer(expression + 2, resultType, dataTableOffset ) )868 if( !ActiveBasic::Compiler::DataTableGenerator::MakeConstObjectToProcessStaticBuffer( compiler.GetObjectModule().dataTable, expression + 2, resultType, dataTableOffset ) ) 869 869 { 870 870 return false; … … 1020 1020 1021 1021 //String型オブジェクトを生成 1022 i2 = compiler.GetObjectModule().dataTable.MakeConstStringObjectToProcessStaticBuffer(term );1022 i2 = ActiveBasic::Compiler::DataTableGenerator::MakeConstStringObjectToProcessStaticBuffer( compiler.GetObjectModule().dataTable, term ); 1023 1023 1024 1024 //mov reg,i2 -
trunk/ab5.0/abdev/compiler_x64/compiler_x64.vcproj
r584 r589 326 326 </File> 327 327 <File 328 RelativePath="..\BasicCompiler_Common\include\DataTableGenerator.h" 329 > 330 </File> 331 <File 328 332 RelativePath="..\BasicCompiler_Common\include\LexicalAnalyzer.h" 329 333 > … … 1224 1228 </File> 1225 1229 <File 1230 RelativePath="..\BasicCompiler_Common\src\DataTableGenerator.cpp" 1231 > 1232 </File> 1233 <File 1226 1234 RelativePath="..\BasicCompiler_Common\src\LexicalAnalyzer.cpp" 1227 1235 > -
trunk/ab5.0/abdev/compiler_x64/stdafx.h
r584 r589 73 73 #include <VtblGenerator.h> 74 74 #include <ProcedureGenerator.h> 75 #include <DataTableGenerator.h>
Note:
See TracChangeset
for help on using the changeset viewer.