Searched defs:cond (Results 176 - 199 of 199) sorted by relevance

12345678

/openjdk7/hotspot/src/share/vm/opto/
H A Difnode.cpp729 BoolTest::mask cond = fail->as_Proj()->_con ? BoolTest::lt : BoolTest::ge; local
732 Node* newbool = phase->transform(new (phase->C) BoolNode(newcmp, cond));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp1067 If::Condition cond = x->cond(); local
1072 if (cond == If::gtr || cond == If::leq) {
1074 cond = Instruction::mirror(cond);
1091 (cond == If::eql || cond == If::neq)) {
1109 __ cmp(lir_cond(cond), left, right);
1111 profile_branch(x, cond);
[all...]
H A Dinterp_masm_sparc.cpp2423 Condition cond, Label *where) {
2432 br(cond, false, Assembler::pn, *where);
2420 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch1, Register scratch2, Condition cond, Label *where) argument
H A Dassembler_sparc.cpp4197 Assembler::Condition MacroAssembler::negate_condition(Assembler::Condition cond) { argument
4198 switch (cond) {
4221 void MacroAssembler::cond_inc(Assembler::Condition cond, address counter_ptr, argument
4223 Condition negated_cond = negate_condition(cond);
H A Dassembler_sparc.hpp971 static int cond( int x) { return u_field(x, 28, 25); } function in class:Assembler
1771 void trap( Condition c, CC cc, Register s1, Register s2 ) { v8_no_cc(cc); emit_long( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | rs2(s2)); }
1772 void trap( Condition c, CC cc, Register s1, int trapa ) { v8_no_cc(cc); emit_long( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | immed(true) | u_field(trapa, 6, 0)); }
2610 Condition negate_condition(Condition cond);
2614 void cond_inc(Condition cond, address counter_addr, Register Rtemp1, Register Rtemp2);
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_h.cpp370 CondInterface* cond = oper->_interface->is_CondInterface(); local
371 fprintf(fp, " if( _c%d == BoolTest::eq ) st->print(\"%s\");\n",i,cond->_equal_format);
372 fprintf(fp, " else if( _c%d == BoolTest::ne ) st->print(\"%s\");\n",i,cond->_not_equal_format);
373 fprintf(fp, " else if( _c%d == BoolTest::le ) st->print(\"%s\");\n",i,cond->_less_equal_format);
374 fprintf(fp, " else if( _c%d == BoolTest::ge ) st->print(\"%s\");\n",i,cond->_greater_equal_format);
375 fprintf(fp, " else if( _c%d == BoolTest::lt ) st->print(\"%s\");\n",i,cond->_less_format);
376 fprintf(fp, " else if( _c%d == BoolTest::gt ) st->print(\"%s\");\n",i,cond->_greater_format);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp612 static bool is_true(jlong x, If::Condition cond, jlong y) { argument
613 switch (cond) {
641 // pattern: If (a cond a) => simplify to Goto
643 switch (x->cond()) {
658 // pattern: If (lc cond rc) => simplify to: Goto
659 BlockBegin* sux = x->x()->as_Constant()->compare(x->cond(), x->y(),
668 // pattern: If (l cond rc) => investigate further
671 // pattern: If ((a cmp b) cond rc) => simplify to: If (x cond y) or: Goto
674 BlockBegin* lss_sux = x->sux_for(is_true(-1, x->cond(), r
687 If::Condition cond; local
[all...]
H A Dc1_LIR.cpp296 LIR_OpBranch::LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block) argument
298 , _cond(cond)
306 LIR_OpBranch::LIR_OpBranch(LIR_Condition cond, BasicType type, CodeStub* stub) : argument
308 , _cond(cond)
316 LIR_OpBranch::LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block, BlockBegin* ublock) argument
318 , _cond(cond)
1856 print_condition(out, cond()); out->print(" ");
1872 void LIR_Op::print_condition(outputStream* out, LIR_Condition cond) { argument
1873 switch(cond) {
1883 default: out->print("[%d]",cond); brea
[all...]
H A Dc1_Optimizer.cpp93 Value make_ifop(Value x, Instruction::Condition cond, Value y, Value tval, Value fval);
197 Value result = make_ifop(if_->x(), if_->cond(), if_->y(), t_value, f_value);
249 Value CE_Eliminator::make_ifop(Value x, Instruction::Condition cond, Value y, Value tval, Value fval) { argument
251 return new IfOp(x, cond, y, tval, fval);
272 Instruction::Condition x_ifop_cond = x_ifop->cond();
274 Constant::CompareResult t_compare_res = x_tval_const->compare(cond, y_const);
275 Constant::CompareResult f_compare_res = x_fval_const->compare(cond, y_const);
293 Constant::CompareResult x_compare_res = x_const->compare(cond, y_const);
302 return new IfOp(x, cond, y, tval, fval);
422 Instruction::Condition cond local
[all...]
H A Dc1_GraphBuilder.cpp1178 void GraphBuilder::if_node(Value x, If::Condition cond, Value y, ValueStack* state_before) { argument
1182 Instruction *i = append(new If(x, cond, false, y, tsux, fsux, is_bb ? state_before : NULL, is_bb));
1230 void GraphBuilder::if_zero(ValueType* type, If::Condition cond) { argument
1234 if_node(x, cond, y, state_before);
1238 void GraphBuilder::if_null(ValueType* type, If::Condition cond) { argument
1242 if_node(x, cond, y, state_before);
1246 void GraphBuilder::if_same(ValueType* type, If::Condition cond) { argument
1250 if_node(x, cond, y, state_before);
H A Dc1_LIRGenerator.cpp710 switch (ifop->cond()) {
814 if ((ifop->cond() == If::gtr || ifop->cond() == If::geq) &&
941 void LIRGenerator::profile_branch(If* if_instr, If::Condition cond) { argument
962 __ cmove(lir_cond(cond),
2848 // Code for : x->x() {x->cond()} x->y() ? x->tval() : x->fval()
2875 __ cmp(lir_cond(x->cond()), left.result(), right.result());
2876 __ cmove(lir_cond(x->cond()), t_val.result(), f_val.result(), reg, as_BasicType(x->x()->type()));
H A Dc1_LIR.hpp1023 static void print_condition(outputStream* out, LIR_Condition cond) PRODUCT_RETURN;
1367 LIR_OpBranch(LIR_Condition cond, BasicType type, Label* lbl) argument
1369 , _cond(cond)
1376 LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block);
1377 LIR_OpBranch(LIR_Condition cond, BasicType type, CodeStub* stub);
1380 LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block, BlockBegin* ublock);
1382 LIR_Condition cond() const { return _cond; } function in class:LIR_OpBranch
2101 void branch(LIR_Condition cond, BasicType type, Label* lbl) { append(new LIR_OpBranch(cond, type, lbl)); } argument
2102 void branch(LIR_Condition cond, BasicTyp argument
2106 branch(LIR_Condition cond, BasicType type, CodeStub* stub) argument
2110 branch(LIR_Condition cond, BasicType type, BlockBegin* block, BlockBegin* unordered) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.cpp172 BiasedLocking::Condition cond = BiasedLocking::revoke_and_rebias(obj, attempt_rebias, THREAD); local
173 if (cond == BiasedLocking::BIAS_REVOKED_AND_REBIASED) {
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java2289 static void check(boolean cond) {if (cond) pass(); else fail();} argument
2290 static void check(boolean cond, String m) {if (cond) pass(); else fail(m);} argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java1341 ConditionToken(int refno, Token cond, Token yespat, Token nopat) { argument
1344 this.condition = cond;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp1205 If::Condition cond = x->cond(); local
1215 if (cond == If::gtr || cond == If::leq) {
1216 cond = Instruction::mirror(cond);
1223 if (tag == longTag && yin->is_constant() && yin->get_jlong_constant() == 0 && (cond == If::eql || cond == If::neq)) {
1243 __ cmp(lir_cond(cond), left, right);
1245 profile_branch(x, cond);
[all...]
H A Dinterp_masm_x86_32.cpp1417 Condition cond, Label* where) {
1424 jcc(cond, *where);
1414 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch, bool preloaded, Condition cond, Label* where) argument
H A Dinterp_masm_x86_64.cpp1477 Condition cond, Label* where) {
1484 jcc(cond, *where);
1474 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch, bool preloaded, Condition cond, Label* where) argument
H A Dassembler_x86.cpp1459 // Note: could eliminate cond. jumps to this jump if condition
7338 void MacroAssembler::cond_inc32(Condition cond, AddressLiteral counter_addr) { argument
7339 Condition negated_cond = negate_condition(cond);
11562 Assembler::Condition MacroAssembler::negate_condition(Assembler::Condition cond) { argument
11563 switch (cond) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java789 CondItem cond = genCond(tree.cond, CRT_FLOW_CONTROLLER);
790 if (cond.isTrue()) {
791 code.resolve(cond.trueJumps);
796 if (cond.isFalse()) {
797 code.resolve(cond.falseJumps);
802 Chain secondJumps = cond.jumpFalse();
803 code.resolve(cond.trueJumps);
1041 genLoop(tree, tree.body, tree.cond, List.<JCExpressionStatement>nil(), false);
1045 genLoop(tree, tree.body, tree.cond, Lis
1063 genLoop(JCStatement loop, JCStatement body, JCExpression cond, List<JCExpressionStatement> step, boolean testFirst) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java203 public JCDoWhileLoop DoLoop(JCStatement body, JCExpression cond) { argument
204 JCDoWhileLoop tree = new JCDoWhileLoop(body, cond);
209 public JCWhileLoop WhileLoop(JCExpression cond, JCStatement body) { argument
210 JCWhileLoop tree = new JCWhileLoop(cond, body);
216 JCExpression cond,
220 JCForLoop tree = new JCForLoop(init, cond, step, body);
274 public JCConditional Conditional(JCExpression cond, argument
278 JCConditional tree = new JCConditional(cond, thenpart, elsepart);
283 public JCIf If(JCExpression cond, JCStatement thenpart, JCStatement elsepart) { argument
284 JCIf tree = new JCIf(cond, thenpar
215 ForLoop(List<JCStatement> init, JCExpression cond, List<JCExpressionStatement> step, JCStatement body) argument
319 Assert(JCExpression cond, JCExpression detail) argument
[all...]
H A DJCTree.java804 public JCExpression cond; field in class:JCTree.JCDoWhileLoop
805 protected JCDoWhileLoop(JCStatement body, JCExpression cond) { argument
807 this.cond = cond;
813 public JCExpression getCondition() { return cond; }
830 public JCExpression cond; field in class:JCTree.JCWhileLoop
832 protected JCWhileLoop(JCExpression cond, JCStatement body) { argument
833 this.cond = cond;
840 public JCExpression getCondition() { return cond; }
858 public JCExpression cond; field in class:JCTree.JCForLoop
861 JCForLoop(List<JCStatement> init, JCExpression cond, List<JCExpressionStatement> update, JCStatement body) argument
1096 public JCExpression cond; field in class:JCTree.JCConditional
1099 JCConditional(JCExpression cond, JCExpression truepart, JCExpression falsepart) argument
1128 public JCExpression cond; field in class:JCTree.JCIf
1131 JCIf(JCExpression cond, JCStatement thenpart, JCStatement elsepart) argument
1281 public JCExpression cond; field in class:JCTree.JCAssert
1283 JCAssert(JCExpression cond, JCExpression detail) argument
2124 DoLoop(JCStatement body, JCExpression cond) argument
2125 WhileLoop(JCExpression cond, JCStatement body) argument
2126 ForLoop(List<JCStatement> init, JCExpression cond, List<JCExpressionStatement> step, JCStatement body) argument
2141 Conditional(JCExpression cond, JCExpression thenpart, JCExpression elsepart) argument
2144 If(JCExpression cond, JCStatement thenpart, JCStatement elsepart) argument
2150 Assert(JCExpression cond, JCExpression detail) argument
[all...]
/openjdk7/jdk/test/java/util/EnumSet/
H A DRetainAll.java76 static void check(boolean cond) {if (cond) pass(); else fail();} argument
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java4910 Node cond, yes, not; field in class:Pattern.Conditional
4911 Conditional(Node cond, Node yes, Node not) { argument
4912 this.cond = cond;
4917 if (cond.match(matcher, i, seq)) {
4948 Node cond; field in class:Pattern.Pos
4949 Pos(Node cond) { argument
4950 this.cond = cond;
4960 conditionMatched = cond
4973 Node cond; field in class:Pattern.Neg
4974 Neg(Node cond) argument
5015 Node cond; field in class:Pattern.Behind
5017 Behind(Node cond, int rmax, int rmin) argument
5049 BehindS(Node cond, int rmax, int rmin) argument
5082 Node cond; field in class:Pattern.NotBehind
5084 NotBehind(Node cond, int rmax, int rmin) argument
5116 NotBehindS(Node cond, int rmax, int rmin) argument
[all...]

Completed in 232 milliseconds

12345678