| 3263 | } |
| 3264 | |
| 3265 | int AddInstrDFdy(ILOperand *op, RefPtr<ILType> typeIL, int ID) |
| 3266 | { |
| 3267 | int typeID = DefineType(typeIL); |
| 3268 | ++CurrentID; |
| 3269 | CodeGen.OpDPdy(CurrentID, typeID, ID); |
| 3270 | IDInfos[CurrentID] = IDInfo::CreateIDInfoForValue( |
| 3271 | CurrentID, |
| 3272 | typeIL, |
| 3273 | op, |
| 3274 | typeID |
| 3275 | ); |
| 3276 | UpdateValue(op, CurrentID); |
| 3277 | return CurrentID; |
| 3278 | } |
| 3279 | |
| 3280 | int AddInstrFwidth(ILOperand *op, RefPtr<ILType> typeIL, int ID) |
| 3281 | { |