Searched refs:locals (Results 76 - 100 of 105) sorted by relevance

12345

/openjdk9/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.cpp628 // validate locals
630 address locals = (address) *interpreter_frame_locals_addr();
632 if (locals > thread->stack_base() || locals < (address) fp()) return false;
/openjdk9/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp133 _locals[i] = src->locals()[i];
170 // Only need to compare type elements up to target->locals() or target->stack().
175 _locals, target->locals(), target->locals_size(), THREAD);
248 "get long/double overflows locals");
342 str->indent().print("locals: {");
/openjdk9/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp290 DebugToken* locals,
327 // serialize the locals/expressions/monitors
328 stream()->write_int((intptr_t) locals);
282 describe_scope(int pc_offset, const methodHandle& methodH, ciMethod* method, int bci, bool reexecute, bool rethrow_exception, bool is_method_handle_invoke, bool return_oop, DebugToken* locals, DebugToken* expressions, DebugToken* monitors) argument
/openjdk9/hotspot/src/cpu/s390/vm/
H A Dframe_s390.inline.hpp161 return (intptr_t**) &(ijava_state()->locals);
H A Dframe_s390.cpp485 DESCRIBE_ADDRESS(locals);
H A Dinterp_masm_s390.cpp99 // check if the locals pointer in Z_locals is correct
100 z_cg(Z_locals, _z_ijava_state_neg(locals), Z_fp);
102 reentry = stop_chain_static(reentry, "invalid locals pointer Z_locals: " FILE_AND_LINE);
659 z_lg(Z_locals, Address(Z_fp, _z_ijava_state_neg(locals)));
/openjdk9/hotspot/src/cpu/ppc/vm/
H A Dframe_ppc.cpp222 DESCRIBE_ADDRESS(locals);
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DClassReader.java1595 // visits the max stack and max locals values
2004 Object[] locals = frame.local;
2008 locals[local++] = Opcodes.UNINITIALIZED_THIS;
2010 locals[local++] = readClass(header + 2, frame.buffer);
2022 locals[local++] = Opcodes.INTEGER;
2025 locals[local++] = Opcodes.FLOAT;
2028 locals[local++] = Opcodes.LONG;
2031 locals[local++] = Opcodes.DOUBLE;
2043 locals[local++] = desc.substring(j, ++i);
2049 locals[loca
[all...]
H A DMethodWriter.java77 * Frame has exactly the same locals as the previous stack map frame and
83 * Frame has exactly the same locals as the previous stack map frame and
94 * Frame has exactly the same locals as the previous stack map frame and
100 * Frame where current locals are the same as the locals in the previous
101 * frame, except that the k last locals are absent. The value of k is given
107 * Frame has exactly the same locals as the previous stack map frame and
113 * Frame where current locals are the same as the locals in the previous
114 * frame, except that k additional locals ar
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java1061 List locals = sd.getLocals();
1062 if (locals != null) {
1065 buf.append(genHTMLForLocals(sd, locals));
1346 protected String genHTMLForScopeValues(ScopeDesc sd, boolean locals, List values) { argument
1349 buf.append(locals? "locals " : "expressions ");
1356 if (locals) {
1381 protected String genHTMLForLocals(ScopeDesc sd, List locals) { argument
1382 return genHTMLForScopeValues(sd, true, locals);
/openjdk9/hotspot/src/share/vm/adlc/
H A Dformssel.hpp957 virtual void append_components(FormDict& locals, ComponentList& components,
1016 virtual void append_components(FormDict& locals, ComponentList& components, bool def_flag = false) const;
H A Dformssel.cpp3225 void MatchNode::append_components(FormDict& locals, ComponentList& components, argument
3246 if (_lChild) _lChild->append_components(locals, components, tmpdef_flag);
3248 if (_rChild) _rChild->append_components(locals, components, tmpdef_flag);
3903 void MatchRule::append_components(FormDict& locals, ComponentList& components, bool def_flag) const { argument
3906 MatchNode::append_components(locals, components,
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java495 LocalVariableGen[] locals = null;
535 locals = new LocalVariableGen[allVarsEverDeclared.size()];
536 allVarsEverDeclared.toArray(locals);
538 return locals;
1244 // variables that are used by the outlined method. Only locals whose
1300 // oldMethCoypInIL - from locals in old method into an instance
1302 // oldMethCopyOutIL - from CopyLocals back into locals in the old
1304 // newMethCopyInIL - from CopyLocals into locals in the new
1306 // newMethCopyOutIL - from locals in new method into the instance
1313 // Allocate instance of class in which we'll copy in or copy out locals
[all...]
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DClassWriter.java765 for (verification_type_info l: frame.locals)
773 out.writeShort(frame.locals.length);
774 for (verification_type_info l: frame.locals)
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DRecompilableScriptFunctionData.java644 final ScriptObject locals = Global.newEmptyInstance();
645 locals.setProto(runtimeScope);
646 return locals;
/openjdk9/hotspot/src/share/vm/services/
H A DheapDumper.cpp1648 StackValueCollection* locals = jvf->locals(); local
1649 for (int slot=0; slot<locals->size(); slot++) {
1650 if (locals->at(slot)->type() == T_OBJECT) {
1651 oop o = locals->obj_at(slot)();
1676 // JNI locals for the top frame.
1680 // JNI locals for the entry frame
1691 // externalVFrame - if it's an entry frame then report any JNI locals
1702 // no last java frame but there may be JNI locals
1710 // the stack so that locals an
[all...]
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DLambdaToMethod.java324 //As the lambda body is translated, all references to lambda locals,
342 // * enclosing locals captured by the lambda expression
354 //add captured locals
1190 * More specifically, it keeps track of the enclosing contexts and captured locals
1701 sym.owner.kind == MTH) { //only locals are captured
1708 if (block.locals != null && block.locals.contains(sym)) {
1781 List<Symbol> locals; field in class:LambdaToMethod.LambdaAnalyzerPreprocessor.Frame
1788 if (locals == null) {
1789 locals
[all...]
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp638 // Add uses of live locals from interpreter's point of view for proper debug information generation
1384 // Add uses of live locals from interpreter's point of view for proper
2316 if (d1->locals() != NULL) {
2317 assert(d1->locals() != NULL && d2->locals() != NULL, "not equal");
2318 assert(d1->locals()->length() == d2->locals()->length(), "not equal");
2319 for (int i = 0; i < d1->locals()->length(); i++) {
2320 assert_equal(d1->locals()->at(i), d2->locals()
2881 GrowableArray<ScopeValue*>* locals = NULL; local
[all...]
/openjdk9/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp2613 // A supporting closure used to process JNI locals
2667 // - For each java thread then all locals and JNI local references
3058 // Walk the stack of a given thread and find all references (locals
3099 StackValueCollection* locals = jvf->locals(); local
3100 for (int slot=0; slot<locals->size(); slot++) {
3101 if (locals->at(slot)->type() == T_OBJECT) {
3102 oop o = locals->obj_at(slot)();
3125 bci, locals->size() + index, o)) {
3139 // JNI locals fo
[all...]
/openjdk9/hotspot/src/share/vm/jvmci/
H A DjvmciCodeInstaller.cpp1037 JVMCI_ERROR("unexpected values length %d in scope (%d locals, %d expressions, %d monitors)", values->length(), local_count, expression_count, monitor_count);
1040 JVMCI_ERROR("unexpected slotKinds length %d in scope (%d locals, %d expressions)", slotKinds->length(), local_count, expression_count);
1043 GrowableArray<ScopeValue*>* locals = local_count > 0 ? new GrowableArray<ScopeValue*> (local_count) : NULL; local
1048 TRACE_jvmci_2("%d locals %d expressions, %d monitors", local_count, expression_count, monitor_count);
1057 locals->append(second);
1059 locals->append(first);
1079 locals_token = _debug_recorder->create_scope_values(locals);
H A DjvmciJavaClasses.hpp293 objArrayOop_field(HotSpotStackFrameReference, locals, "[Ljava/lang/Object;") \
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DAttributeWriter.java894 printMap("locals", frame.locals);
909 printMap("locals", frame.locals);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/
H A DBytecodeParser.java880 ValueNode[] locals;
882 locals = new ValueNode[original.getMaxLocals()];
883 for (int i = 0; i < locals.length; i++) {
884 ValueNode node = frameState.locals[i];
888 locals[i] = node;
891 locals = new ValueNode[original.getMaxLocals()];
894 ValueNode param = frameState.locals[i];
898 locals[i] = param;
906 stateAfterStart = graph.add(new FrameState(null, new ResolvedJavaMethodBytecode(original), 0, locals, stack, stackSize, locks, monitorIds, false, false));
1979 * Clear non-live locals earl
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java78 * Frame has exactly the same locals as the previous stack map frame and
84 * Frame has exactly the same locals as the previous stack map frame and
95 * Frame has exactly the same locals as the previous stack map frame and
101 * Frame where current locals are the same as the locals in the previous
102 * frame, except that the k last locals are absent. The value of k is given
108 * Frame has exactly the same locals as the previous stack map frame and
114 * Frame where current locals are the same as the locals in the previous
115 * frame, except that k additional locals ar
[all...]
/openjdk9/jdk/test/java/lang/invoke/indify/
H A DIndify.java1591 public short stacks, locals; field in class:Indify.Code
1597 stacks = in.readShort(); locals = in.readShort();
1602 writeOutputs(out, stacks, locals, bytes.length, bytes, etable, attrs);

Completed in 516 milliseconds

12345