Searched refs:Bge (Results 1 – 5 of 5) sorted by relevance
/art/compiler/utils/mips/ |
D | assembler_mips_test.cc | 2213 TEST_F(AssemblerMIPSTest, Bge) { in TEST_F() argument 2214 BranchCondTwoRegsHelper(&mips::MipsAssembler::Bge, "Bge"); in TEST_F() 2278 BranchCondTwoRegsHelper(&mips::MipsAssembler::Bge, "Bge", /* is_bare */ true); in TEST_F() 2318 __ Bge(mips::T1, mips::T0, &label1); // AT dependency. in TEST_F() local 2464 __ Bge(mips::T1, mips::T0, &label1); in TEST_F() local
|
D | assembler_mips32r6_test.cc | 1178 TEST_F(AssemblerMIPS32r6Test, Bge) { in TEST_F() argument 1179 BranchCondTwoRegsHelper(&mips::MipsAssembler::Bge, "Bgec"); in TEST_F() 1299 BranchCondTwoRegsHelper(&mips::MipsAssembler::Bge, "Bge", /* is_bare */ true); in TEST_F()
|
D | assembler_mips.h | 805 void Bge(Register rs, Register rt, MipsLabel* label, bool is_bare = false);
|
D | assembler_mips.cc | 4380 void MipsAssembler::Bge(Register rs, Register rt, MipsLabel* label, bool is_bare) { in Bge() function in art::mips::MipsAssembler
|
/art/compiler/optimizing/ |
D | code_generator_mips.cc | 4566 __ Bge(lhs, rhs_reg, label); in GenerateIntCompareAndBranch() local 4569 __ Bge(rhs_reg, lhs, label); in GenerateIntCompareAndBranch() local 4613 __ Bge(lhs, TMP, label); in GenerateIntCompareAndBranch() local 4623 __ Bge(TMP, lhs, label); in GenerateIntCompareAndBranch() local
|