Skip to content

Port some ClassfileParser changes from scalac #2229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 25 additions & 9 deletions compiler/src/dotty/tools/dotc/core/classfile/ClassfileParser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Contexts._, Symbols._, Types._, Names._, StdNames._, NameOps._, Scopes._,
import SymDenotations._, unpickleScala2.Scala2Unpickler._, Constants._, Annotations._, util.Positions._
import NameKinds.{ModuleClassName, DefaultGetterName}
import ast.tpd._
import java.io.{ File, IOException }
import java.io.{ ByteArrayInputStream, DataInputStream, File, IOException }
import java.lang.Integer.toHexString
import scala.collection.{ mutable, immutable }
import scala.collection.mutable.{ ListBuffer, ArrayBuffer }
Expand Down Expand Up @@ -194,13 +194,21 @@ class ClassfileParser(
val name = pool.getName(in.nextChar)
val isConstructor = name eq nme.CONSTRUCTOR

/** Strip leading outer param from constructor.
* Todo: Also strip trailing access tag for private inner constructors?
/** Strip leading outer param from constructor and trailing access tag for
* private inner constructors.
*/
def stripOuterParamFromConstructor() = innerClasses.get(currentClassName) match {
def normalizeConstructorParams() = innerClasses.get(currentClassName) match {
case Some(entry) if !isStatic(entry.jflags) =>
val mt @ MethodTpe(paramNames, paramTypes, resultType) = denot.info
denot.info = mt.derivedLambdaType(paramNames.tail, paramTypes.tail, resultType)
var normalizedParamNames = paramNames.tail
var normalizedParamTypes = paramTypes.tail
if ((jflags & JAVA_ACC_SYNTHETIC) != 0) {
// SI-7455 strip trailing dummy argument ("access constructor tag") from synthetic constructors which
// are added when an inner class needs to access a private constructor.
normalizedParamNames = paramNames.dropRight(1)
normalizedParamTypes = paramTypes.dropRight(1)
}
denot.info = mt.derivedLambdaType(normalizedParamNames, normalizedParamTypes, resultType)
case _ =>
}

Expand All @@ -216,7 +224,7 @@ class ClassfileParser(

denot.info = pool.getType(in.nextChar)
if (isEnum) denot.info = ConstantType(Constant(sym))
if (isConstructor) stripOuterParamFromConstructor()
if (isConstructor) normalizeConstructorParams()
setPrivateWithin(denot, jflags)
denot.info = translateTempPoly(parseAttributes(sym, denot.info))
if (isConstructor) normalizeConstructorInfo()
Expand All @@ -227,8 +235,12 @@ class ClassfileParser(
// seal java enums
if (isEnum) {
val enumClass = sym.owner.linkedClass
if (!(enumClass is Flags.Sealed)) enumClass.setFlag(Flags.AbstractSealed)
enumClass.addAnnotation(Annotation.makeChild(sym))
if (!enumClass.exists)
ctx.warning(s"no linked class for java enum $sym in ${sym.owner}. A referencing class file might be missing an InnerClasses entry.")
else {
if (!(enumClass is Flags.Sealed)) enumClass.setFlag(Flags.AbstractSealed)
enumClass.addAnnotation(Annotation.makeChild(sym))
}
}
} finally {
in.bp = oldbp
Expand Down Expand Up @@ -923,12 +935,16 @@ class ClassfileParser(
case null =>
val start = starts(index)
if (in.buf(start).toInt != CONSTANT_UTF8) errorBadTag(start)
val name = termName(in.buf, start + 3, in.getChar(start + 1))
val len = in.getChar(start + 1).toInt
val name = termName(fromMUTF8(in.buf, start + 1, len + 2))
values(index) = name
name
}
}

private def fromMUTF8(bytes: Array[Byte], offset: Int, len: Int): String =
new DataInputStream(new ByteArrayInputStream(bytes, offset, len)).readUTF

/** Return the name found at given index in the constant pool, with '/' replaced by '.'. */
def getExternalName(index: Int): SimpleTermName = {
if (index <= 0 || len <= index)
Expand Down
File renamed without changes.
20 changes: 20 additions & 0 deletions tests/run/t9915/C_1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* javac: -encoding UTF-8
*/
public class C_1 {
public static final String NULLED = "X\000ABC";
public static final String SUPPED = "𐒈𐒝𐒑𐒛𐒐𐒘𐒕𐒖";

public String nulled() {
return C_1.NULLED;
}
public String supped() {
return C_1.SUPPED;
}
public int nulledSize() {
return C_1.NULLED.length();
}
public int suppedSize() {
return C_1.SUPPED.length();
}
}
12 changes: 12 additions & 0 deletions tests/run/t9915/Test_2.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

object Test extends App {
val c = new C_1
assert(c.nulled == "X\u0000ABC") // "X\000ABC"
assert(c.supped == "𐒈𐒝𐒑𐒛𐒐𐒘𐒕𐒖")

assert(C_1.NULLED == "X\u0000ABC") // "X\000ABC"
assert(C_1.SUPPED == "𐒈𐒝𐒑𐒛𐒐𐒘𐒕𐒖")

assert(C_1.NULLED.size == "XYABC".size)
assert(C_1.SUPPED.codePointCount(0, C_1.SUPPED.length) == 8)
}