Commit d0607218 authored by zhengxing.li's avatar zhengxing.li Committed by Commit bot

X87: [turbofan] Prevent storing signalling NaNs into holey double arrays.

  port 6470ddad (r36950)

  original commit message:
  This introduces SilenceNaN operator, which makes sure that we only
  store quiet NaNs into holey arrays. We omit the NaN silencing code
  at instruction selection time if the input is an operation that
  cannot possibly produce signalling NaNs.

BUG=

Review-Url: https://codereview.chromium.org/2099143002
Cr-Commit-Position: refs/heads/master@{#37265}
parent aee9a72a
......@@ -1587,6 +1587,30 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
__ lea(esp, Operand(esp, 2 * kDoubleSize));
break;
}
case kX87Float64SilenceNaN: {
Label end, return_qnan;
__ fstp(0);
__ push(ebx);
// Load Half word of HoleNan(SNaN) into ebx
__ mov(ebx, MemOperand(esp, 2 * kInt32Size));
__ cmp(ebx, Immediate(kHoleNanUpper32));
// Check input is HoleNaN(SNaN)?
__ j(equal, &return_qnan, Label::kNear);
// If input isn't HoleNaN(SNaN), just load it and return
__ fld_d(MemOperand(esp, 1 * kInt32Size));
__ jmp(&end);
__ bind(&return_qnan);
// If input is HoleNaN(SNaN), Return QNaN
__ push(Immediate(0xffffffff));
__ push(Immediate(0xfff7ffff));
__ fld_d(MemOperand(esp, 0));
__ lea(esp, Operand(esp, kDoubleSize));
__ bind(&end);
__ pop(ebx);
// Clear stack.
__ lea(esp, Operand(esp, 1 * kDoubleSize));
break;
}
case kX87Movsxbl:
__ movsx_b(i.OutputRegister(), i.MemoryOperand());
break;
......
......@@ -80,6 +80,7 @@ namespace compiler {
V(X87Float64Sqrt) \
V(X87Float64Round) \
V(X87Float64Cmp) \
V(X87Float64SilenceNaN) \
V(X87Movsxbl) \
V(X87Movzxbl) \
V(X87Movb) \
......
......@@ -1629,6 +1629,12 @@ void InstructionSelector::VisitFloat64InsertHighWord32(Node* node) {
g.UseRegister(left), g.UseRegister(right));
}
void InstructionSelector::VisitFloat64SilenceNaN(Node* node) {
X87OperandGenerator g(this);
Emit(kX87PushFloat64, g.NoOutput(), g.Use(node->InputAt(0)));
Emit(kX87Float64SilenceNaN, g.DefineAsFixed(node, stX_0), 0, nullptr);
}
void InstructionSelector::VisitAtomicLoad(Node* node) {
LoadRepresentation load_rep = LoadRepresentationOf(node->op());
DCHECK(load_rep.representation() == MachineRepresentation::kWord8 ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment