HomeSort by relevance Sort by last modified time
    Searched refs:InOutRegMasks (Results 1 - 2 of 2) sorted by null

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

Completed in 148 milliseconds