Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:Opcode

398   bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
6220 const unsigned Opcode = Inst.getOpcode();
6221 switch (Opcode) {
6244 if (Opcode == ARM::LDRD_PRE || Opcode == ARM::LDRD_POST) {
6407 if (Opcode == ARM::t2LDMIA_UPD || Opcode == ARM::t2LDMDB_UPD) {
6568 default: llvm_unreachable("unexpected opcode!");
6677 default: llvm_unreachable("unexpected opcode!");
6829 const unsigned Opcode =
6833 TmpInst.setOpcode(Opcode);
6847 const unsigned Opcode =
6851 TmpInst.setOpcode(Opcode);
8083 default: llvm_unreachable("unexpected opcode");
8119 default: llvm_unreachable("unexpected opcode!");
8153 default: llvm_unreachable("unexpected opcode!");
8185 default: llvm_unreachable("unexpected opcode!");
8210 default: llvm_unreachable("unexpected opcode!");
8565 default: llvm_unreachable("Illegal opcode!");
8612 default: llvm_unreachable("unexpected opcode!");
8680 default: llvm_unreachable("unexpected opcode");
8720 default: llvm_unreachable("unexpected opcode");
8808 bool ARMAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
9749 /// ::= .inst opcode [, ...]
9750 /// ::= .inst.n opcode [, ...]
9751 /// ::= .inst.w opcode [, ...]
9920 /// ::= .unwind_raw offset, opcode [, opcode...]
9962 Error(OpcodeLoc, "expected opcode expression");
9969 Error(OpcodeLoc, "opcode value must be a constant");
9974 const int64_t Opcode = OC->getValue();
9975 if (Opcode & ~0xff) {
9976 Error(OpcodeLoc, "invalid opcode");
9981 Opcodes.push_back(uint8_t(Opcode));