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

/openjdk7/jdk/test/sun/invoke/util/
H A DValueConversionsTest.java191 for (long tval = 0, ctr = 0;;) {
194 //System.out.println(Long.toHexString(tval)); // prints 3776 test patterns
195 tval = nextTestValue(tval);
196 if (tval == 0) {
207 static void testConvert(Wrapper src, Wrapper dst, long tval) throws Throwable { argument
209 boolean testSingleCase = (tval != 0);
210 final long tvalInit = tval;
220 long n = tval;
241 tval
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.cpp1104 Node* tval = in(true_path); local
1106 Node* id = CMoveNode::is_cmove_id(phase, cmp, tval, fval, b);
H A Dparse2.cpp1218 const Type* tval = _gvn.type(val); local
1220 if (tval->singleton()) {
1224 tcon = tval;
1226 tval = _gvn.type(val);
1237 sharpen_type_after_if(btest, con, tcon, val, tval);
1270 Node* val, const Type* tval) {
1321 const Type* tboth = tcon->join(tval);
1322 if (tboth == tval) break; // Nothing to gain.
1355 assert(tcc != tval && tcc->higher_equal(tval), "mus
1268 sharpen_type_after_if(BoolTest::mask btest, Node* con, const Type* tcon, Node* val, const Type* tval) argument
[all...]
/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) { argument
251 return new IfOp(x, cond, y, tval, fval);
254 tval = tval->subst();
256 if (tval == fval) {
258 return tval;
268 Constant* x_tval_const = x_ifop->tval()->subst()->as_Constant();
279 Value new_tval = t_compare_res == Constant::cond_true ? tval : fval;
280 Value new_fval = f_compare_res == Constant::cond_true ? tval
409 Constant* tval = ifop->tval()->as_Constant(); local
[all...]

Completed in 46 milliseconds