|
|
@ -27,6 +27,7 @@ import org.jetbrains.java.decompiler.modules.decompiler.ExprProcessor; |
|
|
|
import org.jetbrains.java.decompiler.modules.decompiler.vars.VarProcessor; |
|
|
|
import org.jetbrains.java.decompiler.modules.decompiler.vars.VarProcessor; |
|
|
|
import org.jetbrains.java.decompiler.modules.decompiler.vars.VarTypeProcessor; |
|
|
|
import org.jetbrains.java.decompiler.modules.decompiler.vars.VarTypeProcessor; |
|
|
|
import org.jetbrains.java.decompiler.modules.decompiler.vars.VarVersionPair; |
|
|
|
import org.jetbrains.java.decompiler.modules.decompiler.vars.VarVersionPair; |
|
|
|
|
|
|
|
import org.jetbrains.java.decompiler.struct.StructMethod; |
|
|
|
import org.jetbrains.java.decompiler.struct.attr.StructGeneralAttribute; |
|
|
|
import org.jetbrains.java.decompiler.struct.attr.StructGeneralAttribute; |
|
|
|
import org.jetbrains.java.decompiler.struct.attr.StructLocalVariableTableAttribute; |
|
|
|
import org.jetbrains.java.decompiler.struct.attr.StructLocalVariableTableAttribute; |
|
|
|
import org.jetbrains.java.decompiler.struct.attr.StructLocalVariableTypeTableAttribute; |
|
|
|
import org.jetbrains.java.decompiler.struct.attr.StructLocalVariableTypeTableAttribute; |
|
|
@ -105,14 +106,17 @@ public class VarExprent extends Exprent { |
|
|
|
tracer.incrementCurrentSourceLine(buffer.countLines()); |
|
|
|
tracer.incrementCurrentSourceLine(buffer.countLines()); |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
else { |
|
|
|
VarVersionPair varVersion = new VarVersionPair(index, version); |
|
|
|
VarVersionPair varVersion = getVarVersionPair(); |
|
|
|
String name = getName(varVersion); |
|
|
|
String name = null; |
|
|
|
|
|
|
|
if (processor != null) { |
|
|
|
|
|
|
|
name = processor.getVarName(varVersion); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (definition) { |
|
|
|
if (definition) { |
|
|
|
if (processor != null && processor.getVarFinal(varVersion) == VarTypeProcessor.VAR_EXPLICIT_FINAL) { |
|
|
|
if (processor != null && processor.getVarFinal(varVersion) == VarTypeProcessor.VAR_EXPLICIT_FINAL) { |
|
|
|
buffer.append("final "); |
|
|
|
buffer.append("final "); |
|
|
|
} |
|
|
|
} |
|
|
|
appendDefinitionType(buffer, varVersion); |
|
|
|
appendDefinitionType(buffer); |
|
|
|
buffer.append(" "); |
|
|
|
buffer.append(" "); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -122,36 +126,31 @@ public class VarExprent extends Exprent { |
|
|
|
return buffer; |
|
|
|
return buffer; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private String getName(VarVersionPair varVersion) { |
|
|
|
public VarVersionPair getVarVersionPair() { |
|
|
|
String name = null; |
|
|
|
return new VarVersionPair(index, version); |
|
|
|
if (DecompilerContext.getOption(IFernflowerPreferences.USE_DEBUG_VAR_NAMES)) { |
|
|
|
} |
|
|
|
MethodWrapper method = (MethodWrapper)DecompilerContext.getProperty(DecompilerContext.CURRENT_METHOD_WRAPPER); |
|
|
|
|
|
|
|
if (method != null) { |
|
|
|
public String getDebugName(StructMethod method) { |
|
|
|
StructLocalVariableTableAttribute attr = method.methodStruct.getLocalVariableAttr(); |
|
|
|
StructLocalVariableTableAttribute attr = method.getLocalVariableAttr(); |
|
|
|
if (attr != null && processor != null) { |
|
|
|
if (attr != null && processor != null) { |
|
|
|
Integer index = processor.getVarOriginalIndex(varVersion); |
|
|
|
Integer origIndex = processor.getVarOriginalIndex(index); |
|
|
|
if (index != null) { |
|
|
|
if (origIndex != null) { |
|
|
|
name = attr.getName(index, visibleOffset); |
|
|
|
String name = attr.getName(origIndex, visibleOffset); |
|
|
|
if (name != null && TextUtil.isValidIdentifier(name, method.methodStruct.getClassStruct().getBytecodeVersion())) { |
|
|
|
if (name != null && TextUtil.isValidIdentifier(name, method.getClassStruct().getBytecodeVersion())) { |
|
|
|
return name; |
|
|
|
return name; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (processor != null) { |
|
|
|
return null; |
|
|
|
name = processor.getVarName(varVersion); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return name; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void appendDefinitionType(TextBuffer buffer, VarVersionPair varVersion) { |
|
|
|
private void appendDefinitionType(TextBuffer buffer) { |
|
|
|
if (DecompilerContext.getOption(IFernflowerPreferences.USE_DEBUG_VAR_NAMES)) { |
|
|
|
if (DecompilerContext.getOption(IFernflowerPreferences.USE_DEBUG_VAR_NAMES)) { |
|
|
|
MethodWrapper method = (MethodWrapper)DecompilerContext.getProperty(DecompilerContext.CURRENT_METHOD_WRAPPER); |
|
|
|
MethodWrapper method = (MethodWrapper)DecompilerContext.getProperty(DecompilerContext.CURRENT_METHOD_WRAPPER); |
|
|
|
if (method != null) { |
|
|
|
if (method != null) { |
|
|
|
Integer originalIndex = null; |
|
|
|
Integer originalIndex = null; |
|
|
|
if (processor != null) { |
|
|
|
if (processor != null) { |
|
|
|
originalIndex = processor.getVarOriginalIndex(varVersion); |
|
|
|
originalIndex = processor.getVarOriginalIndex(index); |
|
|
|
} |
|
|
|
} |
|
|
|
if (originalIndex != null) { |
|
|
|
if (originalIndex != null) { |
|
|
|
// first try from signature
|
|
|
|
// first try from signature
|
|
|
@ -208,7 +207,7 @@ public class VarExprent extends Exprent { |
|
|
|
public VarType getVarType() { |
|
|
|
public VarType getVarType() { |
|
|
|
VarType vt = null; |
|
|
|
VarType vt = null; |
|
|
|
if (processor != null) { |
|
|
|
if (processor != null) { |
|
|
|
vt = processor.getVarType(new VarVersionPair(index, version)); |
|
|
|
vt = processor.getVarType(getVarVersionPair()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (vt == null || (varType != null && varType.type != CodeConstants.TYPE_UNKNOWN)) { |
|
|
|
if (vt == null || (varType != null && varType.type != CodeConstants.TYPE_UNKNOWN)) { |
|
|
|