Lines Matching refs:IDLoc

68   bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
87 bool processInstruction(MCInst &Inst, SMLoc IDLoc, OperandVector &Operands,
89 bool processLRW(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out);
90 bool processJSRI(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out);
91 bool processJMPI(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out);
657 bool CSKYAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, in MatchAndEmitInstruction() argument
671 return processInstruction(Inst, IDLoc, Operands, Out); in MatchAndEmitInstruction()
682 return Error(IDLoc, Msg); in MatchAndEmitInstruction()
688 return Error(IDLoc, "unrecognized instruction mnemonic" + Suggestion); in MatchAndEmitInstruction()
692 SMLoc ErrorLoc = IDLoc; in MatchAndEmitInstruction()
699 ErrorLoc = IDLoc; in MatchAndEmitInstruction()
709 SMLoc ErrorLoc = IDLoc; in MatchAndEmitInstruction()
823 bool CSKYAsmParser::processLRW(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out) { in processLRW() argument
824 Inst.setLoc(IDLoc); in processLRW()
871 bool CSKYAsmParser::processJSRI(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out) { in processJSRI() argument
872 Inst.setLoc(IDLoc); in processJSRI()
892 bool CSKYAsmParser::processJMPI(MCInst &Inst, SMLoc IDLoc, MCStreamer &Out) { in processJMPI() argument
893 Inst.setLoc(IDLoc); in processJMPI()
913 bool CSKYAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc, in processInstruction() argument
924 return Error(IDLoc, "Register sequence is not valid. 'r4-r7' expected"); in processInstruction()
931 return Error(IDLoc, "msb must be greater or equal to lsb"); in processInstruction()
935 return Error(IDLoc, "msb must be greater or equal to lsb"); in processInstruction()
939 return Error(IDLoc, "n must be in range [0,32]"); in processInstruction()
972 return processLRW(Inst, IDLoc, Out); in processInstruction()
974 return processJSRI(Inst, IDLoc, Out); in processInstruction()
976 return processJMPI(Inst, IDLoc, Out); in processInstruction()