| Index: src/arm/lithium-codegen-arm.cc
|
| diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc
|
| index 957a60857ab7eef7991455d48e2036f50bed31fe..f5f8217e71dc94ed78bc109ddbfc50909928ab3d 100644
|
| --- a/src/arm/lithium-codegen-arm.cc
|
| +++ b/src/arm/lithium-codegen-arm.cc
|
| @@ -2267,6 +2267,12 @@ void LCodeGen::DoBranch(LBranch* instr) {
|
| __ b(eq, instr->TrueLabel(chunk_));
|
| }
|
|
|
| + if (expected.Contains(ToBooleanStub::SIMD_VALUE)) {
|
| + // SIMD value -> true.
|
| + __ CompareInstanceType(map, ip, FLOAT32X4_TYPE);
|
| + __ b(eq, instr->TrueLabel(chunk_));
|
| + }
|
| +
|
| if (expected.Contains(ToBooleanStub::HEAP_NUMBER)) {
|
| // heap number -> false iff +0, -0, or NaN.
|
| DwVfpRegister dbl_scratch = double_scratch0();
|
| @@ -5678,6 +5684,11 @@ Condition LCodeGen::EmitTypeofIs(Label* true_label,
|
| __ tst(scratch, Operand(1 << Map::kIsUndetectable));
|
| final_branch_condition = eq;
|
|
|
| + } else if (String::Equals(type_name, factory->float32x4_string())) {
|
| + __ JumpIfSmi(input, false_label);
|
| + __ CompareObjectType(input, scratch, no_reg, FLOAT32X4_TYPE);
|
| + final_branch_condition = eq;
|
| +
|
| } else {
|
| __ b(false_label);
|
| }
|
|
|