Home | History | Annotate | Download | only in src

Lines Matching defs:Opcode

1745   // Takes the PNaCl bitcode binary operator Opcode, and the opcode type Ty,
1746 // and sets Op to the corresponding ICE binary opcode. Returns true if able
1748 bool convertBinopOpcode(unsigned Opcode, Ice::Type Ty,
1750 switch (Opcode) {
1754 StrBuf << "Binary opcode " << Opcode << "not understood for type " << Ty;
1910 /// Returns true iff the NaCl bitcode Opcode is a valid cast opcode for
1912 /// instruction cast opcode. Also generates an error message when this
1914 bool convertCastOpToIceOp(uint64_t Opcode, Ice::Type SourceType,
1918 switch (Opcode) {
1922 StrBuf << "Cast opcode " << Opcode << " not understood.\n";
2215 // BINOP: [opval, opval, opcode, [flags]]
2232 Ice::InstArithmetic::OpKind Opcode;
2233 if (!convertBinopOpcode(Values[2], Type1, Opcode)) {
2238 Func.get(), Opcode, getNextInstVar(Type1), Op1, Op2));