/art/compiler/utils/mips/ |
D | assembler_mips.h | 794 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 …]
|
D | assembler_mips32r6_test.cc | 273 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 …]
|
D | assembler_mips_test.cc | 202 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/ |
D | assembler_mips64.cc | 2429 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 …]
|
D | assembler_mips64.h | 1000 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 …]
|