summaryrefslogtreecommitdiffstats
path: root/compiler/dex/reg_storage_eq.h
blob: b688dac7ca93b26292909a02e0cc1e4f9c31ad50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Copyright (C) 2014 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.
 */

#ifndef ART_COMPILER_DEX_REG_STORAGE_EQ_H_
#define ART_COMPILER_DEX_REG_STORAGE_EQ_H_

#include "reg_storage.h"

namespace art {

// Define == and != operators for RegStorage. These are based on exact equality of the reg storage,
// that is, 32b and 64b views of the same physical register won't match. This is often not the
// intended behavior, so be careful when including this header.

inline bool operator==(const RegStorage& lhs, const RegStorage& rhs) {
  return lhs.ExactlyEquals(rhs);
}

inline bool operator!=(const RegStorage& lhs, const RegStorage& rhs) {
  return lhs.NotExactlyEquals(rhs);
}

}  // namespace art

#endif  // ART_COMPILER_DEX_REG_STORAGE_EQ_H_