Home
last modified time | relevance | path

Searched refs:InOutRegMasks (Results 1 – 2 of 2) sorted by relevance

/art/compiler/utils/mips/
Dassembler_mips.h79 struct InOutRegMasks { struct
80 InOutRegMasks() in InOutRegMasks() argument
83 inline InOutRegMasks& GprOuts(Register reg) { in GprOuts() argument
89 inline InOutRegMasks& GprOuts(T one, Ts... more) { GprOuts(one); GprOuts(more...); return *this; } in GprOuts() argument
91 inline InOutRegMasks& GprIns(Register reg) { in GprIns() argument
97 inline InOutRegMasks& GprIns(T one, Ts... more) { GprIns(one); GprIns(more...); return *this; } in GprIns() argument
99 inline InOutRegMasks& GprInOuts(Register reg) { GprIns(reg); GprOuts(reg); return *this; } in GprInOuts() argument
101 inline InOutRegMasks& GprInOuts(T one, Ts... more) { in GprInOuts() argument
107 inline InOutRegMasks& FprOuts(FRegister reg) { fpr_outs_ |= (1u << reg); return *this; } in FprOuts() argument
108 inline InOutRegMasks& FprOuts(VectorRegister reg) { return FprOuts(static_cast<FRegister>(reg)); } in FprOuts() argument
[all …]
Dassembler_mips.cc47 InOutRegMasks& MipsAssembler::DsFsmInstr(uint32_t instruction, MipsLabel* patcher_label) { in DsFsmInstr()
82 delay_slot_.masks_ = InOutRegMasks(); in DsFsmInstr()