H A D | assembler_sparc.inline.hpp | 95 inline void Assembler::br( Condition c, bool a, address d, relocInfo::relocType rt ) { v9_dep(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(br_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); } function in class:Assembler 96 inline void Assembler::br( Condition c, bool a, Label& L ) { br(c, a, target(L)); } function in class:Assembler 542 inline void MacroAssembler::br( Condition c, bool a, Predict p, address d, relocInfo::relocType rt ) { function in class:MacroAssembler 546 Assembler::br(c, a, d, rt); 549 inline void MacroAssembler::br( Condition c, bool a, Predict p, Label& L ) { function in class:MacroAssembler 550 br(c, a, p, target(L)); 560 MacroAssembler::br(c, a, p, d, rt); 569 br(always, false, pt, L);
|