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

/openjdk7/hotspot/src/share/vm/opto/
H A Dparse2.cpp1289 TypeNode* ccast = new (C) CheckCastPPNode(control(), obj, tboth); local
1290 const Type* tcc = ccast->as_Type()->type();
1294 _gvn.set_type_bottom(ccast);
1295 record_for_igvn(ccast);
1297 replace_in_map(obj, ccast);
1315 ConstraintCastNode* ccast = NULL; local
1324 ccast = new (C) CastIINode(val, tboth);
1327 ccast = new (C) CastPPNode(val, tboth);
1353 if (ccast != NULL) {
1354 const Type* tcc = ccast
[all...]
H A DgraphKit.cpp1151 Node* ccast = alloc->make_ideal_length(_gvn.type(array)->is_oopptr(), &_gvn); local
1152 if (ccast != alen) {
1153 alen = _gvn.transform(ccast);
3309 Node* ccast = alloc->make_ideal_length(ary_type, &_gvn); local
3310 if (ccast != length) {
3311 _gvn.set_type_bottom(ccast);
3312 record_for_igvn(ccast);
3313 replace_in_map(length, ccast);
H A Dlibrary_call.cpp905 Node* ccast = new (C) CastIINode(index, TypeInt::POS); local
906 ccast->set_req(0, control());
907 (*pos_index) = _gvn.transform(ccast);
924 Node* ccast = new (C) CastIINode(index, TypeInt::POS1); local
925 ccast->set_req(0, control());
926 (*pos_index) = _gvn.transform(ccast);

Completed in 68 milliseconds