Searched defs:fbp (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.inline.hpp89 inline void Assembler::fbp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(fbp_op2) | branchcc(cc) | predict(p) | wdisp(intptr_t(d), intptr_t(pc()), 19), rt); has_delay_slot(); } function in class:Assembler
90 inline void Assembler::fbp( Condition c, bool a, CC cc, Predict p, Label& L ) { fbp(c, a, cc, p, target(L)); } function in class:Assembler
583 fbp(c, a, fcc0, p, d, rt);
592 inline void MacroAssembler::fbp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { function in class:MacroAssembler
593 Assembler::fbp(c, a, cc, p, d, rt);
596 inline void MacroAssembler::fbp( Condition c, bool a, CC cc, Predict p, Label& L ) { function in class:MacroAssembler
597 Assembler::fbp(c, a, cc, p, L);

Completed in 39 milliseconds