Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:Instructions

1 //===-- MipsAsmParser.cpp - Parse Mips assembly to MCInst instructions ----===//
115 SmallVectorImpl<MCInst> &Instructions);
117 SmallVectorImpl<MCInst> &Instructions);
119 SmallVectorImpl<MCInst> &Instructions);
121 SmallVectorImpl<MCInst> &Instructions);
406 SmallVectorImpl<MCInst> &Instructions){
409 return expandLoadImm(Inst, IDLoc, Instructions);
411 return expandLoadAddressImm(Inst,IDLoc,Instructions);
413 return expandLoadAddressReg(Inst,IDLoc,Instructions);
418 SmallVectorImpl<MCInst> &Instructions){
435 Instructions.push_back(tmpInst);
444 Instructions.push_back(tmpInst);
452 Instructions.push_back(tmpInst);
459 Instructions.push_back(tmpInst);
464 SmallVectorImpl<MCInst> &Instructions){
480 Instructions.push_back(tmpInst);
489 Instructions.push_back(tmpInst);
495 Instructions.push_back(tmpInst);
501 Instructions.push_back(tmpInst);
506 SmallVectorImpl<MCInst> &Instructions){
521 Instructions.push_back(tmpInst);
529 Instructions.push_back(tmpInst);
535 Instructions.push_back(tmpInst);
552 SmallVector<MCInst, 4> Instructions;
553 expandInstruction(Inst, IDLoc, Instructions);
554 for(unsigned i =0; i < Instructions.size(); i++){
555 Out.EmitInstruction(Instructions[i]);
1239 // floating point instructions: should register be treated as double?