Searched defs:region (Results 51 - 57 of 57) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp235 // If our control input is a dead region, kill all below the region
971 // a synchronized region.
1103 Node *region = mem->in(0); local
1104 if (is_instance_field_load_with_local_phi(region)) {
1110 for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) {
1111 Node* phi = region->fast_out(i);
1208 Node* region = base->in(0); local
1215 in1->set_req(0, region->in(allocation_index));
1224 in2->set_req(0, region
1304 Node *region = mem->in(0); local
[all...]
H A DgraphKit.cpp125 // They are marked by the region's in(0) edge being the map itself.
325 // specially marked state-merging region. These regions and phis are
326 // untransformed, and can build up gradually. The region is marked by
339 Node* region = phi_map->control(); local
342 if (region->in(0) != hidden_merge_mark) {
343 // The control input is not (yet) a specially-marked region in phi_map.
345 region = new (C) RegionNode(2);
346 _gvn.set_type(region, Type::CONTROL);
347 region->set_req(0, hidden_merge_mark); // marks an internal ex-state
348 region
435 Node* region = phi_map->control(); local
2126 opt_iff(Node* region, Node* iff) argument
2232 merge_memory(Node* new_mem, Node* region, int new_path) argument
2607 RegionNode* region = new(C) RegionNode(PATH_LIMIT); local
2710 RegionNode* region = new (C) RegionNode(PATH_LIMIT); local
[all...]
H A Dlibrary_call.cpp123 void set_result(RegionNode* region, PhiNode* value);
129 Node* generate_guard(Node* test, RegionNode* region, float true_prob);
130 Node* generate_slow_guard(Node* test, RegionNode* region);
131 Node* generate_fair_guard(Node* test, RegionNode* region);
132 Node* generate_negative_guard(Node* index, RegionNode* region,
140 RegionNode* region);
146 RegionNode* region, int null_path,
149 RegionNode* region, int null_path) {
152 region, null_path,
156 RegionNode* region, in
148 load_klass_from_mirror(Node* mirror, bool never_see_null, RegionNode* region, int null_path) argument
155 load_array_klass_from_mirror(Node* mirror, bool never_see_null, RegionNode* region, int null_path) argument
166 generate_array_guard(Node* kls, RegionNode* region) argument
169 generate_non_array_guard(Node* kls, RegionNode* region) argument
172 generate_objArray_guard(Node* kls, RegionNode* region) argument
175 generate_non_objArray_guard(Node* kls, RegionNode* region) argument
840 set_result(RegionNode* region, PhiNode* value) argument
857 generate_guard(Node* test, RegionNode* region, float true_prob) argument
887 generate_slow_guard(Node* test, RegionNode* region) argument
890 generate_fair_guard(Node* test, RegionNode* region) argument
894 generate_negative_guard(Node* index, RegionNode* region, Node* *pos_index) argument
945 generate_limit_guard(Node* offset, Node* subseq_length, Node* array_length, RegionNode* region) argument
1081 RegionNode* region = new (C) RegionNode(5); local
3067 load_klass_from_mirror_common(Node* mirror, bool never_see_null, RegionNode* region, int null_path, int offset) argument
3090 generate_access_flags_guard(Node* kls, int modifier_mask, int modifier_bits, RegionNode* region) argument
3102 generate_interface_guard(Node* kls, RegionNode* region) argument
3172 RegionNode* region = new (C) RegionNode(PATH_LIMIT); local
3315 RegionNode* region = new (C) RegionNode(PATH_LIMIT); local
3396 generate_array_guard_common(Node* kls, RegionNode* region, bool obj_array, bool not_array) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c2158 jobject region)
2164 if (region || x1 || x2 || y1 || y2) {
2168 int numrects = RegionToYXBandedRectangles(env, x1, y1, x2, y2, region,
2155 Java_sun_awt_X11_XlibWrapper_SetRectangularShape(JNIEnv *env, jclass clazz, jlong display, jlong window, jint x1, jint y1, jint x2, jint y2, jobject region) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java557 sun.java2d.pipe.Region region);
555 SetRectangularShape(long display, long window, int lox, int loy, int hix, int hiy, sun.java2d.pipe.Region region) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp161 // One destination region.
164 // The destination falls on a region boundary, thus the first word of the
165 // partial object will be the first word copied to the destination region.
171 // destination region boundary, so a word somewhere within the partial
172 // object will be the first word copied to the second destination region.
259 ParallelCompactData::RegionData* c = summary_data.region(i);
307 const RegionData* c = summary_data.region(end_region - 1);
314 while (i < end_region && summary_data.region(i)->data_size() == region_size) {
315 print_initial_summary_region(i, summary_data.region(i));
328 // the region o
1721 const RegionData* region = _summary_data.addr_to_region_ptr(dense_prefix_end); local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp137 jobject region; member in struct:SetRectangularShapeStruct
5889 // Fix 4745222: we need to invalidate region since we validated it before initialization.
6127 jobject region = data->region; local
6139 // Otherwise, convert it into a region.
6140 if (region || x1 || x2 || y1 || y2) {
6145 region, &pRect, sizeof(rects)/sizeof(rects[0]));
6181 if (region) {
6182 env->DeleteGlobalRef(region);
6905 jint x1, jint y1, jint x2, jint y2, jobject region)
6904 Java_sun_awt_windows_WComponentPeer_setRectangularShape(JNIEnv* env, jobject self, jint x1, jint y1, jint x2, jint y2, jobject region) argument
[all...]

Completed in 372 milliseconds

123