/
niceSOFT
/
openjdk21
Обзор
Документация
Войти
/
niceSOFT
/
openjdk21
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.base/share/classes/jdk/internal/classfile/impl/Options.java
82 строки
4 KB
Chen Liang
8304425: ClassHierarchyResolver from Reflection
08 июн 2023, 10:29
08 июн 2023, 10:29
ac3ce2b
Код
Авторство
О чём код?
/* * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package jdk.internal.classfile.impl; import java.util.Collection; import java.util.function.Function; import jdk.internal.classfile.AttributeMapper; import jdk.internal.classfile.ClassHierarchyResolver; import jdk.internal.classfile.Classfile; import jdk.internal.classfile.constantpool.Utf8Entry; import static jdk.internal.classfile.ClassHierarchyResolver.defaultResolver; public class Options { public enum Key { GENERATE_STACK_MAPS, PROCESS_DEBUG, PROCESS_LINE_NUMBERS, PROCESS_UNKNOWN_ATTRIBUTES, CP_SHARING, FIX_SHORT_JUMPS, PATCH_DEAD_CODE, HIERARCHY_RESOLVER, ATTRIBUTE_MAPPER, FILTER_DEAD_LABELS; } public record OptionValue(Key key, Object value) implements Classfile.Option { } public Boolean generateStackmaps = true; public Boolean processDebug = true; public Boolean processLineNumbers = true; public Boolean processUnknownAttributes = true; public Boolean cpSharing = true; public Boolean fixJumps = true; public Boolean patchCode = true; public Boolean filterDeadLabels = false; public ClassHierarchyResolver classHierarchyResolver = defaultResolver(); public Function<Utf8Entry, AttributeMapper<?>> attributeMapper = new Function<>() { @Override public AttributeMapper<?> apply(Utf8Entry k) { return null; } }; @SuppressWarnings("unchecked") public Options(Collection<Classfile.Option> options) { for (var o : options) { var ov = ((OptionValue)o); var v = ov.value(); switch (ov.key()) { case GENERATE_STACK_MAPS -> generateStackmaps = (Boolean) v; case PROCESS_DEBUG -> processDebug = (Boolean) v; case PROCESS_LINE_NUMBERS -> processLineNumbers = (Boolean) v; case PROCESS_UNKNOWN_ATTRIBUTES -> processUnknownAttributes = (Boolean) v; case CP_SHARING -> cpSharing = (Boolean) v; case FIX_SHORT_JUMPS -> fixJumps = (Boolean) v; case PATCH_DEAD_CODE -> patchCode = (Boolean) v; case HIERARCHY_RESOLVER -> classHierarchyResolver = (ClassHierarchyResolver) v; case ATTRIBUTE_MAPPER -> attributeMapper = (Function<Utf8Entry, AttributeMapper<?>>) v; case FILTER_DEAD_LABELS -> filterDeadLabels = (Boolean) v; } } } }