Changeset 551 in dev for trunk/ab5.0/abdev/compiler_x86/x86CodeGenerator.cpp
- Timestamp:
- May 5, 2008, 12:39:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/x86CodeGenerator.cpp
r465 r551 82 82 } 83 83 84 pNativeCode->PutEx( disp, scheduleType );84 this->PutWithSchedule( disp, scheduleType ); 85 85 } 86 86 … … 139 139 pPertialSchedule = pertialSchedules.back(); 140 140 } 141 pNativeCode->PutEx( offset, offsetScheduleType );141 this->PutWithSchedule( offset, offsetScheduleType ); 142 142 143 143 pNativeCode->Put( (char)value ); … … 154 154 pPertialSchedule = pertialSchedules.back(); 155 155 } 156 pNativeCode->PutEx( offset, offsetScheduleType );156 this->PutWithSchedule( offset, offsetScheduleType ); 157 157 158 158 pNativeCode->Put( (short)value ); … … 168 168 pPertialSchedule = pertialSchedules.back(); 169 169 } 170 pNativeCode->PutEx( offset, offsetScheduleType );171 172 pNativeCode->PutEx( value, valueScheduleType );170 this->PutWithSchedule( offset, offsetScheduleType ); 171 172 this->PutWithSchedule( value, valueScheduleType ); 173 173 } 174 174 … … 188 188 pPertialSchedule = pertialSchedules.back(); 189 189 } 190 pNativeCode->PutEx( offset, scheduleType );190 this->PutWithSchedule( offset, scheduleType ); 191 191 192 192 return pPertialSchedule; … … 253 253 pPertialSchedule = pertialSchedules.back(); 254 254 } 255 pNativeCode->PutEx( offset, scheduleType );255 this->PutWithSchedule( offset, scheduleType ); 256 256 } 257 257 else{ … … 320 320 pPertialSchedule = pertialSchedules.back(); 321 321 } 322 pNativeCode->PutEx( offset, scheduleType );322 this->PutWithSchedule( offset, scheduleType ); 323 323 } 324 324 else{ … … 476 476 pPertialSchedule = pertialSchedules.back(); 477 477 } 478 pNativeCode->PutEx( offset, scheduleType );478 this->PutWithSchedule( offset, scheduleType ); 479 479 480 480 return pPertialSchedule; … … 785 785 //push 32ビット値 786 786 pNativeCode->Put( (char)0x68 ); 787 pNativeCode->PutEx( data, scheduleType );787 this->PutWithSchedule( data, scheduleType ); 788 788 } 789 789 } … … 1010 1010 pPertialSchedule = pertialSchedules.back(); 1011 1011 } 1012 pNativeCode->PutEx( offset, scheduleType );1012 this->PutWithSchedule( offset, scheduleType ); 1013 1013 1014 1014 return pPertialSchedule; … … 1047 1047 pPertialSchedule = pertialSchedules.back(); 1048 1048 } 1049 pNativeCode->PutEx( offset, scheduleType );1049 this->PutWithSchedule( offset, scheduleType ); 1050 1050 } 1051 1051 else{ … … 1107 1107 pPertialSchedule = pertialSchedules.back(); 1108 1108 } 1109 pNativeCode->PutEx( offset, scheduleType );1109 this->PutWithSchedule( offset, scheduleType ); 1110 1110 1111 1111 return pPertialSchedule; … … 1144 1144 pPertialSchedule = pertialSchedules.back(); 1145 1145 } 1146 pNativeCode->PutEx( offset, scheduleType );1146 this->PutWithSchedule( offset, scheduleType ); 1147 1147 } 1148 1148 else{
Note:
See TracChangeset
for help on using the changeset viewer.