Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.scripting.nashorn.jmod - Scripting Nashorn Module
JDK 11 jdk.scripting.nashorn.jmod is the JMOD file for JDK 11 Scripting Nashorn module.
JDK 11 Scripting Nashorn module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.scripting.nashorn.jmod.
JDK 11 Scripting Nashorn module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Scripting Nashorn module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.scripting.nashorn.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/nashorn/internal/codegen/CodeGeneratorLexicalContext.java
/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.nashorn.internal.codegen; import java.util.ArrayDeque; import java.util.Collection; import java.util.Collections; import java.util.Deque; import java.util.HashMap; import java.util.Map; import jdk.nashorn.internal.IntDeque; import jdk.nashorn.internal.codegen.types.Type; import jdk.nashorn.internal.ir.Block; import jdk.nashorn.internal.ir.Expression; import jdk.nashorn.internal.ir.FunctionNode; import jdk.nashorn.internal.ir.LexicalContext; import jdk.nashorn.internal.ir.LexicalContextNode; import jdk.nashorn.internal.ir.Node; import jdk.nashorn.internal.ir.Symbol; import jdk.nashorn.internal.ir.WithNode; /** * A lexical context that also tracks if we have any dynamic scopes in the context. Such scopes can have new * variables introduced into them at run time - a with block or a function directly containing an eval call. * Furthermore, this class keeps track of current discard state, which the current method emitter being used is, * the current compile unit, and local variable indexes */ final class CodeGeneratorLexicalContext extends LexicalContext { private int dynamicScopeCount; /** Map of shared scope call sites */ private final Map<SharedScopeCall, SharedScopeCall> scopeCalls = new HashMap<>(); /** Compile unit stack - every time we start a sub method (e.g. a split) we push one */ private final Deque<CompileUnit> compileUnits = new ArrayDeque<>(); /** Method emitter stack - every time we start a sub method (e.g. a split) we push one */ private final Deque<MethodEmitter> methodEmitters = new ArrayDeque<>(); /** The discard stack - whenever we evaluate an expression that will be discarded, we push it on this stack. Various * implementations of expression code emitter can choose to emit code that'll discard the expression themselves, or * ignore it in which case CodeGenerator.loadAndDiscard() will explicitly emit a pop instruction. */ private final Deque<Expression> discard = new ArrayDeque<>(); private final Deque<Map<String, Collection<Label>>> unwarrantedOptimismHandlers = new ArrayDeque<>(); private final Deque<StringBuilder> slotTypesDescriptors = new ArrayDeque<>(); private final IntDeque splitLiterals = new IntDeque(); /** A stack tracking the next free local variable slot in the blocks. There's one entry for every block * currently on the lexical context stack. */ private int[] nextFreeSlots = new int[16]; /** size of next free slot vector */ private int nextFreeSlotsSize; private boolean isWithBoundary(final Object node) { return node instanceof Block && !isEmpty() && peek() instanceof WithNode; } @Override public <T extends LexicalContextNode> T push(final T node) { if (isWithBoundary(node)) { dynamicScopeCount++; } else if (node instanceof FunctionNode) { if (((FunctionNode)node).inDynamicContext()) { dynamicScopeCount++; } splitLiterals.push(0); } return super.push(node); } void enterSplitLiteral() { splitLiterals.getAndIncrement(); pushFreeSlots(methodEmitters.peek().getUsedSlotsWithLiveTemporaries()); } void exitSplitLiteral() { final int count = splitLiterals.decrementAndGet(); assert count >= 0; } @Override public <T extends Node> T pop(final T node) { final T popped = super.pop(node); if (isWithBoundary(node)) { dynamicScopeCount--; assert dynamicScopeCount >= 0; } else if (node instanceof FunctionNode) { if (((FunctionNode)node).inDynamicContext()) { dynamicScopeCount--; assert dynamicScopeCount >= 0; } assert splitLiterals.peek() == 0; splitLiterals.pop(); } return popped; } boolean inDynamicScope() { return dynamicScopeCount > 0; } boolean inSplitLiteral() { return !splitLiterals.isEmpty() && splitLiterals.peek() > 0; } MethodEmitter pushMethodEmitter(final MethodEmitter newMethod) { methodEmitters.push(newMethod); return newMethod; } MethodEmitter popMethodEmitter(final MethodEmitter oldMethod) { assert methodEmitters.peek() == oldMethod; methodEmitters.pop(); return methodEmitters.isEmpty() ? null : methodEmitters.peek(); } void pushUnwarrantedOptimismHandlers() { unwarrantedOptimismHandlers.push(new HashMap<String, Collection<Label>>()); slotTypesDescriptors.push(new StringBuilder()); } Map<String, Collection<Label>> getUnwarrantedOptimismHandlers() { return unwarrantedOptimismHandlers.peek(); } Map<String, Collection<Label>> popUnwarrantedOptimismHandlers() { slotTypesDescriptors.pop(); return unwarrantedOptimismHandlers.pop(); } CompileUnit pushCompileUnit(final CompileUnit newUnit) { compileUnits.push(newUnit); return newUnit; } CompileUnit popCompileUnit(final CompileUnit oldUnit) { assert compileUnits.peek() == oldUnit; final CompileUnit unit = compileUnits.pop(); assert unit.hasCode() : "compile unit popped without code"; unit.setUsed(); return compileUnits.isEmpty() ? null : compileUnits.peek(); } boolean hasCompileUnits() { return !compileUnits.isEmpty(); } Collection<SharedScopeCall> getScopeCalls() { return Collections.unmodifiableCollection(scopeCalls.values()); } /** * Get a shared static method representing a dynamic scope callsite. * * @param unit current compile unit * @param symbol the symbol * @param valueType the value type of the symbol * @param returnType the return type * @param paramTypes the parameter types * @param flags the callsite flags * @param isOptimistic is this an optimistic call * @return an object representing a shared scope call */ SharedScopeCall getScopeCall(final CompileUnit unit, final Symbol symbol, final Type valueType, final Type returnType, final Type[] paramTypes, final int flags, final boolean isOptimistic) { final SharedScopeCall scopeCall = new SharedScopeCall(symbol, valueType, returnType, paramTypes, flags, isOptimistic); if (scopeCalls.containsKey(scopeCall)) { return scopeCalls.get(scopeCall); } scopeCall.setClassAndName(unit, getCurrentFunction().uniqueName(":scopeCall")); scopeCalls.put(scopeCall, scopeCall); return scopeCall; } /** * Get a shared static method representing a dynamic scope get access. * * @param unit current compile unit * @param symbol the symbol * @param valueType the type of the variable * @param flags the callsite flags * @param isOptimistic is this an optimistic get * @return an object representing a shared scope get */ SharedScopeCall getScopeGet(final CompileUnit unit, final Symbol symbol, final Type valueType, final int flags, final boolean isOptimistic) { return getScopeCall(unit, symbol, valueType, valueType, null, flags, isOptimistic); } void onEnterBlock(final Block block) { pushFreeSlots(assignSlots(block, isFunctionBody() ? 0 : getUsedSlotCount())); } private void pushFreeSlots(final int freeSlots) { if (nextFreeSlotsSize == nextFreeSlots.length) { final int[] newNextFreeSlots = new int[nextFreeSlotsSize * 2]; System.arraycopy(nextFreeSlots, 0, newNextFreeSlots, 0, nextFreeSlotsSize); nextFreeSlots = newNextFreeSlots; } nextFreeSlots[nextFreeSlotsSize++] = freeSlots; } int getUsedSlotCount() { return nextFreeSlots[nextFreeSlotsSize - 1]; } void releaseSlots() { --nextFreeSlotsSize; final int undefinedFromSlot = nextFreeSlotsSize == 0 ? 0 : nextFreeSlots[nextFreeSlotsSize - 1]; if(!slotTypesDescriptors.isEmpty()) { slotTypesDescriptors.peek().setLength(undefinedFromSlot); } methodEmitters.peek().undefineLocalVariables(undefinedFromSlot, false); } private int assignSlots(final Block block, final int firstSlot) { int fromSlot = firstSlot; final MethodEmitter method = methodEmitters.peek(); for (final Symbol symbol : block.getSymbols()) { if (symbol.hasSlot()) { symbol.setFirstSlot(fromSlot); final int toSlot = fromSlot + symbol.slotCount(); method.defineBlockLocalVariable(fromSlot, toSlot); fromSlot = toSlot; } } return fromSlot; } static Type getTypeForSlotDescriptor(final char typeDesc) { // Recognizing both lowercase and uppercase as we're using both to signify symbol boundaries; see // MethodEmitter.markSymbolBoundariesInLvarTypesDescriptor(). switch (typeDesc) { case 'I': case 'i': return Type.INT; case 'J': case 'j': return Type.LONG; case 'D': case 'd': return Type.NUMBER; case 'A': case 'a': return Type.OBJECT; case 'U': case 'u': return Type.UNKNOWN; default: throw new AssertionError(); } } void pushDiscard(final Expression expr) { discard.push(expr); } boolean popDiscardIfCurrent(final Expression expr) { if (isCurrentDiscard(expr)) { discard.pop(); return true; } return false; } boolean isCurrentDiscard(final Expression expr) { return discard.peek() == expr; } int quickSlot(final Type type) { return methodEmitters.peek().defineTemporaryLocalVariable(type.getSlots()); } }
⏎ jdk/nashorn/internal/codegen/CodeGeneratorLexicalContext.java
Or download all of them as a single archive file:
File name: jdk.scripting.nashorn-11.0.1-src.zip File size: 1390965 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.scripting.nashorn.shell.jmod - Scripting Nashorn Shell Module
2020-04-25, 83685👍, 0💬
Popular Posts:
What Is ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is the JAR files of ojdbc.jar, ...
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...
JDK 11 jdk.compiler.jmod is the JMOD file for JDK 11 Compiler tool, which can be invoked by the "jav...
Java Cryptography Extension 1.2.2 JAR File Size and Download Location: File name: jce.jar, jce-1.2.2...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...