Home
last modified time | relevance | path

Searched defs:Blt (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_mips.cc1883 __ Blt(TMP, AT, slow_path->GetEntryLabel()); in GenerateClassInitializationCheck() local
4126 __ Blt(lhs, rhs_reg, label); in GenerateIntCompareAndBranch() local
4135 __ Blt(rhs_reg, lhs, label); in GenerateIntCompareAndBranch() local
4167 __ Blt(lhs, TMP, label); in GenerateIntCompareAndBranch() local
4196 __ Blt(TMP, lhs, label); in GenerateIntCompareAndBranch() local
4322 __ Blt(lhs_high, TMP, label); in GenerateLongCompareAndBranch() local
4326 __ Blt(TMP, AT, label); in GenerateLongCompareAndBranch() local
4330 __ Blt(TMP, lhs_high, label); in GenerateLongCompareAndBranch() local
4339 __ Blt(lhs_high, TMP, label); in GenerateLongCompareAndBranch() local
4348 __ Blt(TMP, lhs_high, label); in GenerateLongCompareAndBranch() local
[all …]
Dintrinsics_mips.cc2996 __ Blt(length_input_minus_pos, TMP, slow_path->GetEntryLabel()); in EnoughItems() local
2999 __ Blt(length_input_minus_pos, length.AsRegister<Register>(), slow_path->GetEntryLabel()); in EnoughItems() local
/art/compiler/utils/mips/
Dassembler_mips_test.cc2190 TEST_F(AssemblerMIPSTest, Blt) { in TEST_F() argument
2193 __ Blt(mips::A0, mips::A1, &label); in TEST_F() local
2203 __ Blt(mips::A2, mips::A3, &label); in TEST_F() local
2499 __ Blt(mips::T1, mips::T0, &label1); // T0 dependency. in TEST_F() local
2645 __ Blt(mips::T1, mips::T2, &label1); in TEST_F() local
Dassembler_mips.cc3084 void MipsAssembler::Blt(Register rs, Register rt, MipsLabel* label) { in Blt() function in art::mips::MipsAssembler