Home | History | Annotate | Download | only in mips

Lines Matching refs:Instr

324   static const int kInstrSize = sizeof(Instr);
539 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
540 void instr_at_put(byte* pc, Instr instr) {
541 *reinterpret_cast<Instr*>(pc) = instr;
543 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); }
544 void instr_at_put(int pos, Instr instr) {
545 *reinterpret_cast<Instr*>(buffer_ + pos) = instr;
549 bool is_branch(Instr instr);
600 inline void emit(Instr x);