Searched refs:slot (Results 51 - 75 of 108) sorted by relevance

12345

/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h505 (jvmtiHeapRootKind root_kind, jlong class_tag, jlong size, jlong* tag_ptr, jlong thread_tag, jint depth, jmethodID method, jint slot, void* user_data);
560 jint slot; member in struct:_jvmtiHeapReferenceInfoStackLocal
627 jint slot; member in struct:_jvmtiLocalVariableEntry
1110 jint slot,
1117 jint slot,
1124 jint slot,
1131 jint slot,
1138 jint slot,
1145 jint slot,
1152 jint slot,
2034 GetLocalObject(jthread thread, jint depth, jint slot, jobject* value_ptr) argument
2047 GetLocalInt(jthread thread, jint depth, jint slot, jint* value_ptr) argument
2054 GetLocalLong(jthread thread, jint depth, jint slot, jlong* value_ptr) argument
2061 GetLocalFloat(jthread thread, jint depth, jint slot, jfloat* value_ptr) argument
2068 GetLocalDouble(jthread thread, jint depth, jint slot, jdouble* value_ptr) argument
2075 SetLocalObject(jthread thread, jint depth, jint slot, jobject value) argument
2082 SetLocalInt(jthread thread, jint depth, jint slot, jint value) argument
2089 SetLocalLong(jthread thread, jint depth, jint slot, jlong value) argument
2096 SetLocalFloat(jthread thread, jint depth, jint slot, jfloat value) argument
2103 SetLocalDouble(jthread thread, jint depth, jint slot, jdouble value) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DIntType.java275 public Instruction LOAD(int slot) { argument
276 return new ILOAD(slot);
279 public Instruction STORE(int slot) { argument
280 return new ISTORE(slot);
H A DNodeSetType.java324 public Instruction LOAD(int slot) { argument
325 return new ALOAD(slot);
328 public Instruction STORE(int slot) { argument
329 return new ASTORE(slot);
H A DNodeType.java317 public Instruction LOAD(int slot) { argument
318 return new ILOAD(slot);
321 public Instruction STORE(int slot) { argument
322 return new ISTORE(slot);
H A DRealType.java324 public Instruction LOAD(int slot) { argument
325 return new DLOAD(slot);
328 public Instruction STORE(int slot) { argument
329 return new DSTORE(slot);
H A DReferenceType.java372 public Instruction LOAD(int slot) { argument
373 return new ALOAD(slot);
376 public Instruction STORE(int slot) { argument
377 return new ASTORE(slot);
H A DResultTreeType.java458 public Instruction LOAD(int slot) { argument
459 return new ALOAD(slot);
462 public Instruction STORE(int slot) { argument
463 return new ASTORE(slot);
H A DType.java263 public Instruction LOAD(int slot) { argument
267 public Instruction STORE(int slot) { argument
H A DMethodGenerator.java219 * Allocates a local variable. If the slot allocator has already been
222 * to return a slot that is already in use.
274 * slot number of the local variable. The JVM stack frame of local
275 * variables is divided into "slots". A single slot can be used to
278 * <p>If only one registration of use of a particular slot occurs, the
282 * registered for the same slot; and if none occurs, the entry will be
299 * <code>LocalVariableGen</code> with the same slot index previously
305 int slot = lvg.getIndex();
309 // If the LocalVariableGen uses a slot index beyond any previously
312 if (slot >
357 lookupRegisteredLocalVariable(int slot, int offset) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.java63 private int slot; field in class:Field
115 int slot,
123 this.slot = slot;
141 Field res = new Field(clazz, name, type, modifiers, slot, signature, annotations);
111 Field(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
H A DMethod.java66 private int slot; field in class:Method
119 int slot,
131 this.slot = slot;
152 exceptionTypes, modifiers, slot, signature,
113 Method(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp1786 JvmtiEnv::GetLocalObject(JavaThread* java_thread, jint depth, jint slot, jobject* value_ptr) { argument
1792 VM_GetOrSetLocal op(java_thread, current_thread, depth, slot);
1833 JvmtiEnv::GetLocalInt(JavaThread* java_thread, jint depth, jint slot, jint* value_ptr) { argument
1838 VM_GetOrSetLocal op(java_thread, depth, slot, T_INT);
1851 JvmtiEnv::GetLocalLong(JavaThread* java_thread, jint depth, jint slot, jlong* value_ptr) { argument
1856 VM_GetOrSetLocal op(java_thread, depth, slot, T_LONG);
1869 JvmtiEnv::GetLocalFloat(JavaThread* java_thread, jint depth, jint slot, jfloat* value_ptr) { argument
1874 VM_GetOrSetLocal op(java_thread, depth, slot, T_FLOAT);
1887 JvmtiEnv::GetLocalDouble(JavaThread* java_thread, jint depth, jint slot, jdouble* value_ptr) { argument
1892 VM_GetOrSetLocal op(java_thread, depth, slot, T_DOUBL
1904 SetLocalObject(JavaThread* java_thread, jint depth, jint slot, jobject value) argument
1921 SetLocalInt(JavaThread* java_thread, jint depth, jint slot, jint value) argument
1938 SetLocalLong(JavaThread* java_thread, jint depth, jint slot, jlong value) argument
1955 SetLocalFloat(JavaThread* java_thread, jint depth, jint slot, jfloat value) argument
1972 SetLocalDouble(JavaThread* java_thread, jint depth, jint slot, jdouble value) argument
2850 jint slot = (jint) table[i].slot; local
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkInliner.cpp161 bool* stack_addr(int slot) const {
162 assert(slot >= 0 && slot < stack_depth(), "bad stack slot");
163 return &_sp[-(slot + 1)];
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DAssembler.java329 : ((LocalVariable)inst.value).slot) + 1;
341 : ((LocalVariable)inst.value).slot) + 2;
793 locals[v.slot] = v.field;
896 if (locals[v.slot] != null) {
897 lvtab.define(locals[v.slot], v.slot, pcs[v.slot], pc);
899 pcs[v.slot] = pc;
900 locals[v.slot] = v.field;
H A DInstruction.java145 value = new Integer(((LocalVariable)value).slot);
542 throw new CompilerError("invalid slot: " + toString()
559 throw new CompilerError("invalid slot: " + toString());
572 ((Number)value).intValue() : ((LocalVariable)value).slot;
575 throw new CompilerError("invalid slot: " + toString());
591 throw new CompilerError("invalid slot: " + toString());
668 ((Number)value).intValue() : ((LocalVariable)value).slot);
677 ((Number)value).intValue() : ((LocalVariable)value).slot);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java58 // 1 if this reference is a "slot" reference
109 Assert.that(slot_num >= 0 && slot_num < ref_data_mask, "slot out of range");
211 public CellTypeState merge (CellTypeState cts, int slot) { argument
229 result = CellTypeState.makeSlotRef(slot);
275 // slot
276 tty.print("slot" + data + ")");
H A DConstMethod.java307 public Symbol getLocalVariableName(int bci, int slot) { argument
308 return getMethod().getLocalVariableName(bci, slot);
H A DMethod.java312 public Symbol getLocalVariableName(int bci, int slot) { argument
322 slot == local.getSlot()) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64Frame.java386 public Address addressOfInterpreterFrameTOSAt(int slot) { argument
387 return addressOfInterpreterFrameTOS().addOffsetTo(slot * VM.getVM().getAddressSize());
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp707 int slot = method->method_idnum(); local
737 java_lang_reflect_Method::set_slot(mh(), slot); local
767 int slot = method->method_idnum(); local
782 java_lang_reflect_Constructor::set_slot(ch(), slot); local
1070 int slot = java_lang_reflect_Method::slot(method_mirror); local
1083 methodOop m = klass->method_with_idnum(slot);
1095 int slot = java_lang_reflect_Constructor::slot(constructor_mirror); local
1100 methodOop m = klass->method_with_idnum(slot);
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodKlass.cpp285 int slot = table[i].slot; local
286 st->print_cr(" - %s %s bci=%d len=%d slot=%d", desc, name, bci, len, slot);
H A DconstMethodOop.hpp97 u2 slot; member in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp347 // top. VMRegImpl::stack0 refers to the first slot past the 16-word window,
391 int slot = 0; local
409 regs[i].set1(VMRegImpl::stack2reg(slot++));
424 slot = round_to(slot, 2); // align
425 regs[i].set2(VMRegImpl::stack2reg(slot));
426 slot += 2;
434 slot = round_to(slot, 2); // align
435 regs[i].set2(VMRegImpl::stack2reg(slot));
952 RegisterOrConstant slot = (sig_bt[i] == T_LONG) ? local
969 RegisterOrConstant slot = (sig_bt[i] == T_LONG || sig_bt[i] == T_DOUBLE) ? local
986 RegisterOrConstant slot = __ ensure_simm13_or_reg(st_off, Rdisp); local
1669 int slot = handle_index + arg_save_area; local
1694 int slot = handle_index + arg_save_area; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java172 // Return the slot of the affected local, or -1 if none.
616 int slot = Math.max(0, fmt.indexOf('l'));
639 BC_SLOT[w][bc] = (byte) slot;
640 assert(branch == 0 || slot == 0); // not both branch & local
642 assert(slot == 0 || index == 0); // not both local & cp
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.hpp177 void merge_insert_xchg(LIR_List* instrs, FpuStackSim* cur_sim, int slot);

Completed in 1410 milliseconds

12345