blob: aaf5c0c1209e5a930ba227bbc9d8225ed2228f08 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro69759ea2011-07-21 18:13:35 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_OFFSETS_H_
18#define ART_RUNTIME_OFFSETS_H_
Carl Shapiro69759ea2011-07-21 18:13:35 -070019
Ian Rogerscf7f1912014-10-22 22:06:39 -070020#include <ostream>
21
Andreas Gampe542451c2016-07-26 09:02:02 -070022#include "base/enums.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070023#include "globals.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070024
25namespace art {
26
Ian Rogersef7d42f2014-01-06 12:55:46 -080027// Allow the meaning of offsets to be strongly typed.
Carl Shapiro69759ea2011-07-21 18:13:35 -070028class Offset {
29 public:
30 explicit Offset(size_t val) : val_(val) {}
31 int32_t Int32Value() const {
32 return static_cast<int32_t>(val_);
33 }
34 uint32_t Uint32Value() const {
35 return static_cast<uint32_t>(val_);
36 }
Hiroshi Yamauchiaa866f52014-03-21 16:18:30 -070037 size_t SizeValue() const {
38 return val_;
39 }
40
Carl Shapiro69759ea2011-07-21 18:13:35 -070041 protected:
42 size_t val_;
43};
44std::ostream& operator<<(std::ostream& os, const Offset& offs);
45
Ian Rogersef7d42f2014-01-06 12:55:46 -080046// Offsets relative to the current frame.
Carl Shapiro69759ea2011-07-21 18:13:35 -070047class FrameOffset : public Offset {
48 public:
49 explicit FrameOffset(size_t val) : Offset(val) {}
50 bool operator>(FrameOffset other) const { return val_ > other.val_; }
51 bool operator<(FrameOffset other) const { return val_ < other.val_; }
52};
53
Ian Rogersef7d42f2014-01-06 12:55:46 -080054// Offsets relative to the current running thread.
Andreas Gampe542451c2016-07-26 09:02:02 -070055template<PointerSize pointer_size>
Carl Shapiro69759ea2011-07-21 18:13:35 -070056class ThreadOffset : public Offset {
57 public:
58 explicit ThreadOffset(size_t val) : Offset(val) {}
59};
60
Andreas Gampe542451c2016-07-26 09:02:02 -070061using ThreadOffset32 = ThreadOffset<PointerSize::k32>;
62using ThreadOffset64 = ThreadOffset<PointerSize::k64>;
63
Ian Rogersef7d42f2014-01-06 12:55:46 -080064// Offsets relative to an object.
Carl Shapiro69759ea2011-07-21 18:13:35 -070065class MemberOffset : public Offset {
66 public:
67 explicit MemberOffset(size_t val) : Offset(val) {}
68};
69
70} // namespace art
71
Brian Carlstromfc0e3212013-07-17 14:40:12 -070072#endif // ART_RUNTIME_OFFSETS_H_