diff options
author | 2015-02-24 16:26:54 +0000 | |
---|---|---|
committer | 2015-02-24 16:26:54 +0000 | |
commit | 2cb551b1f9ef581b0eb1ef7cbee6bfdb6d9db4b3 (patch) | |
tree | 697b802f748224261615d0c32dad734dc93ecad1 /compiler/optimizing | |
parent | 6726d200144a1c1be0058c57853f9831223991e6 (diff) | |
parent | d8ef2e991a1a65f47a26a1eb8c6b34c92b775d6b (diff) |
Merge "not-int can also take non-int (byte and short) instructions."
Diffstat (limited to 'compiler/optimizing')
-rw-r--r-- | compiler/optimizing/code_generator_arm.cc | 2 | ||||
-rw-r--r-- | compiler/optimizing/code_generator_arm64.cc | 2 | ||||
-rw-r--r-- | compiler/optimizing/code_generator_x86.cc | 2 | ||||
-rw-r--r-- | compiler/optimizing/code_generator_x86_64.cc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/compiler/optimizing/code_generator_arm.cc b/compiler/optimizing/code_generator_arm.cc index e864ae1cec..cda5c1a99c 100644 --- a/compiler/optimizing/code_generator_arm.cc +++ b/compiler/optimizing/code_generator_arm.cc @@ -2478,7 +2478,7 @@ void InstructionCodeGeneratorARM::VisitNot(HNot* not_) { LocationSummary* locations = not_->GetLocations(); Location out = locations->Out(); Location in = locations->InAt(0); - switch (not_->InputAt(0)->GetType()) { + switch (not_->GetResultType()) { case Primitive::kPrimInt: __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>())); break; diff --git a/compiler/optimizing/code_generator_arm64.cc b/compiler/optimizing/code_generator_arm64.cc index 0d7864fa35..729bab78a6 100644 --- a/compiler/optimizing/code_generator_arm64.cc +++ b/compiler/optimizing/code_generator_arm64.cc @@ -2202,7 +2202,7 @@ void LocationsBuilderARM64::VisitNot(HNot* instruction) { } void InstructionCodeGeneratorARM64::VisitNot(HNot* instruction) { - switch (instruction->InputAt(0)->GetType()) { + switch (instruction->GetResultType()) { case Primitive::kPrimInt: case Primitive::kPrimLong: __ Mvn(OutputRegister(instruction), InputOperandAt(instruction, 0)); diff --git a/compiler/optimizing/code_generator_x86.cc b/compiler/optimizing/code_generator_x86.cc index 1101569174..7b35cfded8 100644 --- a/compiler/optimizing/code_generator_x86.cc +++ b/compiler/optimizing/code_generator_x86.cc @@ -2575,7 +2575,7 @@ void InstructionCodeGeneratorX86::VisitNot(HNot* not_) { Location in = locations->InAt(0); Location out = locations->Out(); DCHECK(in.Equals(out)); - switch (not_->InputAt(0)->GetType()) { + switch (not_->GetResultType()) { case Primitive::kPrimInt: __ notl(out.AsRegister<Register>()); break; diff --git a/compiler/optimizing/code_generator_x86_64.cc b/compiler/optimizing/code_generator_x86_64.cc index 41a19e11f0..74adb31422 100644 --- a/compiler/optimizing/code_generator_x86_64.cc +++ b/compiler/optimizing/code_generator_x86_64.cc @@ -2514,7 +2514,7 @@ void InstructionCodeGeneratorX86_64::VisitNot(HNot* not_) { DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(), locations->Out().AsRegister<CpuRegister>().AsRegister()); Location out = locations->Out(); - switch (not_->InputAt(0)->GetType()) { + switch (not_->GetResultType()) { case Primitive::kPrimInt: __ notl(out.AsRegister<CpuRegister>()); break; |