OLD | NEW |
---|---|
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/code-factory.h" | 5 #include "src/code-factory.h" |
6 #include "src/compiler/access-builder.h" | 6 #include "src/compiler/access-builder.h" |
7 #include "src/compiler/js-graph.h" | 7 #include "src/compiler/js-graph.h" |
8 #include "src/compiler/js-typed-lowering.h" | 8 #include "src/compiler/js-typed-lowering.h" |
9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
10 #include "src/compiler/node-matchers.h" | 10 #include "src/compiler/node-matchers.h" |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
114 | 114 |
115 // A helper class to simplify the process of reducing a single binop node with a | 115 // A helper class to simplify the process of reducing a single binop node with a |
116 // JSOperator. This class manages the rewriting of context, control, and effect | 116 // JSOperator. This class manages the rewriting of context, control, and effect |
117 // dependencies during lowering of a binop and contains numerous helper | 117 // dependencies during lowering of a binop and contains numerous helper |
118 // functions for matching the types of inputs to an operation. | 118 // functions for matching the types of inputs to an operation. |
119 class JSBinopReduction final { | 119 class JSBinopReduction final { |
120 public: | 120 public: |
121 JSBinopReduction(JSTypedLowering* lowering, Node* node) | 121 JSBinopReduction(JSTypedLowering* lowering, Node* node) |
122 : lowering_(lowering), node_(node) {} | 122 : lowering_(lowering), node_(node) {} |
123 | 123 |
124 void ConvertPrimitiveInputsToNumber() { | |
125 node_->ReplaceInput(0, ConvertPrimitiveToNumber(left())); | |
126 node_->ReplaceInput(1, ConvertPrimitiveToNumber(right())); | |
127 } | |
128 | |
129 void ConvertInputsToNumber(Node* frame_state) { | 124 void ConvertInputsToNumber(Node* frame_state) { |
130 // To convert the inputs to numbers, we have to provide frame states | 125 // To convert the inputs to numbers, we have to provide frame states |
131 // for lazy bailouts in the ToNumber conversions. | 126 // for lazy bailouts in the ToNumber conversions. |
132 // We use a little hack here: we take the frame state before the binary | 127 // We use a little hack here: we take the frame state before the binary |
133 // operation and use it to construct the frame states for the conversion | 128 // operation and use it to construct the frame states for the conversion |
134 // so that after the deoptimization, the binary operation IC gets | 129 // so that after the deoptimization, the binary operation IC gets |
135 // already converted values from full code. This way we are sure that we | 130 // already converted values from full code. This way we are sure that we |
136 // will not re-do any of the side effects. | 131 // will not re-do any of the side effects. |
137 | 132 |
138 Node* left_input = | 133 Node* left_input = |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
475 } | 470 } |
476 #if 0 | 471 #if 0 |
477 // TODO(turbofan): General ToNumber disabled for now because: | 472 // TODO(turbofan): General ToNumber disabled for now because: |
478 // a) The inserted ToNumber operation screws up observability of valueOf. | 473 // a) The inserted ToNumber operation screws up observability of valueOf. |
479 // b) Deoptimization at ToNumber doesn't have corresponding bailout id. | 474 // b) Deoptimization at ToNumber doesn't have corresponding bailout id. |
480 Type* maybe_string = Type::Union(Type::String(), Type::Receiver(), zone()); | 475 Type* maybe_string = Type::Union(Type::String(), Type::Receiver(), zone()); |
481 if (r.OneInputCannotBe(maybe_string)) { | 476 if (r.OneInputCannotBe(maybe_string)) { |
482 // If one input cannot be a string, then emit a number comparison. | 477 // If one input cannot be a string, then emit a number comparison. |
483 ... | 478 ... |
484 } | 479 } |
485 #endif | 480 #endif |
Jarin
2015/05/13 07:11:07
Delete the ifdef-ed block, please.
Benedikt Meurer
2015/05/13 07:15:10
Done.
| |
486 if (r.BothInputsAre(Type::PlainPrimitive()) && | 481 if (r.OneInputCannotBe(Type::StringOrReceiver())) { |
487 r.OneInputCannotBe(Type::StringOrReceiver())) { | |
488 const Operator* less_than; | 482 const Operator* less_than; |
489 const Operator* less_than_or_equal; | 483 const Operator* less_than_or_equal; |
490 if (r.BothInputsAre(Type::Unsigned32())) { | 484 if (r.BothInputsAre(Type::Unsigned32())) { |
491 less_than = machine()->Uint32LessThan(); | 485 less_than = machine()->Uint32LessThan(); |
492 less_than_or_equal = machine()->Uint32LessThanOrEqual(); | 486 less_than_or_equal = machine()->Uint32LessThanOrEqual(); |
493 } else if (r.BothInputsAre(Type::Signed32())) { | 487 } else if (r.BothInputsAre(Type::Signed32())) { |
494 less_than = machine()->Int32LessThan(); | 488 less_than = machine()->Int32LessThan(); |
495 less_than_or_equal = machine()->Int32LessThanOrEqual(); | 489 less_than_or_equal = machine()->Int32LessThanOrEqual(); |
496 } else { | 490 } else { |
497 // TODO(turbofan): mixed signed/unsigned int32 comparisons. | 491 // TODO(turbofan): mixed signed/unsigned int32 comparisons. |
498 r.ConvertPrimitiveInputsToNumber(); | 492 Node* frame_state = NodeProperties::GetFrameStateInput(node, 1); |
493 r.ConvertInputsToNumber(frame_state); | |
499 less_than = simplified()->NumberLessThan(); | 494 less_than = simplified()->NumberLessThan(); |
500 less_than_or_equal = simplified()->NumberLessThanOrEqual(); | 495 less_than_or_equal = simplified()->NumberLessThanOrEqual(); |
501 } | 496 } |
502 const Operator* comparison; | 497 const Operator* comparison; |
503 switch (node->opcode()) { | 498 switch (node->opcode()) { |
504 case IrOpcode::kJSLessThan: | 499 case IrOpcode::kJSLessThan: |
505 comparison = less_than; | 500 comparison = less_than; |
506 break; | 501 break; |
507 case IrOpcode::kJSGreaterThan: | 502 case IrOpcode::kJSGreaterThan: |
508 comparison = less_than; | 503 comparison = less_than; |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1227 } | 1222 } |
1228 | 1223 |
1229 | 1224 |
1230 MachineOperatorBuilder* JSTypedLowering::machine() const { | 1225 MachineOperatorBuilder* JSTypedLowering::machine() const { |
1231 return jsgraph()->machine(); | 1226 return jsgraph()->machine(); |
1232 } | 1227 } |
1233 | 1228 |
1234 } // namespace compiler | 1229 } // namespace compiler |
1235 } // namespace internal | 1230 } // namespace internal |
1236 } // namespace v8 | 1231 } // namespace v8 |
OLD | NEW |