Searched defs:entry (Results 301 - 305 of 305) sorted by relevance

<<111213

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp54 // Each entry encapsulates a reference to the tagged object
55 // and the tag value. In addition an entry includes a next pointer which
206 JvmtiTagHashmapEntry* entry = _table[i]; local
207 while (entry != NULL) {
208 JvmtiTagHashmapEntry* next = entry->next();
209 oop key = entry->object();
214 new_table[h] = entry;
215 entry->set_next(NULL);
217 entry->set_next(anchor);
218 new_table[h] = entry;
237 remove(JvmtiTagHashmapEntry* prev, int pos, JvmtiTagHashmapEntry* entry) argument
300 JvmtiTagHashmapEntry* entry = _table[h]; local
312 add(oop key, JvmtiTagHashmapEntry* entry) argument
341 JvmtiTagHashmapEntry* entry = _table[h]; local
377 JvmtiTagHashmapEntry* entry = _table[i]; local
443 JvmtiTagHashmapEntry* entry = table[j]; local
456 JvmtiTagHashmapEntry* entry = _free_entries; local
470 JvmtiTagHashmapEntry* entry; local
484 destroy_entry(JvmtiTagHashmapEntry* entry) argument
528 JvmtiTagHashmapEntry* entry = tag_map->hashmap()->find(o); local
623 post_callback_tag_update(oop o, JvmtiTagHashmap* hashmap, JvmtiTagHashmapEntry* entry, jlong obj_tag) argument
740 JvmtiTagHashmapEntry* entry = hashmap->find(o); local
1544 do_entry(JvmtiTagHashmapEntry* entry) argument
2925 oop entry; local
3369 JvmtiTagHashmapEntry* entry = table[pos]; local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp474 // The continuation address is the entry point of the exception handler of the
732 // This entry point is effectively only used for NullPointerExceptions which occur at inline
787 // caller-saved registers, as these entry points do.
798 Events::log_exception(thread, "NullPointerException at vtable entry " INTPTR_FORMAT, pc);
885 * installed in the native function entry of all native Java methods before
1118 // fr is now pointing to the entry frame.
1217 // Compute entry points. This might require generation of C2I converter
1219 // computation of the entry points is independent of patching the call. We
1220 // always return the entry-point, but we only patch the stub if the call has
1296 // return compiled code entry poin
2207 AdapterHandlerEntry* entry = (AdapterHandlerEntry*)BasicHashtable<mtCode>::new_entry(fingerprint->compute_hash()); local
2213 add(AdapterHandlerEntry* entry) argument
2218 free_entry(AdapterHandlerEntry* entry) argument
2372 AdapterHandlerEntry* entry = NULL; local
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c296 int entry; member in struct:mask_type
563 * There is an unresolved entry with our name
630 * We found at least one matching named entry for a class that
1605 /* Constant pool entry type has been checked in format checker */
1728 /* Initialize the function entry, since we know everything about it. */
2521 if (new_masks[i].entry == operand)
2522 CCerror(context, "Recursive call to jsr entry");
3113 if (new_masks[i].entry == called_instruction)
3303 int entry = masks[i].entry; local
3335 int entry = masks[i].entry; local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp213 "Invalid constant pool entry %u in class file %s",
220 index++; // Skip entry following eigth-byte constant, see JVM book p. 98
225 "Invalid constant pool entry %u in class file %s",
232 index++; // Skip entry following eigth-byte constant, see JVM book p. 98
743 NameSigHash* _next; // Next entry in hash table
763 // Return true if no duplicate is found. And name/sig is added as a new entry in table.
772 NameSigHash* entry = table[index]; local
773 while (entry != NULL) {
774 if (entry->_name == name && entry
1414 LVT_Hash* entry = table[index]; local
1440 LVT_Hash* entry = LVT_lookup(elem, index, table); local
2296 LVT_Hash* entry = LVT_lookup(&lvtt_elem, index, lvt_Hash); local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp1163 void Assembler::call_literal(address entry, RelocationHolder const& rspec) { argument
1164 assert(entry != NULL, "call most probably wrong");
1167 intptr_t disp = entry - (_code_pos + sizeof(int32_t));
1473 address entry = target(L); local
1475 intptr_t dist = (intptr_t)entry - ((intptr_t)_code_pos + short_size);
1482 intptr_t offs = (intptr_t)entry - (intptr_t)_code_pos;
1503 address entry = target(L); local
1504 assert(entry != NULL, "jmp most probably wrong");
1508 intptr_t offs = entry - _code_pos;
1528 void Assembler::jmp(Register entry) { argument
1546 address entry = target(L); local
5780 jump(ArrayAddress entry) argument
6407 jump(ArrayAddress entry) argument
6810 call(Register entry) argument
6814 call(AddressLiteral entry) argument
[all...]

Completed in 6061 milliseconds

<<111213