Searched refs:slot (Results 1 - 25 of 108) sorted by relevance

12345

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackValueCollection.java44 public boolean booleanAt(int slot) { return (int)get(slot).getInteger() != 0; } argument
45 public byte byteAt(int slot) { return (byte) get(slot).getInteger(); } argument
46 public char charAt(int slot) { return (char) get(slot).getInteger(); } argument
47 public short shortAt(int slot) { return (short) get(slot).getInteger(); } argument
48 public int intAt(int slot) { return (int) get(slot) argument
49 longAt(int slot) argument
51 oopHandleAt(int slot) argument
52 floatAt(int slot) argument
53 doubleAt(int slot) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DLocalVariable.java43 int slot; field in class:LocalVariable
47 public LocalVariable(MemberDefinition field, int slot) { argument
52 this.slot = slot;
56 LocalVariable(MemberDefinition field, int slot, int from, int to) { argument
58 this.slot = slot;
64 return field + "/" + slot;
H A DLocalVariableTable.java49 void define(MemberDefinition field, int slot, int from, int to) { argument
54 if ((locals[i].field == field) && (locals[i].slot == slot) &&
66 locals[len++] = new LocalVariable(field, slot, from, to);
77 * fields with higher slot numbers that should have appeared later
88 if (locals[i].slot < locals[j].slot) {
93 // same name, and the one with the greater slot
100 } else if (locals[i].slot > locals[j].slot) {
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp46 jint int_at(int slot) const;
47 jlong long_at(int slot) const;
48 Handle obj_at(int slot) const;
49 jfloat float_at(int slot) const;
50 jdouble double_at(int slot) const;
53 void set_int_at(int slot, jint value);
54 void set_long_at(int slot, jlong value);
55 void set_obj_at(int slot, Handle value);
56 void set_float_at(int slot, jfloat value);
57 void set_double_at(int slot, jdoubl
[all...]
H A DstackValueCollection.cpp43 jint StackValueCollection::int_at(int slot) const {
44 intptr_t val = at(slot)->get_int();
49 jlong StackValueCollection::long_at(int slot) const {
51 return at(slot+1)->get_int();
58 // low memory location is in higher java local slot.
59 value.array[0] = at(slot+1)->get_int();
60 value.array[1] = at(slot )->get_int();
65 Handle StackValueCollection::obj_at(int slot) const {
66 return at(slot)->get_obj();
69 jfloat StackValueCollection::float_at(int slot) cons
91 set_int_at(int slot, jint value) argument
97 set_long_at(int slot, jlong value) argument
113 set_obj_at(int slot, Handle value) argument
117 set_float_at(int slot, jfloat value) argument
132 set_double_at(int slot, jdouble value) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DFieldInfo.java41 // "slot" value to allow sun.misc.Unsafe to work
42 private int slot; field in class:FieldInfo
63 public int slot() { method in class:FieldInfo
64 return slot;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DSlotAllocator.java41 int slot = 0, size, index;
46 slot = Math.max(slot, index + size);
48 _firstAvailableSlot = slot;
54 int slot = _firstAvailableSlot, where = 0;
64 if (slot + size <= _slotsTaken[where]) {
71 slot = _slotsTaken[where++] + 1;
76 _slotsTaken[where + j] = slot + j;
79 return slot;
84 final int slot
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeFont.java55 int localeSlot = -1; // primary slot for this locale.
148 * one pre-pended as slot 0.
165 * it is harmless that we do not know a slot is already initialised
207 * This code allows for initialisation of each slot on demand.
228 private void doDeferredInitialisation(int slot) { argument
229 if (deferredInitialisation[slot] == false) {
243 if (components[slot] == null) {
254 componentFileNames[slot] != null) {
255 components[slot] =
256 fm.initialiseDeferredFont(componentFileNames[slot]);
291 isExcludedChar(int slot, int charcode) argument
327 getSlotFont(int slot) argument
[all...]
H A DFontRunIterator.java44 int slot = -1; field in class:FontRunIterator
58 this.slot = -1;
63 return slot == -1 ? null : font.getSlotFont(slot);
67 return slot << 24;
122 slot = sl >>> 24;
H A DCompositeGlyphMapper.java70 public final int compositeGlyphCode(int slot, int glyphCode) { argument
71 return (slot << 24 | (glyphCode & GLYPHMASK));
80 /* This requires that slot 0 is never empty. */
111 private final CharToGlyphMapper getSlotMapper(int slot) { argument
112 CharToGlyphMapper mapper = slotMappers[slot];
114 mapper = font.getSlotFont(slot).getMapper();
115 slotMappers[slot] = mapper;
122 for (int slot = 0; slot < font.numSlots; slot
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DLocalVariableImpl.java32 private final int slot; field in class:LocalVariableImpl
40 int slot, Location scopeStart, Location scopeEnd,
44 this.slot = slot;
56 slot() == other.slot() &&
67 return (int)method.hashCode() + slot();
74 rc = slot() - other.slot();
132 return (slot < metho
39 LocalVariableImpl(VirtualMachine vm, Method method, int slot, Location scopeStart, Location scopeEnd, String name, String signature, String genericSignature) argument
139 int slot() { method in class:LocalVariableImpl
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLocalVariableImpl.java33 private final int slot; field in class:LocalVariableImpl
41 int slot, Location scopeStart, Location scopeEnd,
46 this.slot = slot;
62 return ((slot() == other.slot()) &&
75 return ((scopeStart.hashCode() << 4) + slot());
83 rc = slot() - other.slot();
141 return (slot < metho
40 LocalVariableImpl(VirtualMachine vm, Method method, int slot, Location scopeStart, Location scopeEnd, String name, String signature, String genericSignature) argument
148 int slot() { method in class:LocalVariableImpl
[all...]
/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A DMonitor.hpp47 int slot; member in class:Monitor
H A DMonitor.cpp87 return slot;
92 slot = aslot;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExchanger.java109 * The basic idea is to maintain a "slot", which is a reference to
112 * slot is null, it CAS'es (compareAndSets) a Node there and waits
114 * sees that the slot is non-null, and so CASes it back to null,
117 * fail because a slot at first appears non-null but is null upon
123 * deteriorates due to CAS contention on the single slot when
129 * fails to CAS in its chosen slot, it picks an alternative slot
131 * CASes into a slot but no other thread arrives, it tries
132 * another, heading toward the zero slot, which always exists even
136 * Waiting: Slot zero is special in that it is the only slot tha
442 tryCancel(Node node, Slot slot) argument
461 spinWait(Node node, Slot slot) argument
491 await(Node node, Slot slot) argument
518 awaitNanos(Node node, Slot slot, long nanos) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DInputSlotWidget.java40 public InputSlotWidget(InputSlot slot, DiagramScene scene, Widget parent, FigureWidget fw) { argument
41 super(slot, scene, parent, fw);
42 inputSlot = slot;
H A DSlotWidget.java45 private Slot slot; field in class:SlotWidget
52 public SlotWidget(Slot slot, DiagramScene scene, Widget parent, FigureWidget fw) { argument
55 this.slot = slot;
57 this.setToolTipText("<HTML>" + slot.getName() + "</HTML>");
63 Point p2 = slot.getRelativePosition();
77 return slot;
104 if (slot instanceof OutputSlot) {
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DReflectAccess.java40 int slot,
48 slot,
59 int slot,
71 slot,
82 int slot,
91 slot,
36 newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
53 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
78 newConstructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkState.hpp90 SharkValue** stack_addr(int slot) const {
91 assert(slot >= 0 && slot < stack_depth(), "bad stack slot");
92 return &_sp[-(slot + 1)];
94 SharkValue* stack(int slot) const {
95 return *stack_addr(slot);
98 void set_stack(int slot, SharkValue* value) { argument
99 *stack_addr(slot) = value;
123 // Temporary oop slot
[all...]
/openjdk7/jdk/src/share/back/
H A DclassTrack.c36 * Each slot in the hash table has a linked list of KlassNode.
48 /* ClassTrack hash table slot count */
54 struct KlassNode *next; /* next node in this slot */
64 * Return slot in hash table to use for this class.
79 jint slot = hashKlass(klass); local
80 KlassNode **head = &table[slot];
81 KlassNode **newHead = &newTable[slot];
121 jint slot; local
127 for (slot = 0; slot < CT_HASH_SLOT_COUN
213 jint slot = hashKlass(klass); local
[all...]
H A DStackFrameImpl.c54 FrameNumber fnum, jint slot, jbyte typeKey)
64 (gdata->jvmti, thread, fnum, slot, &value.l);
84 (gdata->jvmti, thread, fnum, slot, &intValue);
92 (gdata->jvmti, thread, fnum, slot, &intValue);
99 (gdata->jvmti, thread, fnum, slot, &value.f);
105 (gdata->jvmti, thread, fnum, slot, &value.d);
111 (gdata->jvmti, thread, fnum, slot, &value.i);
117 (gdata->jvmti, thread, fnum, slot, &value.j);
124 (gdata->jvmti, thread, fnum, slot, &intValue);
132 (gdata->jvmti, thread, fnum, slot,
53 writeVariableValue(JNIEnv *env, PacketOutputStream *out, jthread thread, FrameNumber fnum, jint slot, jbyte typeKey) argument
146 readVariableValue(JNIEnv *env, PacketInputStream *in, jthread thread, FrameNumber fnum, jint slot, jbyte typeKey) argument
253 jint slot; local
311 jint slot; local
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DShutdown.java48 // The system shutdown hooks are registered with a predefined slot.
83 * @params slot the slot in the shutdown hook array, whose element
92 * already passes the given slot
94 static void add(int slot, boolean registerShutdownInProgress, Runnable hook) { argument
96 if (hooks[slot] != null)
97 throw new InternalError("Shutdown hook at slot " + slot + " already registered");
103 if (state > HOOKS || (state == HOOKS && slot <= currentRunningHook))
107 hooks[slot]
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodTypeForm.java47 final long argCounts; // packed slot & value counts
158 int slot = ptypeCount + lac;
159 slotToArgTab = new int[slot+1];
161 argToSlotTab[0] = slot; // argument "-1" is past end of slots
165 if (w.isDoubleWord()) --slot;
166 --slot;
167 slotToArgTab[slot] = i+1; // "+1" see argSlotToParameter note
168 argToSlotTab[1+i] = slot;
170 assert(slot == 0); // filled the table
175 int slot
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dregalloc.cpp61 int slot = (reg < _matcher._new_SP) local
70 return slot*VMRegImpl::stack_slot_size;
87 int slot = stk_offset / jintSize; local
88 int reg = (slot < (int) _framesize)
89 ? slot + _matcher._new_SP
90 : OptoReg::stack2reg(slot) - _framesize;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DCombineFilter.java69 InputSlot slot = null;
74 slot = s;
79 assert slot != null;
80 slot.setName(f.getProperties().get("dump_spec"));
82 slot.setShortName(f.getProperties().get("short_name"));
86 slot.setShortName(s);
93 Connection newConn = diagram.createConnection(slot, c.getOutputSlot());
124 OutputSlot slot = f.createOutputSlot(pos);
125 slot.setName(succ.getProperties().get("dump_spec"));
127 slot
[all...]

Completed in 72 milliseconds

12345