| 2951 | } |
| 2952 | |
| 2953 | int AddInstrBinaryInstr(ILOperand *op, RefPtr<ILType> instrType, const String &opStr, int ID0, int ID1) |
| 2954 | { |
| 2955 | int instrTypeID = DefineType(instrType); |
| 2956 | CurrentID++; |
| 2957 | CodeGen.OpBinaryInstr(CurrentID, opStr, instrTypeID, ID0, ID1); |
| 2958 | IDInfos[CurrentID] = IDInfo::CreateIDInfoForValue(CurrentID, instrType, op, instrTypeID); |
| 2959 | UpdateValue(op, CurrentID); |
| 2960 | return CurrentID; |
| 2961 | } |
| 2962 | |
| 2963 | int AddInstrMulAdd(int operandID, float mul, float add) |
| 2964 | { |
no test coverage detected