Changeset 261 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Aug 3, 2007, 11:53:50 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
r260 r261 403 403 404 404 //ラベル管理オブジェクトを初期化 405 extern Labels labels; 406 labels.clear(); 405 compiler.codeGenerator.gotoLabels.clear(); 407 406 408 407 //Gotoラベルスケジュール -
trunk/abdev/BasicCompiler32/Compile_Statement.cpp
r260 r261 279 279 280 280 int GetLabelAddress(char *LabelName,int LineNum){ 281 extern Labels labels;282 283 281 if(LabelName){ 284 BOOST_FOREACH( const Label &label, labels )282 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 285 283 { 286 284 if( label.name.size() > 0 ) … … 294 292 } 295 293 else{ 296 BOOST_FOREACH( const Label &label, labels )294 BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels ) 297 295 { 298 296 if( label.name.size() == 0 ) -
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r260 r261 418 418 419 419 //ラベル管理オブジェクトを初期化 420 extern Labels labels; 421 labels.clear(); 420 compiler.codeGenerator.gotoLabels.clear(); 422 421 423 422 //Gotoラベルスケジュール -
trunk/abdev/BasicCompiler32/Opcode.h
r260 r261 19 19 #define breakpoint compiler.codeGenerator.PutOld( (char)0xCC ); 20 20 21 22 //ラベルアドレス23 class Label24 {25 public:26 std::string name;27 int line;28 DWORD address;29 30 Label( const std::string &name, long nativeCodePos )31 : name( name )32 , line( -1 )33 , address( nativeCodePos )34 {35 }36 Label( int line, long nativeCodePos )37 : name( "" )38 , line( line )39 , address( nativeCodePos )40 {41 }42 };43 typedef std::vector<Label> Labels;44 21 45 22 //プロシージャの種類
Note:
See TracChangeset
for help on using the changeset viewer.