summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/locations.h
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2015-05-07 11:57:35 +0100
committerNicolas Geoffray <ngeoffray@google.com>2015-05-11 14:17:22 +0100
commit0a23d74dc2751440822960eab218be4cb8843647 (patch)
tree39d69de5d812826c4065d0acd38a58cd983f21f0 /compiler/optimizing/locations.h
parentcdeb0b5fede4c06488f43a212591e661d946bc78 (diff)
downloadart-0a23d74dc2751440822960eab218be4cb8843647.zip
art-0a23d74dc2751440822960eab218be4cb8843647.tar.gz
art-0a23d74dc2751440822960eab218be4cb8843647.tar.bz2
Add a parent environment to HEnvironment.
This code has no functionality change. It adds a placeholder for chaining inlined frames. Change-Id: I5ec57335af76ee406052345b947aad98a6a4423a
Diffstat (limited to 'compiler/optimizing/locations.h')
-rw-r--r--compiler/optimizing/locations.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/compiler/optimizing/locations.h b/compiler/optimizing/locations.h
index c3a9915..09bbb33 100644
--- a/compiler/optimizing/locations.h
+++ b/compiler/optimizing/locations.h
@@ -525,14 +525,6 @@ class LocationSummary : public ArenaObject<kArenaAllocMisc> {
return temps_.Size();
}
- void SetEnvironmentAt(uint32_t at, Location location) {
- environment_.Put(at, location);
- }
-
- Location GetEnvironmentAt(uint32_t at) const {
- return environment_.Get(at);
- }
-
Location Out() const { return output_; }
bool CanCall() const { return call_kind_ != kNoCall; }
@@ -602,7 +594,6 @@ class LocationSummary : public ArenaObject<kArenaAllocMisc> {
private:
GrowableArray<Location> inputs_;
GrowableArray<Location> temps_;
- GrowableArray<Location> environment_;
// Whether the output overlaps with any of the inputs. If it overlaps, then it cannot
// share the same register as the inputs.
Location::OutputOverlap output_overlaps_;