Home
last modified time | relevance | path

Searched refs:is_bare (Results 1 – 5 of 5) sorted by relevance

/art/compiler/utils/mips/
Dassembler_mips.h794 void B(MipsLabel* label, bool is_bare = false);
795 void Bal(MipsLabel* label, bool is_bare = false);
796 void Beq(Register rs, Register rt, MipsLabel* label, bool is_bare = false);
797 void Bne(Register rs, Register rt, MipsLabel* label, bool is_bare = false);
798 void Beqz(Register rt, MipsLabel* label, bool is_bare = false);
799 void Bnez(Register rt, MipsLabel* label, bool is_bare = false);
800 void Bltz(Register rt, MipsLabel* label, bool is_bare = false);
801 void Bgez(Register rt, MipsLabel* label, bool is_bare = false);
802 void Blez(Register rt, MipsLabel* label, bool is_bare = false);
803 void Bgtz(Register rt, MipsLabel* label, bool is_bare = false);
[all …]
Dassembler_mips32r6_test.cc273 bool is_bare = false) { in BranchHelper() argument
276 (Base::GetAssembler()->*f)(&label1, is_bare); in BranchHelper()
282 (Base::GetAssembler()->*f)(&label2, is_bare); in BranchHelper()
288 (Base::GetAssembler()->*f)(&label1, is_bare); in BranchHelper()
294 ((is_bare || !has_slot) ? "" : "nop\n") + in BranchHelper()
298 ((is_bare || !has_slot) ? "" : "nop\n") + in BranchHelper()
302 ((is_bare || !has_slot) ? "" : "nop\n") + in BranchHelper()
311 bool is_bare = false) { in BranchCondOneRegHelper() argument
314 (Base::GetAssembler()->*f)(mips::A0, &label, is_bare); in BranchCondOneRegHelper()
324 (Base::GetAssembler()->*f)(mips::A1, &label, is_bare); in BranchCondOneRegHelper()
[all …]
Dassembler_mips_test.cc202 bool is_bare = false) { in BranchHelper() argument
205 (Base::GetAssembler()->*f)(&label1, is_bare); in BranchHelper()
211 (Base::GetAssembler()->*f)(&label2, is_bare); in BranchHelper()
217 (Base::GetAssembler()->*f)(&label1, is_bare); in BranchHelper()
223 (is_bare ? "" : "nop\n") + in BranchHelper()
227 (is_bare ? "" : "nop\n") + in BranchHelper()
231 (is_bare ? "" : "nop\n") + in BranchHelper()
240 bool is_bare = false) { in BranchCondOneRegHelper() argument
243 (Base::GetAssembler()->*f)(mips::A0, &label, is_bare); in BranchCondOneRegHelper()
253 (Base::GetAssembler()->*f)(mips::A1, &label, is_bare); in BranchCondOneRegHelper()
[all …]
/art/compiler/utils/mips64/
Dassembler_mips64.cc2429 Mips64Assembler::Branch::Branch(uint32_t location, uint32_t target, bool is_call, bool is_bare) in Branch() argument
2437 (is_call ? (is_bare ? kBareCall : kCall) : (is_bare ? kBareCondBranch : kCondBranch)), in Branch()
2447 bool is_bare) in Branch() argument
2488 InitializeType((is_bare ? kBareCondBranch : kCondBranch), is_r6); in Branch()
2877 void Mips64Assembler::Buncond(Mips64Label* label, bool is_bare) { in Buncond() argument
2879 branches_.emplace_back(buffer_.Size(), target, /* is_call */ false, is_bare); in Buncond()
2885 bool is_bare, in Bcond() argument
2894 branches_.emplace_back(is_r6, buffer_.Size(), target, condition, lhs, rhs, is_bare); in Bcond()
2898 void Mips64Assembler::Call(Mips64Label* label, bool is_bare) { in Call() argument
2900 branches_.emplace_back(buffer_.Size(), target, /* is_call */ true, is_bare); in Call()
[all …]
Dassembler_mips64.h1000 void Bc(Mips64Label* label, bool is_bare = false);
1001 void Balc(Mips64Label* label, bool is_bare = false);
1003 void Bltc(GpuRegister rs, GpuRegister rt, Mips64Label* label, bool is_bare = false);
1004 void Bltzc(GpuRegister rt, Mips64Label* label, bool is_bare = false);
1005 void Bgtzc(GpuRegister rt, Mips64Label* label, bool is_bare = false);
1006 void Bgec(GpuRegister rs, GpuRegister rt, Mips64Label* label, bool is_bare = false);
1007 void Bgezc(GpuRegister rt, Mips64Label* label, bool is_bare = false);
1008 void Blezc(GpuRegister rt, Mips64Label* label, bool is_bare = false);
1009 void Bltuc(GpuRegister rs, GpuRegister rt, Mips64Label* label, bool is_bare = false);
1010 void Bgeuc(GpuRegister rs, GpuRegister rt, Mips64Label* label, bool is_bare = false);
[all …]