blob: a1ae67009e9faae0766bf60cb43b234fc67b3c63 [file] [log] [blame]
Nicolas Geoffray76716a62014-05-23 10:14:19 +01001 /*
2 * Copyright (C) 2014 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 */
16
17#include "locations.h"
18
19#include "nodes.h"
20
21namespace art {
22
Andreas Gampe71fb52f2014-12-29 17:43:08 -080023LocationSummary::LocationSummary(HInstruction* instruction,
24 CallKind call_kind,
25 bool intrinsified)
Nicolas Geoffray76716a62014-05-23 10:14:19 +010026 : inputs_(instruction->GetBlock()->GetGraph()->GetArena(), instruction->InputCount()),
Nicolas Geoffray39468442014-09-02 15:17:15 +010027 temps_(instruction->GetBlock()->GetGraph()->GetArena(), 0),
28 environment_(instruction->GetBlock()->GetGraph()->GetArena(),
29 instruction->EnvironmentSize()),
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +000030 output_overlaps_(Location::kOutputOverlap),
Nicolas Geoffray39468442014-09-02 15:17:15 +010031 call_kind_(call_kind),
32 stack_mask_(nullptr),
33 register_mask_(0),
Andreas Gampe71fb52f2014-12-29 17:43:08 -080034 live_registers_(),
35 intrinsified_(intrinsified) {
Nicolas Geoffray76716a62014-05-23 10:14:19 +010036 inputs_.SetSize(instruction->InputCount());
Nicolas Geoffray39468442014-09-02 15:17:15 +010037 for (size_t i = 0; i < instruction->InputCount(); ++i) {
Nicolas Geoffray76716a62014-05-23 10:14:19 +010038 inputs_.Put(i, Location());
39 }
Nicolas Geoffray39468442014-09-02 15:17:15 +010040 environment_.SetSize(instruction->EnvironmentSize());
41 for (size_t i = 0; i < instruction->EnvironmentSize(); ++i) {
42 environment_.Put(i, Location());
43 }
44 instruction->SetLocations(this);
45
46 if (NeedsSafepoint()) {
47 ArenaAllocator* arena = instruction->GetBlock()->GetGraph()->GetArena();
48 stack_mask_ = new (arena) ArenaBitVector(arena, 0, true);
49 }
Nicolas Geoffray76716a62014-05-23 10:14:19 +010050}
51
Nicolas Geoffray96f89a22014-07-11 10:57:49 +010052
53Location Location::RegisterOrConstant(HInstruction* instruction) {
54 return instruction->IsConstant()
55 ? Location::ConstantLocation(instruction->AsConstant())
56 : Location::RequiresRegister();
57}
58
Mark Mendell3f6c7f62015-03-13 13:47:53 -040059Location Location::RegisterOrInt32LongConstant(HInstruction* instruction) {
60 if (!instruction->IsConstant() || !instruction->AsConstant()->IsLongConstant()) {
61 return Location::RequiresRegister();
62 }
63
64 // Does the long constant fit in a 32 bit int?
65 int64_t value = instruction->AsConstant()->AsLongConstant()->GetValue();
66
67 return IsInt<32>(value)
68 ? Location::ConstantLocation(instruction->AsConstant())
69 : Location::RequiresRegister();
70}
71
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +010072Location Location::ByteRegisterOrConstant(int reg, HInstruction* instruction) {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010073 return instruction->IsConstant()
74 ? Location::ConstantLocation(instruction->AsConstant())
75 : Location::RegisterLocation(reg);
76}
77
78std::ostream& operator<<(std::ostream& os, const Location& location) {
79 os << location.DebugString();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +000080 if (location.IsRegister() || location.IsFpuRegister()) {
81 os << location.reg();
82 } else if (location.IsPair()) {
83 os << location.low() << ":" << location.high();
84 } else if (location.IsStackSlot() || location.IsDoubleStackSlot()) {
85 os << location.GetStackIndex();
86 }
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010087 return os;
88}
89
Nicolas Geoffray76716a62014-05-23 10:14:19 +010090} // namespace art