Searched refs:locals (Results 1 - 25 of 67) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DLocalVariableTable.java43 LocalVariable locals[] = new LocalVariable[8]; field in class:LocalVariableTable
54 if ((locals[i].field == field) && (locals[i].slot == slot) &&
55 (from <= locals[i].to) && (to >= locals[i].from)) {
56 locals[i].from = Math.min(locals[i].from, from);
57 locals[i].to = Math.max(locals[i].to, to);
61 if (len == locals
[all...]
H A DAssembler.java759 void flowFields(Environment env, Label lbl, MemberDefinition locals[]) { argument
760 if (lbl.locals != null) {
762 MemberDefinition f[] = lbl.locals;
764 if (f[i] != locals[i]) {
772 lbl.locals = new MemberDefinition[maxvar];
773 System.arraycopy(locals, 0, lbl.locals, 0, maxvar);
776 System.arraycopy(locals, 0, newlocals, 0, maxvar);
777 locals = newlocals;
793 locals[
[all...]
H A DLabel.java44 MemberDefinition locals[]; field in class:Label
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBlockSym.java37 private List locals; field in class:BasicBlockSym
54 if (locals == null) {
58 return locals.size();
62 return (LocalSym) locals.get(i);
66 if (locals == null) {
67 locals = new ArrayList();
69 locals.add(local);
74 if (locals != null) {
75 for (Iterator iter = locals.iterator(); iter.hasNext(); ) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DbytecodeInterpreter_sparc.hpp82 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)])
83 #define LOCALS_ADDR(offset) ((address)locals[-(offset)])
84 #define LOCALS_INT(offset) (*((jint*)&locals[-(offset)]))
85 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)]))
86 #define LOCALS_OBJECT(offset) ((oop)locals[-(offset)])
87 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d)
88 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l)
89 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)]))
90 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)]))
92 #define SET_LOCALS_SLOT(value, offset) (*(intptr_t*)&locals[
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DbytecodeInterpreter_x86.hpp34 intptr_t* _sender_sp; /* sender's sp before stack (locals) extension */
93 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)])
94 #define LOCALS_ADDR(offset) ((address)locals[-(offset)])
95 #define LOCALS_INT(offset) ((jint)(locals[-(offset)]))
96 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)]))
97 #define LOCALS_OBJECT(offset) ((oop)locals[-(offset)])
98 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d)
99 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l)
100 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)]))
101 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTable.cpp162 VerificationType* locals, int32_t length, int32_t chops) {
163 if (locals == NULL) return -1;
166 if (locals[pos].is_category2_2nd()) {
217 VerificationType* locals = NULL; local
223 // Can't share the locals array since that is updated by the verifier.
225 locals = NEW_RESOURCE_ARRAY_IN_THREAD(
230 locals = pre_frame->locals();
234 max_locals, max_stack, locals, NULL, _verifier);
235 if (first && locals !
161 chop( VerificationType* locals, int32_t length, int32_t chops) argument
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.hpp131 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)])
132 #define LOCALS_ADDR(offset) ((address)locals[-(offset)])
133 #define LOCALS_INT(offset) (*((jint*)&locals[-(offset)]))
134 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)]))
135 #define LOCALS_OBJECT(offset) ((oop)locals[-(offset)])
136 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d)
137 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l)
138 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)]))
139 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)]))
141 #define SET_LOCALS_SLOT(value, offset) (*(intptr_t*)&locals[
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefine-g.sh77 cmd locals
81 cmd locals
85 cmd locals
89 cmd locals
H A DGetLocalVariables3Test.sh57 cmd locals
H A DGetLocalVariables4Test.sh59 cmd locals
H A DNullLocalVariable.sh61 cmd locals ; $sleepcmd
H A DRedefineClearBreakpoint.sh74 cmd next # This is needed to make the crash happen at the 'locals' cmd
76 cmd locals # The crash happens here.
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.cpp49 StackValueCollection* compiledVFrame::locals() const { function in class:compiledVFrame
52 GrowableArray<ScopeValue*>* scv_list = scope()->locals();
67 deferred = list->at(i)->locals();
77 // Replace specified locals with any deferred writes that are present
135 // See if this vframe has already had locals with deferred writes
140 GrowableArray<jvmtiDeferredLocalVariable*>* locals = deferred->at(f)->locals(); local
142 for (l = 0 ; l < locals->length() ; l++ ) {
143 if (locals->at(l)->index() == index) {
144 locals
[all...]
H A Dvframe_hp.hpp36 StackValueCollection* locals() const;
87 // store updated locals in a data structure that contains enough
89 // any updated locals.
105 GrowableArray<jvmtiDeferredLocalVariable*>* locals() const { return _locals; } function in class:jvmtiDeferredLocalVariableSet
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DStackMapWriter.java128 print("StackMap locals: ", m.locals);
217 StackMap m = new StackMap(prev.locals, frame.stack);
226 StackMap m = new StackMap(prev.locals, frame.stack);
236 verification_type_info[] new_locals = new verification_type_info[prev.locals.length - k];
237 System.arraycopy(prev.locals, 0, new_locals, 0, new_locals.length);
255 verification_type_info[] new_locals = new verification_type_info[prev.locals.length + frame.locals.length];
256 System.arraycopy(prev.locals, 0, new_locals, 0, prev.locals
273 StackMap(verification_type_info[] locals, verification_type_info[] stack) argument
278 private final verification_type_info[] locals; field in class:StackMapWriter.StackMap
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp150 intptr_t* locals,
159 * in operand stacks, Java locals, object fields, constant pools.
179 * in Java locals, object fields, constant pools, and
193 VMSlotVal32 s; /* any value from a "slot" or locals[] */
201 inline intptr_t* locals() { return _locals; } function in class:BytecodeInterpreter
558 static address locals_slot(intptr_t* locals, int offset);
559 static jint locals_int(intptr_t* locals, int offset);
560 static jfloat locals_float(intptr_t* locals, int offset);
561 static oop locals_object(intptr_t* locals, int offset);
562 static jdouble locals_double(intptr_t* locals, in
[all...]
H A DbytecodeInterpreter.cpp373 #define CACHE_LOCALS() locals = istate->locals();
488 register intptr_t* locals = istate->locals(); local
658 // oop rcvr = locals[0].j.r;
1009 astore(topOfStack, -1, locals, pc[1]);
1049 astore(topOfStack, -1, locals, reg);
1083 astore(topOfStack, -1, locals, num); \
1240 // locals[pc[1]].j.i += (jbyte)(pc[2]);
2706 // its value is preserved in the monitor. So we can't use locals[
2924 locals_slot(intptr_t* locals, int offset) argument
2927 locals_int(intptr_t* locals, int offset) argument
2930 locals_float(intptr_t* locals, int offset) argument
2933 locals_object(intptr_t* locals, int offset) argument
2936 locals_double(intptr_t* locals, int offset) argument
2939 locals_long(intptr_t* locals, int offset) argument
2944 locals_long_at(intptr_t* locals, int offset) argument
2947 locals_double_at(intptr_t* locals, int offset) argument
2952 set_locals_slot(intptr_t *locals, address value, int offset) argument
2956 set_locals_int(intptr_t *locals, jint value, int offset) argument
2960 set_locals_float(intptr_t *locals, jfloat value, int offset) argument
2964 set_locals_object(intptr_t *locals, oop value, int offset) argument
2968 set_locals_double(intptr_t *locals, jdouble value, int offset) argument
2972 set_locals_long(intptr_t *locals, jlong value, int offset) argument
2976 set_locals_double_from_addr(intptr_t *locals, address addr, int offset) argument
2980 set_locals_long_from_addr(intptr_t *locals, address addr, int offset) argument
2985 astore(intptr_t* tos, int stack_offset, intptr_t* locals, int locals_offset) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DStackMapTable_attribute.java240 locals = new verification_type_info[frame_type - 251];
241 for (int i = 0; i < locals.length; i++)
242 locals[i] = verification_type_info.read(cr);
248 for (verification_type_info local: locals)
262 public final verification_type_info[] locals; field in class:StackMapTable_attribute.append_frame
271 locals = new verification_type_info[number_of_locals];
272 for (int i = 0; i < locals.length; i++)
273 locals[i] = verification_type_info.read(cr);
283 for (verification_type_info local: locals)
301 public final verification_type_info[] locals; field in class:StackMapTable_attribute.full_frame
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatcher.java167 int[] locals; field in class:Matcher
225 locals = new int[parent.localCount];
280 locals = new int[newPattern.localCount];
283 for (int i = 0; i < locals.length; i++)
284 locals[i] = -1;
304 for(int i=0; i<locals.length; i++)
305 locals[i] = -1;
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DContext.java41 LocalMember locals; field in class:Context
59 this.locals = ctx.locals;
93 this.locals = ctx.locals;
148 local.prev = locals;
149 locals = local;
160 for (LocalMember f = locals ; f != null ; f = f.prev) {
225 for (LocalMember f = locals ; f != null ; f = f.prev) {
238 for (LocalMember f = locals ;
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConcreteMethodImpl.java318 * code contains assignments from locals in the enclosing
411 // if there are no locals, there won't be a LVT
422 LocalVariableTableElement[] locals = saMethod.getLocalVariableTable();
423 int localCount = locals.length;
427 saMethod.getConstants().getSymbolAt(locals[ii].getNameCPIndex()).asString();
437 int slot = locals[ii].getSlot();
438 long codeIndex = locals[ii].getStartBCI();
439 int length = locals[ii].getLength();
446 saMethod.getConstants().getSymbolAt(locals[ii].getDescriptorCPIndex()).asString();
448 int genericSigIndex = locals[i
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp744 // possible the compiler emitted some locals as constant values,
755 // can vframe created after this point will have its locals
772 StackValueCollection *locals = _jvf->locals(); local
776 case T_INT: locals->set_int_at (_index, _value.i); break;
777 case T_LONG: locals->set_long_at (_index, _value.j); break;
778 case T_FLOAT: locals->set_float_at (_index, _value.f); break;
779 case T_DOUBLE: locals->set_double_at(_index, _value.d); break;
782 locals->set_obj_at (_index, ob_h);
787 _jvf->set_locals(locals);
794 StackValueCollection *locals = _jvf->locals(); local
[all...]
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DRedefineTest.java197 List locals = frame.visibleVariables();
198 if (locals.size() != lvCnt) {
200 "' locals were '" + locals.size() +
201 "' -- " + errInfo + "' -- " + locals);
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsEnvironment.java251 Enumeration locals = null;
268 locals = ((NetworkInterface)interfaces.nextElement()).getInetAddresses();
269 for (; locals.hasMoreElements();) {
271 if (locals.nextElement().equals(remAddr[i])) {

Completed in 677 milliseconds

123