Searched refs:is_int (Results 1 - 25 of 52) sorted by relevance

123

/openjdk10/hotspot/src/share/vm/opto/
H A Dconnode.cpp48 case T_INT: return new ConINode( t->is_int() );
H A Daddnode.cpp311 jint z = phase->type( in1->in(2) )->is_int()->get_con() & 0x1f; // only least significant 5 bits matter
312 jint y = phase->type( in2 )->is_int()->get_con();
316 if( t_in11 != Type::TOP && (t_in11->is_int()->_lo >= -(y << z)) ) {
345 const TypeInt *r0 = t0->is_int(); // Handy access
346 const TypeInt *r1 = t1->is_int();
751 const TypeInt *r0 = t0->is_int(); // Handy access
752 const TypeInt *r1 = t1->is_int();
806 const TypeInt *r0 = t0->is_int(); // Handy access
807 const TypeInt *r1 = t1->is_int();
839 const TypeInt *r0 = t0->is_int(); // Hand
[all...]
H A Dconvertnode.cpp59 const TypeInt *ti = t->is_int();
204 const TypeInt *ti = t->is_int();
214 const TypeInt *ti = t->is_int();
233 const TypeInt *ti = t->is_int();
327 const TypeInt* tx = phase->type(x)->is_int();
328 const TypeInt* ty = phase->type(y)->is_int();
H A Dmulnode.cpp234 const TypeInt *r0 = t0->is_int(); // Handy access
235 const TypeInt *r1 = t1->is_int();
408 const TypeInt *r0 = t0->is_int(); // Handy access
409 const TypeInt *r1 = t1->is_int();
736 const TypeInt *r1 = t1->is_int(); // Handy access
737 const TypeInt *r2 = t2->is_int(); // Handy access
842 const TypeInt *r2 = t2->is_int(); // Handy access
981 const TypeInt *r1 = t1->is_int(); // Handy access
982 const TypeInt *r2 = t2->is_int(); // Handy access
1044 const TypeInt *r2 = t2->is_int (); // Hand
[all...]
H A Dsubnode.cpp160 const TypeInt *i = t2->is_int();
253 const TypeInt *r0 = t1->is_int(); // Handy access
254 const TypeInt *r1 = t2->is_int();
537 const TypeInt *r0 = t1->is_int(); // Handy access
538 const TypeInt *r1 = t2->is_int();
561 const TypeInt *r0 = t1->is_int(); // Handy access
562 const TypeInt *r1 = t2->is_int();
651 const TypeInt *r0 = t11->is_int();
652 const TypeInt *r1 = t12->is_int();
1217 const TypeInt *ti = CC->is_int();
[all...]
H A Dloopnode.cpp441 const TypeInt* init_t = gvn->type(init_trip)->is_int();
442 const TypeInt* limit_t = gvn->type(limit)->is_int();
810 return stride()->bottom_type()->is_int()->get_con();
824 int stride_con = stride_t->is_int()->get_con();
828 if (init_t->is_int()->is_con() && limit_t->is_int()->is_con()) {
830 jlong init_con = init_t->is_int()->get_con();
831 jlong limit_con = limit_t->is_int()->get_con();
853 int stride_con = phase->type(in(Stride))->is_int()->get_con();
865 const TypeInt* init_t = phase->type(in(Init) )->is_int();
[all...]
H A Dmovenode.cpp163 case T_INT: return new CMoveINode( bol, left, right, t->is_int() );
368 const TypeInt *ti = t->is_int();
H A Dcastnode.cpp172 const TypeInt* in2_t = phase->type(cmp->in(2))->is_int();
235 const TypeInt* this_type = this->type()->is_int();
H A Ddivnode.cpp518 const TypeInt *i1 = t1->is_int();
519 const TypeInt *i2 = t2->is_int();
860 const TypeInt *ti = t->is_int();
1000 const TypeInt *i1 = t1->is_int();
1001 const TypeInt *i2 = t2->is_int();
H A DidealGraphPrinter.cpp519 if (t->base() == Type::Int && t->is_int()->is_con()) {
520 const TypeInt *typeInt = t->is_int();
H A Dtype.hpp283 const TypeInt *is_int() const;
572 static const TypeInt *as_self(const Type *t) { return t->is_int(); }
1548 inline const TypeInt *Type::is_int() const {
1790 #define is_intptr_t is_int
H A DloopTransform.cpp100 jlong init_con = phase->_igvn.type(init_n)->is_int()->_lo;
101 jlong limit_con = phase->_igvn.type(limit_n)->is_int()->_hi;
713 const TypeInt* iv_type = phase->_igvn.type(phi)->is_int();
731 const TypeInt* limit_type = phase->_igvn.type(limit_n)->is_int();
1499 const TypeInt* limit_type = _igvn.type(limit)->is_int();
2611 const TypeInt* init_t = phase->_igvn.type(cl->init_trip())->is_int();
2612 const TypeInt* limit_t = phase->_igvn.type(cl->limit())->is_int();
H A Dcfgnode.cpp1058 jt->is_int()->_lo == ft->is_int()->_lo &&
1059 jt->is_int()->_hi == ft->is_int()->_hi)
H A Dlcm.cpp123 if (trtype->isa_int() && trtype->is_int()->is_con()) {
124 jint tr_con = trtype->is_int()->get_con();
H A Dtype.cpp1380 const TypeInt *r = t->is_int();
1396 const TypeInt *ot = old->is_int();
1415 max = limit->is_int()->_hi;
1416 min = limit->is_int()->_lo;
1493 const TypeInt *r = t->is_int(); // Handy access
2091 _size->xmeet(a->_size)->is_int(),
2103 const TypeInt* size_dual = _size->dual()->is_int();
H A Dmemnode.cpp804 case T_BOOLEAN: load = new LoadUBNode(ctl, mem, adr, adr_type, rt->is_int(), mo, control_dependency); break;
805 case T_BYTE: load = new LoadBNode (ctl, mem, adr, adr_type, rt->is_int(), mo, control_dependency); break;
806 case T_INT: load = new LoadINode (ctl, mem, adr, adr_type, rt->is_int(), mo, control_dependency); break;
807 case T_CHAR: load = new LoadUSNode(ctl, mem, adr, adr_type, rt->is_int(), mo, control_dependency); break;
808 case T_SHORT: load = new LoadSNode (ctl, mem, adr, adr_type, rt->is_int(), mo, control_dependency); break;
3613 case T_INT: con = val->is_int()->get_con(); break;
3650 assert(con == tcon->is_int()->get_con(), "must be");
/openjdk10/hotspot/src/share/vm/utilities/
H A DconstantTag.hpp59 bool is_int() const { return _tag == JVM_CONSTANT_Integer; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk10/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp266 if (tag_old.is_int() || tag_old.is_float()) {
269 if (tag_old.is_int()) {
/openjdk10/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp276 bool is_int(ciType* type) const {
299 assert(is_int(type_at_tos()), "must be integer");
303 assert(is_int(type_at(c)), "must be integer");
439 assert(is_int(type), "must be int type");
444 assert(is_int(type), "must be int type");
/openjdk10/hotspot/src/share/vm/services/
H A DwriteableFlags.cpp275 } else if (f->is_int()) {
302 } else if (f->is_int()) {
/openjdk10/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp136 if (t.is_int()) {
H A Dglobals.cpp199 bool Flag::is_int() const { function in class:Flag
489 } else if (is_int()) {
538 if (is_int()) {
653 } else if (is_int()) {
1061 if (!result->is_int()) return Flag::WRONG_FORMAT;
1069 if (!flag->is_int()) return Flag::WRONG_FORMAT;
1088 guarantee(faddr != NULL && faddr->is_int(), "wrong flag type");
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_LIRAssembler_ppc.cpp296 const bool is_int = result->is_single_cpu(); local
297 Register Rdividend = is_int ? left->as_register() : left->as_register_lo();
300 Register Rresult = is_int ? result->as_register() : result->as_register_lo();
304 Rdivisor = is_int ? right->as_register() : right->as_register_lo();
306 divisor = is_int ? right->as_constant_ptr()->as_jint()
328 if (is_int) {
334 if (is_int) {
344 if (is_int) {
364 if (is_int) {
371 if (is_int) {
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp126 bool is_int() { return tag() == intTag; } function in class:ValueType
/openjdk10/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp323 if (tag.is_int()) {

Completed in 302 milliseconds

123