Searched refs:slot (Results 26 - 50 of 108) sorted by relevance

12345

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DOutputSlotWidget.java40 public OutputSlotWidget(OutputSlot slot, DiagramScene scene, Widget parent, FigureWidget fw) { argument
41 super(slot, scene, parent, fw);
42 outputSlot = slot;
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DLangReflectAccess.java40 int slot,
52 int slot,
64 int slot,
84 /** Gets the "slot" field from a Constructor (used for serialization) */
36 newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
46 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
60 newConstructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
H A DReflectionFactory.java211 int slot,
219 slot,
232 int slot,
244 slot,
257 int slot,
266 slot,
207 newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
226 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
253 newConstructor(Class<?> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeStrike.java37 * every char you have to find which "slot" can display it.
39 * A composite glyph code ducks this by encoding the slot into the
73 PhysicalStrike getStrikeForSlot(int slot) { argument
75 PhysicalStrike strike = strikes[slot];
78 (PhysicalStrike)(compFont.getSlotFont(slot).getStrike(desc));
80 strikes[slot] = strike;
102 * Note slot zero doesn't need to be masked.
107 * references an invalid slot, that the behaviour is currently
108 * that this slot index falls through to CompositeFont.getSlotFont(int)
110 * strike. If its an invalid glyph code for a valid slot, the
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaFrame.java167 int slot = cur.getSlot();
173 value = Boolean.valueOf(values.booleanAt(slot));
175 value = new Character(values.charAt(slot));
177 value = new Float(values.floatAt(slot));
179 value = new Double(values.doubleAt(slot));
181 value = new Byte(values.byteAt(slot));
183 value = new Short(values.shortAt(slot));
185 value = new Integer(values.intAt(slot));
187 value = new Long(values.longAt(slot));
190 handle = values.oopHandleAt(slot);
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DFigure.java180 InputSlot slot = new InputSlot(this, -1);
181 inputSlots.add(slot);
182 return slot;
186 InputSlot slot = new InputSlot(this, index);
187 inputSlots.add(slot);
189 return slot;
209 OutputSlot slot = new OutputSlot(this, -1);
210 outputSlots.add(slot);
211 return slot;
215 OutputSlot slot
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaLangAccess.java66 * @params slot the slot in the shutdown hook array, whose element
73 * the slot is not valid to register.
75 void registerShutdownHook(int slot, boolean registerShutdownInProgress, Runnable hook); argument
/openjdk7/jdk/src/share/back/
H A DcommonRef.c219 jint slot; local
223 slot = hashBucket(id);
224 node = gdata->objectsByID[slot];
240 gdata->objectsByID[slot] = node->next;
266 jint slot; local
270 slot = hashBucket(id);
271 node = gdata->objectsByID[slot];
279 node->next = gdata->objectsByID[slot];
280 gdata->objectsByID[slot] = node;
305 jint slot; local
[all...]
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java527 int slot = 0;
530 ++slot;
543 ++slot;
547 slot += 2;
553 return slot;
580 int slot = 0;
583 ++slot;
594 c.writeU1(slot);
595 ++slot;
599 c.writeU1(slot);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DObjectType.java172 public Instruction LOAD(int slot) { argument
173 return new ALOAD(slot);
176 public Instruction STORE(int slot) { argument
177 return new ASTORE(slot);
H A DBooleanType.java198 public Instruction LOAD(int slot) { argument
199 return new ILOAD(slot);
202 public Instruction STORE(int slot) { argument
203 return new ISTORE(slot);
H A DStringType.java224 public Instruction LOAD(int slot) { argument
225 return new ALOAD(slot);
228 public Instruction STORE(int slot) { argument
229 return new ASTORE(slot);
/openjdk7/hotspot/src/share/vm/opto/
H A DidealKit.cpp229 // find next empty slot in region
230 uint slot = 1; local
231 while (slot < reg->req() && reg->in(slot) != NULL) slot++;
232 assert(slot < reg->req(), "too many gotos");
234 if (slot == reg->req() - 1) bind = false;
235 reg->init_req(slot, ctrl());
268 l->set_req(slot, m);
429 uint slot; local
[all...]
H A Dlocknode.cpp42 BoxLockNode::BoxLockNode( int slot ) : Node( Compile::current()->root() ),
43 _slot(slot), _is_eliminated(false) {
76 // Only BoxLock nodes with the same stack slot are merged.
77 // So it is enough to trace one path to find the slot value.
176 // the obj pointer & the address of the stack slot pair used for the lock.
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp114 SharkValue* xstack(int slot) { argument
115 SharkValue *value = current_state()->stack(slot);
118 (slot > 0 &&
119 current_state()->stack(slot - 1) == NULL), "should be");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DFrame.java234 /** Returns the address of the requested "slot" on the stack. Slots
237 public Address addressOfStackSlot(int slot) { return getFP().addOffsetTo(slot * VM.getVM().getAddressSize()); } argument
239 /** Fetches the OopHandle at the requested slot */
240 public OopHandle getOopHandleAt(int slot) { return addressOfStackSlot(slot).getOopHandleAt(0); } argument
241 /** Fetches the OopHandle at the slot, adjusted for compiler frames */
243 // public OopHandle getOopHandleAtAdjusted(MethodOop method, int slot) { return addressOfStackSlot(slot).getOopHandleAt(0); }
245 // public void setOopHandleAt(int slot, OopHandl
248 getIntAt(int slot) argument
278 addressOfInterpreterFrameLocal(int slot) argument
317 addressOfInterpreterFrameExpressionStackSlot(int slot) argument
325 addressOfInterpreterFrameTOSAt(int slot) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp379 // move stack slot to the top of stack and then pop it
693 assert(op2->tmp1_opr()->is_fpu_register(), "strict operations need temporary fpu stack slot");
695 assert(sim()->stack_size() <= 7, "at least one stack slot must be free");
729 // slot of right, so a renaming from right to res is necessary
790 // log and log10 need one temporary fpu stack slot, so
809 assert(sim()->stack_size() <= 7, "at least one stack slot must be free");
952 void FpuStackAllocator::merge_insert_xchg(LIR_List* instrs, FpuStackSim* cur_sim, int slot) { argument
953 assert(slot > 0, "no exchange necessary");
955 LIR_Op1* fxch = new LIR_Op1(lir_fxch, LIR_OprFact::intConst(slot));
957 cur_sim->swap(slot);
1010 int slot; local
1107 int slot = 0; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DStackFrameImpl.java218 slots[i] = new JDWP.StackFrame.GetValues.SlotInfo(variable.slot(),
279 SlotInfo(variable.slot(), value);
326 int slot;
328 slot = 0;
330 slot = 1;
334 slots[ii] = new JDWP.StackFrame.GetValues.SlotInfo(slot++,(byte)sigChar);
336 slot++;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSecmod.java282 * slot of the softtoken object.
289 * slot of the softtoken object.
297 * softtoken presents only one slot, not separate CRYPTO and KEYSTORE
359 * A representation of one PKCS#11 slot in a PKCS#11 module.
366 final int slot; field in class:Secmod.Module
376 boolean fips, int slot) {
383 type = (slot == 0) ? ModuleType.CRYPTO : ModuleType.KEYSTORE;
386 if (slot != 0) {
388 ("Slot index should be 0 for FIPS slot");
405 this.slot
375 Module(String libraryDir, String libraryName, String commonName, boolean fips, int slot) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DHierarchicalGraphLayout.java85 private Port slot; field in class:HierarchicalGraphLayout.VertexWrapper
92 this.slot = new Port() {
135 return slot;
/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A DAgent.cpp221 /* Move the last element to this Monitor's slot */
222 int slot = m->get_slot(); local
224 monitor_list[slot] = last;
225 last->set_slot(slot);
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DConstructor.java67 private int slot; field in class:Constructor
112 int slot,
121 this.slot = slot;
142 exceptionTypes, modifiers, slot,
593 return slot;
108 Constructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.cpp209 for (size_t slot = 0; slot < size; slot += 1) {
210 assert((*(intptr_t*) (addr + slot)) != ((intptr_t) badHeapWordVal),
218 for (size_t slot = 0; slot < size; slot += 1) {
219 assert((*(intptr_t*) (addr + slot)) == ((intptr_t) badHeapWordVal),
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DStackFrameImpl.java203 int ss = variable.slot();
222 int slot = mmm.isStatic()? 0 : 1;
223 for (int ii = 0; ii < count; ++slot, ++ii) {
226 res.add(getSlotValue(values, variableType, slot));
228 slot++;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp1909 int slot, oop obj);
1918 jmethodID method, jlocation bci, jint slot, oop obj);
1944 jmethodID method, jlocation bci, jint slot, oop o);
1954 static inline bool report_static_field_reference(oop referrer, oop referree, jint slot);
1955 static inline bool report_field_reference(oop referrer, oop referree, jint slot);
2027 jint slot,
2045 slot,
2159 jint slot,
2193 reference_info.stack_local.slot = slot;
2023 invoke_basic_stack_ref_callback(jvmtiHeapRootKind root_kind, jlong thread_tag, jint depth, jmethodID method, jint slot, oop obj) argument
2153 invoke_advanced_stack_ref_callback(jvmtiHeapReferenceKind ref_kind, jlong thread_tag, jlong tid, int depth, jmethodID method, jlocation bci, jint slot, oop obj) argument
2458 report_stack_ref_root(jlong thread_tag, jlong tid, jint depth, jmethodID method, jlocation bci, jint slot, oop obj) argument
2540 report_static_field_reference(oop referrer, oop referree, jint slot) argument
2558 report_field_reference(oop referrer, oop referree, jint slot) argument
2964 int slot = field->field_index(); local
2973 int slot = field->field_index(); local
3013 int slot = field->field_index(); local
3022 int slot = field->field_index(); local
[all...]

Completed in 848 milliseconds

12345