blob: 1a44d0fdb58df2077cd533bb588e8bc0def5066c [file] [log] [blame]
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +05301/* Copyright (C) 2018 The Android Open Source Project
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef ART_COMPILER_OPTIMIZING_INSTRUCTION_SIMPLIFIER_X86_SHARED_H_
17#define ART_COMPILER_OPTIMIZING_INSTRUCTION_SIMPLIFIER_X86_SHARED_H_
18
Vladimír Marko434d9682022-11-04 14:04:17 +000019#include "base/macros.h"
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +053020#include "nodes.h"
21
Vladimír Marko434d9682022-11-04 14:04:17 +000022namespace art HIDDEN {
23
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +053024bool TryCombineAndNot(HAnd* instruction);
25bool TryGenerateResetLeastSetBit(HAnd* instruction);
26bool TryGenerateMaskUptoLeastSetBit(HXor* instruction);
27bool AreLeastSetBitInputs(HInstruction* to_test, HInstruction* other);
Vladimír Marko434d9682022-11-04 14:04:17 +000028
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +053029} // namespace art
30
31#endif // ART_COMPILER_OPTIMIZING_INSTRUCTION_SIMPLIFIER_X86_SHARED_H_
32