summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/builder.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2015-04-30 11:15:40 +0000
committerNicolas Geoffray <ngeoffray@google.com>2015-04-30 11:15:40 +0000
commit2af2307f3903a75a379029c049b86f9903fc81a5 (patch)
tree89168f24337d7ec41648568c48b0dd5fb5194c39 /compiler/optimizing/builder.cc
parent781733632637db98d79dfffad72bf063be3259be (diff)
downloadandroid_art-2af2307f3903a75a379029c049b86f9903fc81a5.tar.gz
android_art-2af2307f3903a75a379029c049b86f9903fc81a5.tar.bz2
android_art-2af2307f3903a75a379029c049b86f9903fc81a5.zip
Revert "GVN final fields even with side effects."
This reverts commit 781733632637db98d79dfffad72bf063be3259be. Change-Id: Id7c4591f6b8190921852044b278d11627457c570
Diffstat (limited to 'compiler/optimizing/builder.cc')
-rw-r--r--compiler/optimizing/builder.cc19
1 files changed, 6 insertions, 13 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc
index c04fe4ec76..0f44af07b8 100644
--- a/compiler/optimizing/builder.cc
+++ b/compiler/optimizing/builder.cc
@@ -816,7 +816,6 @@ bool HGraphBuilder::BuildInstanceFieldAccess(const Instruction& instruction,
current_block_->GetLastInstruction(),
field_type,
resolved_field->GetOffset(),
- resolved_field->IsFinal(),
resolved_field->IsVolatile()));
UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
@@ -918,19 +917,13 @@ bool HGraphBuilder::BuildStaticFieldAccess(const Instruction& instruction,
temps.Add(cls);
HInstruction* value = LoadLocal(source_or_dest_reg, field_type);
DCHECK_EQ(value->GetType(), field_type);
- current_block_->AddInstruction(new (arena_) HStaticFieldSet(
- cls,
- value,
- field_type,
- resolved_field->GetOffset(),
- resolved_field->IsVolatile()));
+ current_block_->AddInstruction(
+ new (arena_) HStaticFieldSet(cls, value, field_type, resolved_field->GetOffset(),
+ resolved_field->IsVolatile()));
} else {
- current_block_->AddInstruction(new (arena_) HStaticFieldGet(
- cls,
- field_type,
- resolved_field->GetOffset(),
- resolved_field->IsFinal(),
- resolved_field->IsVolatile()));
+ current_block_->AddInstruction(
+ new (arena_) HStaticFieldGet(cls, field_type, resolved_field->GetOffset(),
+ resolved_field->IsVolatile()));
UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
}
return true;