Searched refs:idx (Results 176 - 200 of 280) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java572 int idx = currentBC.hasIndexU4() ? currentBC.getIndexU4() : currentBC.getIndexU2();
573 tty.print(" idx " + idx);
575 int idx = currentBC.getIndexU2();
577 int nameAndTypeIdx = cp.name_and_type_ref_index_at(idx);
612 int idx = currentBC.hasIndexU4() ? currentBC.getIndexU4() : currentBC.getIndexU2();
613 tty.print(" idx " + idx);
615 int idx = currentBC.getIndexU2();
617 int nameAndTypeIdx = cp.name_and_type_ref_index_at(idx);
1677 doAstore(int idx) argument
1692 doField(boolean is_get, boolean is_static, int idx, int bci) argument
1728 doMethod(boolean is_static, boolean is_interface, int idx, int bci) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.cpp1950 uint idx = n->_idx; local
1951 if (idx >= nodes_size()) {
1954 PointsToNode* ptn = ptnode_adr(idx);
2003 uint idx = n->_idx; local
2004 if (idx >= nodes_size()) {
2007 PointsToNode* ptn = ptnode_adr(idx);
2358 uint idx = 1; local
2361 while (idx < phi->req()) {
2362 Node *mem = find_inst_mem(phi->in(idx), alias_idx, orig_phi_worklist);
2369 cur_input.push(idx);
2483 int idx = C->get_alias_index(tp); local
2490 int idx = C->get_alias_index(tp); local
2523 int idx = C->get_alias_index(at->is_ptr()); local
2587 int idx = C->get_alias_index(at->is_ptr()); local
3052 uint idx = (uint)_compile->get_alias_index(at->is_ptr()); local
[all...]
H A Dparse1.cpp1809 // Turn the idx'th entry of the current map into a Phi
1810 PhiNode *Parse::ensure_phi(int idx, bool nocreate) { argument
1815 Node* o = map->in(idx);
1828 if (jvms->is_loc(idx)) {
1829 t = block()->local_type_at(idx - jvms->locoff());
1830 } else if (jvms->is_stk(idx)) {
1831 t = block()->stack_type_at(idx - jvms->stkoff());
1832 } else if (jvms->is_mon(idx)) {
1833 assert(!jvms->is_monitor_box(idx), "no phis for boxes");
1835 } else if ((uint)idx < TypeFun
1865 ensure_memory_phi(int idx, bool nocreate) argument
[all...]
H A DparseHelper.cpp144 Node *idx = peek(1); local
356 Node* Parse::method_data_addressing(ciMethodData* md, ciProfileData* data, ByteSize counter_offset, Node* idx, uint stride) { argument
372 Node* scale = _gvn.transform( new (C) MulXNode( idx, str ) );
380 void Parse::increment_md_counter_at(ciMethodData* md, ciProfileData* data, ByteSize counter_offset, Node* idx, uint stride) { argument
381 Node* adr_node = method_data_addressing(md, data, counter_offset, idx, stride);
H A Dcompile.cpp1179 tty->print_cr("mismatched_node idx='%d' both live and dead'", i);
1190 tty->print_cr("mismatched_node idx='%d' type='neither live nor dead'", i);
1534 for (int idx = Compile::AliasIdxBot; idx < C->num_alias_types(); idx++) {
1535 C->alias_type(idx)->print_on(tty);
1593 int idx = AliasIdxTop; local
1596 idx = i;
1601 if (idx == AliasIdxTop) {
1606 idx
3438 int idx = _constants.find(con); local
3447 int idx = _constants.find(con); local
[all...]
H A Dloopopts.cpp1416 uint idx = 0; local
1417 while( use->in(idx) != old ) idx++;
1424 cfg = prev->in(idx); // NOT in block of Phi itself
1426 _igvn.replace_input_of(use, idx, C->top());
1442 if( idx == 0 ) { // Updating control edge?
1455 if( idx == 0 ) { // Updating control edge?
1464 if( idx != 0 ) {
1476 _igvn.replace_input_of(use, idx, phi);
1852 uint idx local
2020 insert_phi_for_loop( Node* use, uint idx, Node* lp_entry_val, Node* back_edge_val, LoopNode* lp ) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DGradientPaintContext.java254 int idx = (int) (-dx * (1 << 31));
260 icolrel += idx;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.inline.hpp146 inline address* frame::native_param_addr(int idx) const { return (address*) addr_at( native_frame_initial_param_offset+idx); }
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.c678 int32_t idx; local
686 for (idx = 0; idx < awt_numScreens; idx++) {
687 DASSERT(xinInfo[idx].screen_number == idx);
689 fbrects[idx].width = xinInfo[idx].width;
690 fbrects[idx].height = xinInfo[idx]
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp1283 int idx = currentBC->has_index_u4() ? currentBC->get_index_u4() : currentBC->get_index_u2_cpcache(); local
1285 int nameAndTypeIdx = cp->name_and_type_ref_index_at(idx);
1315 int idx = currentBC->has_index_u4() ? currentBC->get_index_u4() : currentBC->get_index_u2_cpcache(); local
1317 int nameAndTypeIdx = cp->name_and_type_ref_index_at(idx);
1688 int idx = push_ch - '1';
1689 assert(idx >= 0 && idx < poplen, "wrong arguments");
1690 push(actual[idx]);
1877 void GenerateOopMap::do_astore(int idx) { argument
1885 set_var(idx, r_or_
1891 int idx = 0; local
1899 do_field(int is_get, int is_static, int idx, int bci) argument
1929 do_method(int is_static, int is_interface, int idx, int bci) argument
[all...]
H A DgenerateOopMap.hpp403 void do_astore (int idx);
405 void do_field (int is_get, int is_static, int idx, int bci);
406 void do_method (int is_static, int is_interface, int idx, int bci);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp776 ObjArrayTask(oop o = NULL, int idx = 0): _obj(o), _index(idx) { }
777 ObjArrayTask(oop o, size_t idx): _obj(o), _index(int(idx)) {
778 assert(idx <= size_t(max_jint), "too big");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java535 int idx = pool.put(value);
537 code.emitop2(ldc2w, idx);
538 } else if (idx <= 255) {
539 code.emitop1(ldc1, idx);
541 code.emitop2(ldc2, idx);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DDocEnv.java189 int idx = name.length();
194 idx = name.substring(0, idx).lastIndexOf('.');
195 if (idx < 0) break;
196 nameChars[idx] = '$';
/openjdk7/langtools/test/tools/javac/types/
H A DCastTest.java124 int idx = 0;
126 arrayTypes[idx++] = fac.Array(t);
152 int idx = 0;
154 System.arraycopy(arr, 0, new_arr, idx, arr.length);
155 idx += arr.length;
H A DPrimitiveConversionTest.java203 int idx = 0;
205 arrayTypes[idx++] = fac.Array(t);
259 int idx = 0;
261 System.arraycopy(arr, 0, new_arr, idx, arr.length);
262 idx += arr.length;
H A DBoxingConversionTest.java237 int idx = 0;
239 System.arraycopy(arr, 0, new_arr, idx, arr.length);
240 idx += arr.length;
H A DGenericTypeWellFormednessTest.java248 int idx = 0;
250 System.arraycopy(arr, 0, new_arr, idx, arr.length);
251 idx += arr.length;
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DDatatypeConverterImpl.java389 int idx = start + 1; // no point in searching the first char. that's not valid.
390 while (idx < end && text.charAt(idx) != ':') {
391 idx++;
394 if (idx == end) {
400 prefix = text.subSequence(start, idx).toString();
401 localPart = text.subSequence(idx + 1, end).toString();
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_MenuItem.cpp630 int idx; local
631 for (idx = 0; (idx < nMenuItemCount); idx++) {
635 ::GetMenuItemInfo(hMenu, idx, TRUE, &mii1);
639 ::RemoveMenu(hMenu, idx, MF_BYPOSITION);
640 ::InsertMenuItem(hMenu, idx, TRUE, &mii);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp140 int idx = entry_index(hash, size()); local
141 _entries.at_put(idx, new ValueMapEntry(hash, x, nesting(), entry_at(idx)));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DLister.java193 int idx=0;
195 return idx<objects.length;
199 return objects[idx++];
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_ImageRep.c394 int idx; local
433 if ((idx = findIdx(rgb, lut1, numLut1)) == -1) {
445 cvtLut[i] = idx;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DWrappedPlainView.java114 int idx = line.getElementIndex(p0);
116 for(; idx <= lastIdx; idx++) {
117 elem = line.getElement(idx);
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp143 uint idx = hash(k) % _size; local
145 KlassInfoEntry* e = _buckets[idx].lookup(k);

Completed in 113 milliseconds

1234567891011>>