Searched refs:Condition (Results 26 - 50 of 63) sorted by relevance

123

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp456 enum Condition { // The x86 condition codes used for conditional jumps/moves. enum in class:Assembler
934 void cmovl(Condition cc, Register dst, Register src);
935 void cmovl(Condition cc, Register dst, Address src);
937 void cmovq(Condition cc, Register dst, Register src);
938 void cmovq(Condition cc, Register dst, Address src);
1198 void jcc(Condition cc, Label& L, bool maybe_short = true);
1204 void jccb(Condition cc, Label& L);
1512 void setb(Condition cc, Register dst);
2385 Condition negate_condition(Condition con
[all...]
H A Dinterp_masm_x86_32.hpp193 Condition cond, Label* where);
H A Dinterp_masm_x86_64.hpp202 Condition cond, Label* where);
H A DtemplateTable_x86_32.cpp100 // Condition conversion
101 static Assembler::Condition j_not(TemplateTable::Condition cc) {
1769 void TemplateTable::if_0cmp(Condition cc) {
1781 void TemplateTable::if_icmp(Condition cc) {
1794 void TemplateTable::if_nullcmp(Condition cc) {
1806 void TemplateTable::if_acmp(Condition cc) {
H A DtemplateTable_x86_64.cpp112 // Condition conversion
113 static Assembler::Condition j_not(TemplateTable::Condition cc) {
1810 void TemplateTable::if_0cmp(Condition cc) {
1821 void TemplateTable::if_icmp(Condition cc) {
1833 void TemplateTable::if_nullcmp(Condition cc) {
1844 void TemplateTable::if_acmp(Condition cc) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DDelayQueue.java93 * Condition signalled when a newer element becomes available
97 private final Condition available = lock.newCondition();
H A DPriorityBlockingQueue.java38 import java.util.concurrent.locks.Condition;
158 * Condition for blocking when empty
160 private final Condition notEmpty;
H A DThreadPoolExecutor.java38 import java.util.concurrent.locks.Condition;
278 * private Condition unpaused = pauseLock.newCondition();
468 private final Condition termination = mainLock.newCondition();
H A DForkJoinPool.java55 import java.util.concurrent.locks.Condition;
469 * Condition for awaitTermination, using submissionLock for
472 private final Condition termination;
H A DScheduledThreadPoolExecutor.java858 * Condition signalled when a newer task becomes available at the
861 private final Condition available = lock.newCondition();
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.hpp152 Condition, // Condition controlling the cmove enumerator in enum:CMoveNode::__anon311
160 init_req(Condition,bol);
H A Dsubnode.cpp1102 test_value->in(CMoveNode::Condition)->is_Bool()) {
1103 BoolNode* bol = test_value->in(CMoveNode::Condition)->as_Bool();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp648 void InterpreterMacroAssembler::if_cmp(Condition cc, bool ptr_compare) {
832 void InterpreterMacroAssembler::throw_if_not_1_icc( Condition ok_condition,
839 void InterpreterMacroAssembler::throw_if_not_1_xcc( Condition ok_condition,
846 void InterpreterMacroAssembler::throw_if_not_1_x( Condition ok_condition,
866 void InterpreterMacroAssembler::throw_if_not_icc( Condition ok_condition,
876 void InterpreterMacroAssembler::throw_if_not_xcc( Condition ok_condition,
886 void InterpreterMacroAssembler::throw_if_not_x( Condition ok_condition,
2423 Condition cond, Label *where) {
H A Dassembler_sparc.cpp193 Assembler::Condition Assembler::reg_cond_to_cc_cond(Assembler::RCondition in) {
729 void MacroAssembler::breakpoint_trap(Condition c, CC cc) {
2118 Assembler::RCondition cond2rcond(Assembler::Condition c) {
2134 void MacroAssembler::cmp_zero_and_br(Condition c, Register s1, Label& L, bool a, Predict p) {
2164 void MacroAssembler::cmp_and_br_short(Register s1, Register s2, Condition c,
2177 void MacroAssembler::cmp_and_br_short(Register s1, int simm13a, Condition c,
2190 void MacroAssembler::cmp_and_brx_short(Register s1, Register s2, Condition c,
2203 void MacroAssembler::cmp_and_brx_short(Register s1, int simm13a, Condition c,
2520 Condition lt = unordered_result == -1 ? f_unorderedOrLess : f_less;
2521 Condition e
[all...]
H A DnativeInst_sparc.hpp149 static int branch_instruction(Assembler::op2s op2val, Assembler::Condition c, bool a) {
895 Assembler::Condition condition() {
897 return (Assembler::Condition) Assembler::inv_cond(x);
H A DtemplateTable_sparc.cpp135 // Condition conversion
136 Assembler::Condition ccNot(TemplateTable::Condition cc) {
1737 // Note Condition in argument is TemplateTable::Condition
1740 void TemplateTable::if_0cmp(Condition cc) {
1749 void TemplateTable::if_icmp(Condition cc) {
1757 void TemplateTable::if_nullcmp(Condition cc) {
1764 void TemplateTable::if_acmp(Condition cc) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Optimizer.cpp93 Value make_ifop(Value x, Instruction::Condition cond, Value y, Value tval, Value fval);
249 Value CE_Eliminator::make_ifop(Value x, Instruction::Condition cond, Value y, Value tval, Value fval) {
272 Instruction::Condition x_ifop_cond = x_ifop->cond();
422 Instruction::Condition cond = if_->cond();
H A Dc1_LIRGenerator.hpp359 void profile_branch(If* if_instr, If::Condition cond);
406 static LIR_Condition lir_cond(If::Condition cond) {
H A Dc1_Canonicalizer.cpp612 static bool is_true(jlong x, If::Condition cond, jlong y) {
687 If::Condition cond;
H A Dc1_InstructionPrinter.cpp52 const char* InstructionPrinter::cond_name(If::Condition cond) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventQueue.java50 import java.util.concurrent.locks.Condition;
142 private final Condition pushPopCond;
230 pushPopCond = (Condition)appContext.get(AppContext.EVENT_QUEUE_COND_KEY);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java42 import java.util.concurrent.locks.Condition;
241 private static final Condition AWT_LOCK_COND = AWT_LOCK.newCondition();
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.cpp221 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Condition cc), Condition cc) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java287 Node(Thread thread, int waitStatus) { // Used by Condition
1595 * Condition implementation for a {@link
1601 * and Condition users. Exported versions of this class will in
1611 public class ConditionObject implements Condition, java.io.Serializable {
2023 * waiting on this Condition.
H A DAbstractQueuedSynchronizer.java80 * can be used as a {@link Condition} implementation by subclasses
226 * // Provide a Condition
227 * Condition newCondition() { return new ConditionObject(); }
243 * public Condition newCondition() { return sync.newCondition(); }
510 Node(Thread thread, int waitStatus) { // Used by Condition
1818 * Condition implementation for a {@link
1824 * and Condition users. Exported versions of this class will in
1832 public class ConditionObject implements Condition, java.io.Serializable {
2244 * waiting on this Condition.

Completed in 160 milliseconds

123