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/types/IntType.java
/* * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.nashorn.internal.codegen.types; import static jdk.internal.org.objectweb.asm.Opcodes.BIPUSH; import static jdk.internal.org.objectweb.asm.Opcodes.I2D; import static jdk.internal.org.objectweb.asm.Opcodes.I2L; import static jdk.internal.org.objectweb.asm.Opcodes.IADD; import static jdk.internal.org.objectweb.asm.Opcodes.IAND; import static jdk.internal.org.objectweb.asm.Opcodes.ICONST_0; import static jdk.internal.org.objectweb.asm.Opcodes.ICONST_1; import static jdk.internal.org.objectweb.asm.Opcodes.ICONST_2; import static jdk.internal.org.objectweb.asm.Opcodes.ICONST_3; import static jdk.internal.org.objectweb.asm.Opcodes.ICONST_4; import static jdk.internal.org.objectweb.asm.Opcodes.ICONST_5; import static jdk.internal.org.objectweb.asm.Opcodes.ICONST_M1; import static jdk.internal.org.objectweb.asm.Opcodes.ILOAD; import static jdk.internal.org.objectweb.asm.Opcodes.IMUL; import static jdk.internal.org.objectweb.asm.Opcodes.INEG; import static jdk.internal.org.objectweb.asm.Opcodes.IOR; import static jdk.internal.org.objectweb.asm.Opcodes.IRETURN; import static jdk.internal.org.objectweb.asm.Opcodes.ISHL; import static jdk.internal.org.objectweb.asm.Opcodes.ISHR; import static jdk.internal.org.objectweb.asm.Opcodes.ISTORE; import static jdk.internal.org.objectweb.asm.Opcodes.ISUB; import static jdk.internal.org.objectweb.asm.Opcodes.IUSHR; import static jdk.internal.org.objectweb.asm.Opcodes.IXOR; import static jdk.internal.org.objectweb.asm.Opcodes.SIPUSH; import static jdk.nashorn.internal.codegen.CompilerConstants.staticCallNoLookup; import static jdk.nashorn.internal.runtime.JSType.UNDEFINED_INT; import static jdk.nashorn.internal.runtime.UnwarrantedOptimismException.INVALID_PROGRAM_POINT; import jdk.internal.org.objectweb.asm.MethodVisitor; import jdk.nashorn.internal.codegen.CompilerConstants; import jdk.nashorn.internal.runtime.JSType; /** * Type class: INT */ class IntType extends BitwiseType { private static final long serialVersionUID = 1L; private static final CompilerConstants.Call TO_STRING = staticCallNoLookup(Integer.class, "toString", String.class, int.class); private static final CompilerConstants.Call VALUE_OF = staticCallNoLookup(Integer.class, "valueOf", Integer.class, int.class); protected IntType() { super("int", int.class, 2, 1); } @Override public Type nextWider() { return NUMBER; } @Override public Class<?> getBoxedType() { return Integer.class; } @Override public char getBytecodeStackType() { return 'I'; } @Override public Type ldc(final MethodVisitor method, final Object c) { assert c instanceof Integer; final int value = ((Integer) c); switch (value) { case -1: method.visitInsn(ICONST_M1); break; case 0: method.visitInsn(ICONST_0); break; case 1: method.visitInsn(ICONST_1); break; case 2: method.visitInsn(ICONST_2); break; case 3: method.visitInsn(ICONST_3); break; case 4: method.visitInsn(ICONST_4); break; case 5: method.visitInsn(ICONST_5); break; default: if (value == (byte) value) { method.visitIntInsn(BIPUSH, value); } else if (value == (short) value) { method.visitIntInsn(SIPUSH, value); } else { method.visitLdcInsn(c); } break; } return Type.INT; } @Override public Type convert(final MethodVisitor method, final Type to) { if (to.isEquivalentTo(this)) { return to; } if (to.isNumber()) { method.visitInsn(I2D); } else if (to.isLong()) { method.visitInsn(I2L); } else if (to.isBoolean()) { invokestatic(method, JSType.TO_BOOLEAN_I); } else if (to.isString()) { invokestatic(method, TO_STRING); } else if (to.isObject()) { invokestatic(method, VALUE_OF); } else { throw new UnsupportedOperationException("Illegal conversion " + this + " -> " + to); } return to; } @Override public Type add(final MethodVisitor method, final int programPoint) { if(programPoint == INVALID_PROGRAM_POINT) { method.visitInsn(IADD); } else { ldc(method, programPoint); JSType.ADD_EXACT.invoke(method); } return INT; } @Override public Type shr(final MethodVisitor method) { method.visitInsn(IUSHR); return INT; } @Override public Type sar(final MethodVisitor method) { method.visitInsn(ISHR); return INT; } @Override public Type shl(final MethodVisitor method) { method.visitInsn(ISHL); return INT; } @Override public Type and(final MethodVisitor method) { method.visitInsn(IAND); return INT; } @Override public Type or(final MethodVisitor method) { method.visitInsn(IOR); return INT; } @Override public Type xor(final MethodVisitor method) { method.visitInsn(IXOR); return INT; } @Override public Type load(final MethodVisitor method, final int slot) { assert slot != -1; method.visitVarInsn(ILOAD, slot); return INT; } @Override public void store(final MethodVisitor method, final int slot) { assert slot != -1; method.visitVarInsn(ISTORE, slot); } @Override public Type sub(final MethodVisitor method, final int programPoint) { if(programPoint == INVALID_PROGRAM_POINT) { method.visitInsn(ISUB); } else { ldc(method, programPoint); JSType.SUB_EXACT.invoke(method); } return INT; } @Override public Type mul(final MethodVisitor method, final int programPoint) { if(programPoint == INVALID_PROGRAM_POINT) { method.visitInsn(IMUL); } else { ldc(method, programPoint); JSType.MUL_EXACT.invoke(method); } return INT; } @Override public Type div(final MethodVisitor method, final int programPoint) { if (programPoint == INVALID_PROGRAM_POINT) { JSType.DIV_ZERO.invoke(method); } else { ldc(method, programPoint); JSType.DIV_EXACT.invoke(method); } return INT; } @Override public Type rem(final MethodVisitor method, final int programPoint) { if (programPoint == INVALID_PROGRAM_POINT) { JSType.REM_ZERO.invoke(method); } else { ldc(method, programPoint); JSType.REM_EXACT.invoke(method); } return INT; } @Override public Type neg(final MethodVisitor method, final int programPoint) { if(programPoint == INVALID_PROGRAM_POINT) { method.visitInsn(INEG); } else { ldc(method, programPoint); JSType.NEGATE_EXACT.invoke(method); } return INT; } @Override public void _return(final MethodVisitor method) { method.visitInsn(IRETURN); } @Override public Type loadUndefined(final MethodVisitor method) { method.visitLdcInsn(UNDEFINED_INT); return INT; } @Override public Type loadForcedInitializer(final MethodVisitor method) { method.visitInsn(ICONST_0); return INT; } @Override public Type cmp(final MethodVisitor method, final boolean isCmpG) { throw new UnsupportedOperationException("cmp" + (isCmpG ? 'g' : 'l')); } @Override public Type cmp(final MethodVisitor method) { throw new UnsupportedOperationException("cmp"); } }
⏎ jdk/nashorn/internal/codegen/types/IntType.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, 83743👍, 0💬
Popular Posts:
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...
How to download and install ojdbc7.jar for Oracle 12c R1? ojdbc8.jar for Oracle 12c R1 is a Java 7 a...
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
A stream buffer is a stream-based representation of an XML infoset in Java. Stream buffers are desig...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...