Searched refs:typeInStackMapFrame (Results 1 – 1 of 1) sorted by relevance
862 private InferredType convertTypeInStackMapFrame(Object typeInStackMapFrame) { in convertTypeInStackMapFrame() argument863 if (typeInStackMapFrame == Opcodes.TOP) { in convertTypeInStackMapFrame()865 } else if (typeInStackMapFrame == Opcodes.INTEGER) { in convertTypeInStackMapFrame()867 } else if (typeInStackMapFrame == Opcodes.FLOAT) { in convertTypeInStackMapFrame()869 } else if (typeInStackMapFrame == Opcodes.DOUBLE) { in convertTypeInStackMapFrame()871 } else if (typeInStackMapFrame == Opcodes.LONG) { in convertTypeInStackMapFrame()873 } else if (typeInStackMapFrame == Opcodes.NULL) { in convertTypeInStackMapFrame()875 } else if (typeInStackMapFrame == Opcodes.UNINITIALIZED_THIS) { in convertTypeInStackMapFrame()877 } else if (typeInStackMapFrame instanceof String) { in convertTypeInStackMapFrame()878 String referenceTypeName = (String) typeInStackMapFrame; in convertTypeInStackMapFrame()[all …]