blob: 4fa12b80cd4b2064731952eefc77592bf5822516 [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.jack.transformations;
import com.android.jack.library.DumpInLibrary;
import com.android.jack.transformations.ast.BoostLockedRegionPriority;
import com.android.jack.util.ClassNameCodec;
import com.android.jack.util.MethodNameCodec;
import com.android.jack.util.MethodNameCodec.MethodNameValue;
import com.android.sched.item.Description;
import com.android.sched.item.Feature;
import com.android.sched.item.Name;
import com.android.sched.util.codec.ListCodec;
import com.android.sched.util.config.HasKeyId;
import com.android.sched.util.config.category.Private;
import com.android.sched.util.config.id.BooleanPropertyId;
import com.android.sched.util.config.id.PropertyId;
import java.util.List;
import javax.annotation.Nonnull;
/**
* Feature used to indicate if {@link BoostLockedRegionPriority} is turned on.
*/
@HasKeyId
@Name("BoostLockedRegionPriorityFeature")
@Description("Feature turning on BoostLockedRegionPriorityFeature")
public final class BoostLockedRegionPriorityFeature implements Feature {
@Nonnull
public static final BooleanPropertyId ENABLE =
BooleanPropertyId.create(
"jack.transformations.boost-locked-region-priority",
"Boost priority of threads acquiring certain locks")
.addCategory(Private.class)
.addDefaultValue(Boolean.FALSE)
.addCategory(DumpInLibrary.class);
@Nonnull
public static final PropertyId<List<String>> BOOST_LOCK_CLASSNAME =
PropertyId.create(
"jack.transformations.boost-locked-region-priority.classname",
"The class signatures where acquiring it as a lock should boost a thread's prioirty",
new ListCodec<String>(new ClassNameCodec()))
.requiredIf(BoostLockedRegionPriorityFeature.ENABLE.getValue().isTrue())
.addCategory(Private.class)
.addCategory(DumpInLibrary.class);
@Nonnull
public static final PropertyId<List<MethodNameValue>> BOOST_LOCK_REQUEST_METHOD =
PropertyId.create(
"jack.transformations.boost-locked-region-priority.request",
"Static methods in the specified classes that can boost a thread's prioirty",
new ListCodec<MethodNameValue>(new MethodNameCodec()))
.requiredIf(BoostLockedRegionPriorityFeature.ENABLE.getValue().isTrue())
.addCategory(Private.class)
.addCategory(DumpInLibrary.class);
@Nonnull
public static final PropertyId<List<MethodNameValue>> BOOST_LOCK_RESET_METHOD =
PropertyId.create(
"jack.transformations.boost-locked-region-priority.reset",
"Static methods in the specified classes that can reset a thread's prioirty",
new ListCodec<MethodNameValue>(new MethodNameCodec()))
.requiredIf(BoostLockedRegionPriorityFeature.ENABLE.getValue().isTrue())
.addCategory(Private.class)
.addCategory(DumpInLibrary.class);
}