| 2411 | } |
| 2412 | |
| 2413 | int AddInstrExtInst(ILOperand* op, RefPtr<ILType> Type, int instrNumber, List<int> Arguments) |
| 2414 | { |
| 2415 | int typeID = DefineType(Type); |
| 2416 | ++CurrentID; |
| 2417 | CodeGen.OpExtInst(CurrentID, typeID, instrNumber, Arguments); |
| 2418 | IDInfos[CurrentID] = IDInfo::CreateIDInfoForValue(CurrentID, Type, op, typeID); |
| 2419 | UpdateValue(op, CurrentID); |
| 2420 | return CurrentID; |
| 2421 | } |
| 2422 | |
| 2423 | void AddInstrStore(ILOperand *op, int op0, int op1) { |
| 2424 | CodeGen.OpStore(op0, op1); |
no test coverage detected