| // Copyright 2015 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "src/compiler/wasm-compiler.h" |
| |
| #include <memory> |
| |
| #include "src/assembler-inl.h" |
| #include "src/base/optional.h" |
| #include "src/base/platform/elapsed-timer.h" |
| #include "src/base/platform/platform.h" |
| #include "src/builtins/builtins.h" |
| #include "src/code-factory.h" |
| #include "src/compiler/access-builder.h" |
| #include "src/compiler/code-generator.h" |
| #include "src/compiler/common-operator.h" |
| #include "src/compiler/compiler-source-position-table.h" |
| #include "src/compiler/diamond.h" |
| #include "src/compiler/graph-visualizer.h" |
| #include "src/compiler/graph.h" |
| #include "src/compiler/instruction-selector.h" |
| #include "src/compiler/int64-lowering.h" |
| #include "src/compiler/js-graph.h" |
| #include "src/compiler/js-operator.h" |
| #include "src/compiler/linkage.h" |
| #include "src/compiler/machine-operator.h" |
| #include "src/compiler/node-matchers.h" |
| #include "src/compiler/pipeline.h" |
| #include "src/compiler/simd-scalar-lowering.h" |
| #include "src/compiler/zone-stats.h" |
| #include "src/factory.h" |
| #include "src/isolate-inl.h" |
| #include "src/log-inl.h" |
| #include "src/trap-handler/trap-handler.h" |
| #include "src/wasm/function-body-decoder.h" |
| #include "src/wasm/memory-tracing.h" |
| #include "src/wasm/wasm-code-manager.h" |
| #include "src/wasm/wasm-limits.h" |
| #include "src/wasm/wasm-module.h" |
| #include "src/wasm/wasm-objects-inl.h" |
| #include "src/wasm/wasm-opcodes.h" |
| #include "src/wasm/wasm-text.h" |
| |
| namespace v8 { |
| namespace internal { |
| namespace compiler { |
| |
| // TODO(titzer): pull WASM_64 up to a common header. |
| #if !V8_TARGET_ARCH_32_BIT || V8_TARGET_ARCH_X64 |
| #define WASM_64 1 |
| #else |
| #define WASM_64 0 |
| #endif |
| |
| #define FATAL_UNSUPPORTED_OPCODE(opcode) \ |
| V8_Fatal(__FILE__, __LINE__, "Unsupported opcode #%d:%s", (opcode), \ |
| wasm::WasmOpcodes::OpcodeName(opcode)); |
| |
| namespace { |
| |
| constexpr uint32_t kBytesPerExceptionValuesArrayElement = 2; |
| |
| void MergeControlToEnd(JSGraph* jsgraph, Node* node) { |
| Graph* g = jsgraph->graph(); |
| if (g->end()) { |
| NodeProperties::MergeControlToEnd(g, jsgraph->common(), node); |
| } else { |
| g->SetEnd(g->NewNode(jsgraph->common()->End(1), node)); |
| } |
| } |
| |
| bool ContainsSimd(wasm::FunctionSig* sig) { |
| for (wasm::ValueType t : sig->all()) { |
| if (t == wasm::kWasmS128) return true; |
| } |
| return false; |
| } |
| |
| } // namespace |
| |
| WasmGraphBuilder::WasmGraphBuilder( |
| ModuleEnv* env, Zone* zone, JSGraph* jsgraph, Handle<Code> centry_stub, |
| wasm::FunctionSig* sig, |
| compiler::SourcePositionTable* source_position_table, |
| RuntimeExceptionSupport exception_support) |
| : zone_(zone), |
| jsgraph_(jsgraph), |
| centry_stub_node_(jsgraph_->HeapConstant(centry_stub)), |
| env_(env), |
| function_tables_(zone), |
| cur_buffer_(def_buffer_), |
| cur_bufsize_(kDefaultBufferSize), |
| has_simd_(ContainsSimd(sig)), |
| untrusted_code_mitigations_(FLAG_untrusted_code_mitigations), |
| runtime_exception_support_(exception_support), |
| sig_(sig), |
| source_position_table_(source_position_table) { |
| DCHECK_IMPLIES(use_trap_handler(), trap_handler::IsTrapHandlerEnabled()); |
| DCHECK_NOT_NULL(jsgraph_); |
| } |
| |
| Node* WasmGraphBuilder::Error() { return jsgraph()->Dead(); } |
| |
| Node* WasmGraphBuilder::Start(unsigned params) { |
| Node* start = graph()->NewNode(jsgraph()->common()->Start(params)); |
| graph()->SetStart(start); |
| return start; |
| } |
| |
| Node* WasmGraphBuilder::Param(unsigned index) { |
| return graph()->NewNode(jsgraph()->common()->Parameter(index), |
| graph()->start()); |
| } |
| |
| Node* WasmGraphBuilder::Loop(Node* entry) { |
| return graph()->NewNode(jsgraph()->common()->Loop(1), entry); |
| } |
| |
| Node* WasmGraphBuilder::Terminate(Node* effect, Node* control) { |
| Node* terminate = |
| graph()->NewNode(jsgraph()->common()->Terminate(), effect, control); |
| MergeControlToEnd(jsgraph(), terminate); |
| return terminate; |
| } |
| |
| bool WasmGraphBuilder::IsPhiWithMerge(Node* phi, Node* merge) { |
| return phi && IrOpcode::IsPhiOpcode(phi->opcode()) && |
| NodeProperties::GetControlInput(phi) == merge; |
| } |
| |
| bool WasmGraphBuilder::ThrowsException(Node* node, Node** if_success, |
| Node** if_exception) { |
| if (node->op()->HasProperty(compiler::Operator::kNoThrow)) { |
| return false; |
| } |
| |
| *if_success = graph()->NewNode(jsgraph()->common()->IfSuccess(), node); |
| *if_exception = |
| graph()->NewNode(jsgraph()->common()->IfException(), node, node); |
| |
| return true; |
| } |
| |
| void WasmGraphBuilder::AppendToMerge(Node* merge, Node* from) { |
| DCHECK(IrOpcode::IsMergeOpcode(merge->opcode())); |
| merge->AppendInput(jsgraph()->zone(), from); |
| int new_size = merge->InputCount(); |
| NodeProperties::ChangeOp( |
| merge, jsgraph()->common()->ResizeMergeOrPhi(merge->op(), new_size)); |
| } |
| |
| void WasmGraphBuilder::AppendToPhi(Node* phi, Node* from) { |
| DCHECK(IrOpcode::IsPhiOpcode(phi->opcode())); |
| int new_size = phi->InputCount(); |
| phi->InsertInput(jsgraph()->zone(), phi->InputCount() - 1, from); |
| NodeProperties::ChangeOp( |
| phi, jsgraph()->common()->ResizeMergeOrPhi(phi->op(), new_size)); |
| } |
| |
| Node* WasmGraphBuilder::Merge(unsigned count, Node** controls) { |
| return graph()->NewNode(jsgraph()->common()->Merge(count), count, controls); |
| } |
| |
| Node* WasmGraphBuilder::Phi(wasm::ValueType type, unsigned count, Node** vals, |
| Node* control) { |
| DCHECK(IrOpcode::IsMergeOpcode(control->opcode())); |
| Node** buf = Realloc(vals, count, count + 1); |
| buf[count] = control; |
| return graph()->NewNode(jsgraph()->common()->Phi(type, count), count + 1, |
| buf); |
| } |
| |
| Node* WasmGraphBuilder::EffectPhi(unsigned count, Node** effects, |
| Node* control) { |
| DCHECK(IrOpcode::IsMergeOpcode(control->opcode())); |
| Node** buf = Realloc(effects, count, count + 1); |
| buf[count] = control; |
| return graph()->NewNode(jsgraph()->common()->EffectPhi(count), count + 1, |
| buf); |
| } |
| |
| Node* WasmGraphBuilder::NumberConstant(int32_t value) { |
| return jsgraph()->Constant(value); |
| } |
| |
| Node* WasmGraphBuilder::Uint32Constant(uint32_t value) { |
| return jsgraph()->Uint32Constant(value); |
| } |
| |
| Node* WasmGraphBuilder::Int32Constant(int32_t value) { |
| return jsgraph()->Int32Constant(value); |
| } |
| |
| Node* WasmGraphBuilder::Int64Constant(int64_t value) { |
| return jsgraph()->Int64Constant(value); |
| } |
| |
| Node* WasmGraphBuilder::IntPtrConstant(intptr_t value) { |
| return jsgraph()->IntPtrConstant(value); |
| } |
| |
| void WasmGraphBuilder::StackCheck(wasm::WasmCodePosition position, |
| Node** effect, Node** control) { |
| // TODO(mtrofin): "!env_" happens when we generate a wrapper. |
| // We should factor wrappers separately from wasm codegen. |
| if (FLAG_wasm_no_stack_checks || !env_ || !runtime_exception_support_) { |
| return; |
| } |
| if (effect == nullptr) effect = effect_; |
| if (control == nullptr) control = control_; |
| |
| Node* limit = graph()->NewNode( |
| jsgraph()->machine()->Load(MachineType::Pointer()), |
| jsgraph()->ExternalConstant( |
| ExternalReference::address_of_stack_limit(jsgraph()->isolate())), |
| jsgraph()->IntPtrConstant(0), *effect, *control); |
| *effect = limit; |
| Node* pointer = graph()->NewNode(jsgraph()->machine()->LoadStackPointer()); |
| |
| Node* check = |
| graph()->NewNode(jsgraph()->machine()->UintLessThan(), limit, pointer); |
| |
| Diamond stack_check(graph(), jsgraph()->common(), check, BranchHint::kTrue); |
| stack_check.Chain(*control); |
| |
| Handle<Code> code = BUILTIN_CODE(jsgraph()->isolate(), WasmStackGuard); |
| CallInterfaceDescriptor idesc = |
| WasmRuntimeCallDescriptor(jsgraph()->isolate()); |
| CallDescriptor* desc = Linkage::GetStubCallDescriptor( |
| jsgraph()->isolate(), jsgraph()->zone(), idesc, 0, |
| CallDescriptor::kNoFlags, Operator::kNoProperties, |
| MachineType::AnyTagged(), 1, Linkage::kNoContext); |
| Node* stub_code = jsgraph()->HeapConstant(code); |
| |
| Node* call = graph()->NewNode(jsgraph()->common()->Call(desc), stub_code, |
| *effect, stack_check.if_false); |
| |
| SetSourcePosition(call, position); |
| |
| Node* ephi = graph()->NewNode(jsgraph()->common()->EffectPhi(2), *effect, |
| call, stack_check.merge); |
| |
| *control = stack_check.merge; |
| *effect = ephi; |
| } |
| |
| void WasmGraphBuilder::PatchInStackCheckIfNeeded() { |
| if (!needs_stack_check_) return; |
| |
| Node* start = graph()->start(); |
| // Place a stack check which uses a dummy node as control and effect. |
| Node* dummy = graph()->NewNode(jsgraph()->common()->Dead()); |
| Node* control = dummy; |
| Node* effect = dummy; |
| // The function-prologue stack check is associated with position 0, which |
| // is never a position of any instruction in the function. |
| StackCheck(0, &effect, &control); |
| |
| // In testing, no steck checks were emitted. Nothing to rewire then. |
| if (effect == dummy) return; |
| |
| // Now patch all control uses of {start} to use {control} and all effect uses |
| // to use {effect} instead. Then rewire the dummy node to use start instead. |
| NodeProperties::ReplaceUses(start, start, effect, control); |
| NodeProperties::ReplaceUses(dummy, nullptr, start, start); |
| } |
| |
| Node* WasmGraphBuilder::Binop(wasm::WasmOpcode opcode, Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| const Operator* op; |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| switch (opcode) { |
| case wasm::kExprI32Add: |
| op = m->Int32Add(); |
| break; |
| case wasm::kExprI32Sub: |
| op = m->Int32Sub(); |
| break; |
| case wasm::kExprI32Mul: |
| op = m->Int32Mul(); |
| break; |
| case wasm::kExprI32DivS: |
| return BuildI32DivS(left, right, position); |
| case wasm::kExprI32DivU: |
| return BuildI32DivU(left, right, position); |
| case wasm::kExprI32RemS: |
| return BuildI32RemS(left, right, position); |
| case wasm::kExprI32RemU: |
| return BuildI32RemU(left, right, position); |
| case wasm::kExprI32And: |
| op = m->Word32And(); |
| break; |
| case wasm::kExprI32Ior: |
| op = m->Word32Or(); |
| break; |
| case wasm::kExprI32Xor: |
| op = m->Word32Xor(); |
| break; |
| case wasm::kExprI32Shl: |
| op = m->Word32Shl(); |
| right = MaskShiftCount32(right); |
| break; |
| case wasm::kExprI32ShrU: |
| op = m->Word32Shr(); |
| right = MaskShiftCount32(right); |
| break; |
| case wasm::kExprI32ShrS: |
| op = m->Word32Sar(); |
| right = MaskShiftCount32(right); |
| break; |
| case wasm::kExprI32Ror: |
| op = m->Word32Ror(); |
| right = MaskShiftCount32(right); |
| break; |
| case wasm::kExprI32Rol: |
| right = MaskShiftCount32(right); |
| return BuildI32Rol(left, right); |
| case wasm::kExprI32Eq: |
| op = m->Word32Equal(); |
| break; |
| case wasm::kExprI32Ne: |
| return Invert(Binop(wasm::kExprI32Eq, left, right)); |
| case wasm::kExprI32LtS: |
| op = m->Int32LessThan(); |
| break; |
| case wasm::kExprI32LeS: |
| op = m->Int32LessThanOrEqual(); |
| break; |
| case wasm::kExprI32LtU: |
| op = m->Uint32LessThan(); |
| break; |
| case wasm::kExprI32LeU: |
| op = m->Uint32LessThanOrEqual(); |
| break; |
| case wasm::kExprI32GtS: |
| op = m->Int32LessThan(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI32GeS: |
| op = m->Int32LessThanOrEqual(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI32GtU: |
| op = m->Uint32LessThan(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI32GeU: |
| op = m->Uint32LessThanOrEqual(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI64And: |
| op = m->Word64And(); |
| break; |
| case wasm::kExprI64Add: |
| op = m->Int64Add(); |
| break; |
| case wasm::kExprI64Sub: |
| op = m->Int64Sub(); |
| break; |
| case wasm::kExprI64Mul: |
| op = m->Int64Mul(); |
| break; |
| case wasm::kExprI64DivS: |
| return BuildI64DivS(left, right, position); |
| case wasm::kExprI64DivU: |
| return BuildI64DivU(left, right, position); |
| case wasm::kExprI64RemS: |
| return BuildI64RemS(left, right, position); |
| case wasm::kExprI64RemU: |
| return BuildI64RemU(left, right, position); |
| case wasm::kExprI64Ior: |
| op = m->Word64Or(); |
| break; |
| case wasm::kExprI64Xor: |
| op = m->Word64Xor(); |
| break; |
| case wasm::kExprI64Shl: |
| op = m->Word64Shl(); |
| right = MaskShiftCount64(right); |
| break; |
| case wasm::kExprI64ShrU: |
| op = m->Word64Shr(); |
| right = MaskShiftCount64(right); |
| break; |
| case wasm::kExprI64ShrS: |
| op = m->Word64Sar(); |
| right = MaskShiftCount64(right); |
| break; |
| case wasm::kExprI64Eq: |
| op = m->Word64Equal(); |
| break; |
| case wasm::kExprI64Ne: |
| return Invert(Binop(wasm::kExprI64Eq, left, right)); |
| case wasm::kExprI64LtS: |
| op = m->Int64LessThan(); |
| break; |
| case wasm::kExprI64LeS: |
| op = m->Int64LessThanOrEqual(); |
| break; |
| case wasm::kExprI64LtU: |
| op = m->Uint64LessThan(); |
| break; |
| case wasm::kExprI64LeU: |
| op = m->Uint64LessThanOrEqual(); |
| break; |
| case wasm::kExprI64GtS: |
| op = m->Int64LessThan(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI64GeS: |
| op = m->Int64LessThanOrEqual(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI64GtU: |
| op = m->Uint64LessThan(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI64GeU: |
| op = m->Uint64LessThanOrEqual(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprI64Ror: |
| op = m->Word64Ror(); |
| right = MaskShiftCount64(right); |
| break; |
| case wasm::kExprI64Rol: |
| return BuildI64Rol(left, right); |
| case wasm::kExprF32CopySign: |
| return BuildF32CopySign(left, right); |
| case wasm::kExprF64CopySign: |
| return BuildF64CopySign(left, right); |
| case wasm::kExprF32Add: |
| op = m->Float32Add(); |
| break; |
| case wasm::kExprF32Sub: |
| op = m->Float32Sub(); |
| break; |
| case wasm::kExprF32Mul: |
| op = m->Float32Mul(); |
| break; |
| case wasm::kExprF32Div: |
| op = m->Float32Div(); |
| break; |
| case wasm::kExprF32Eq: |
| op = m->Float32Equal(); |
| break; |
| case wasm::kExprF32Ne: |
| return Invert(Binop(wasm::kExprF32Eq, left, right)); |
| case wasm::kExprF32Lt: |
| op = m->Float32LessThan(); |
| break; |
| case wasm::kExprF32Ge: |
| op = m->Float32LessThanOrEqual(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprF32Gt: |
| op = m->Float32LessThan(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprF32Le: |
| op = m->Float32LessThanOrEqual(); |
| break; |
| case wasm::kExprF64Add: |
| op = m->Float64Add(); |
| break; |
| case wasm::kExprF64Sub: |
| op = m->Float64Sub(); |
| break; |
| case wasm::kExprF64Mul: |
| op = m->Float64Mul(); |
| break; |
| case wasm::kExprF64Div: |
| op = m->Float64Div(); |
| break; |
| case wasm::kExprF64Eq: |
| op = m->Float64Equal(); |
| break; |
| case wasm::kExprF64Ne: |
| return Invert(Binop(wasm::kExprF64Eq, left, right)); |
| case wasm::kExprF64Lt: |
| op = m->Float64LessThan(); |
| break; |
| case wasm::kExprF64Le: |
| op = m->Float64LessThanOrEqual(); |
| break; |
| case wasm::kExprF64Gt: |
| op = m->Float64LessThan(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprF64Ge: |
| op = m->Float64LessThanOrEqual(); |
| std::swap(left, right); |
| break; |
| case wasm::kExprF32Min: |
| op = m->Float32Min(); |
| break; |
| case wasm::kExprF64Min: |
| op = m->Float64Min(); |
| break; |
| case wasm::kExprF32Max: |
| op = m->Float32Max(); |
| break; |
| case wasm::kExprF64Max: |
| op = m->Float64Max(); |
| break; |
| case wasm::kExprF64Pow: |
| return BuildF64Pow(left, right); |
| case wasm::kExprF64Atan2: |
| op = m->Float64Atan2(); |
| break; |
| case wasm::kExprF64Mod: |
| return BuildF64Mod(left, right); |
| case wasm::kExprI32AsmjsDivS: |
| return BuildI32AsmjsDivS(left, right); |
| case wasm::kExprI32AsmjsDivU: |
| return BuildI32AsmjsDivU(left, right); |
| case wasm::kExprI32AsmjsRemS: |
| return BuildI32AsmjsRemS(left, right); |
| case wasm::kExprI32AsmjsRemU: |
| return BuildI32AsmjsRemU(left, right); |
| case wasm::kExprI32AsmjsStoreMem8: |
| return BuildAsmjsStoreMem(MachineType::Int8(), left, right); |
| case wasm::kExprI32AsmjsStoreMem16: |
| return BuildAsmjsStoreMem(MachineType::Int16(), left, right); |
| case wasm::kExprI32AsmjsStoreMem: |
| return BuildAsmjsStoreMem(MachineType::Int32(), left, right); |
| case wasm::kExprF32AsmjsStoreMem: |
| return BuildAsmjsStoreMem(MachineType::Float32(), left, right); |
| case wasm::kExprF64AsmjsStoreMem: |
| return BuildAsmjsStoreMem(MachineType::Float64(), left, right); |
| default: |
| FATAL_UNSUPPORTED_OPCODE(opcode); |
| } |
| return graph()->NewNode(op, left, right); |
| } |
| |
| Node* WasmGraphBuilder::Unop(wasm::WasmOpcode opcode, Node* input, |
| wasm::WasmCodePosition position) { |
| const Operator* op; |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| switch (opcode) { |
| case wasm::kExprI32Eqz: |
| op = m->Word32Equal(); |
| return graph()->NewNode(op, input, jsgraph()->Int32Constant(0)); |
| case wasm::kExprF32Abs: |
| op = m->Float32Abs(); |
| break; |
| case wasm::kExprF32Neg: { |
| op = m->Float32Neg(); |
| break; |
| } |
| case wasm::kExprF32Sqrt: |
| op = m->Float32Sqrt(); |
| break; |
| case wasm::kExprF64Abs: |
| op = m->Float64Abs(); |
| break; |
| case wasm::kExprF64Neg: { |
| op = m->Float64Neg(); |
| break; |
| } |
| case wasm::kExprF64Sqrt: |
| op = m->Float64Sqrt(); |
| break; |
| case wasm::kExprI32SConvertF64: |
| return BuildI32SConvertF64(input, position, NumericImplementation::kTrap); |
| case wasm::kExprI32SConvertSatF64: |
| return BuildI32SConvertF64(input, position, |
| NumericImplementation::kSaturate); |
| case wasm::kExprI32UConvertF64: |
| return BuildI32UConvertF64(input, position, NumericImplementation::kTrap); |
| case wasm::kExprI32UConvertSatF64: |
| return BuildI32UConvertF64(input, position, |
| NumericImplementation::kSaturate); |
| case wasm::kExprI32AsmjsSConvertF64: |
| return BuildI32AsmjsSConvertF64(input); |
| case wasm::kExprI32AsmjsUConvertF64: |
| return BuildI32AsmjsUConvertF64(input); |
| case wasm::kExprF32ConvertF64: |
| op = m->TruncateFloat64ToFloat32(); |
| break; |
| case wasm::kExprF64SConvertI32: |
| op = m->ChangeInt32ToFloat64(); |
| break; |
| case wasm::kExprF64UConvertI32: |
| op = m->ChangeUint32ToFloat64(); |
| break; |
| case wasm::kExprF32SConvertI32: |
| op = m->RoundInt32ToFloat32(); |
| break; |
| case wasm::kExprF32UConvertI32: |
| op = m->RoundUint32ToFloat32(); |
| break; |
| case wasm::kExprI32SConvertF32: |
| return BuildI32SConvertF32(input, position, NumericImplementation::kTrap); |
| case wasm::kExprI32SConvertSatF32: |
| return BuildI32SConvertF32(input, position, |
| NumericImplementation::kSaturate); |
| case wasm::kExprI32UConvertF32: |
| return BuildI32UConvertF32(input, position, NumericImplementation::kTrap); |
| case wasm::kExprI32UConvertSatF32: |
| return BuildI32UConvertF32(input, position, |
| NumericImplementation::kSaturate); |
| case wasm::kExprI32AsmjsSConvertF32: |
| return BuildI32AsmjsSConvertF32(input); |
| case wasm::kExprI32AsmjsUConvertF32: |
| return BuildI32AsmjsUConvertF32(input); |
| case wasm::kExprF64ConvertF32: |
| op = m->ChangeFloat32ToFloat64(); |
| break; |
| case wasm::kExprF32ReinterpretI32: |
| op = m->BitcastInt32ToFloat32(); |
| break; |
| case wasm::kExprI32ReinterpretF32: |
| op = m->BitcastFloat32ToInt32(); |
| break; |
| case wasm::kExprI32Clz: |
| op = m->Word32Clz(); |
| break; |
| case wasm::kExprI32Ctz: { |
| if (m->Word32Ctz().IsSupported()) { |
| op = m->Word32Ctz().op(); |
| break; |
| } else if (m->Word32ReverseBits().IsSupported()) { |
| Node* reversed = graph()->NewNode(m->Word32ReverseBits().op(), input); |
| Node* result = graph()->NewNode(m->Word32Clz(), reversed); |
| return result; |
| } else { |
| return BuildI32Ctz(input); |
| } |
| } |
| case wasm::kExprI32Popcnt: { |
| if (m->Word32Popcnt().IsSupported()) { |
| op = m->Word32Popcnt().op(); |
| break; |
| } else { |
| return BuildI32Popcnt(input); |
| } |
| } |
| case wasm::kExprF32Floor: { |
| if (!m->Float32RoundDown().IsSupported()) return BuildF32Floor(input); |
| op = m->Float32RoundDown().op(); |
| break; |
| } |
| case wasm::kExprF32Ceil: { |
| if (!m->Float32RoundUp().IsSupported()) return BuildF32Ceil(input); |
| op = m->Float32RoundUp().op(); |
| break; |
| } |
| case wasm::kExprF32Trunc: { |
| if (!m->Float32RoundTruncate().IsSupported()) return BuildF32Trunc(input); |
| op = m->Float32RoundTruncate().op(); |
| break; |
| } |
| case wasm::kExprF32NearestInt: { |
| if (!m->Float32RoundTiesEven().IsSupported()) |
| return BuildF32NearestInt(input); |
| op = m->Float32RoundTiesEven().op(); |
| break; |
| } |
| case wasm::kExprF64Floor: { |
| if (!m->Float64RoundDown().IsSupported()) return BuildF64Floor(input); |
| op = m->Float64RoundDown().op(); |
| break; |
| } |
| case wasm::kExprF64Ceil: { |
| if (!m->Float64RoundUp().IsSupported()) return BuildF64Ceil(input); |
| op = m->Float64RoundUp().op(); |
| break; |
| } |
| case wasm::kExprF64Trunc: { |
| if (!m->Float64RoundTruncate().IsSupported()) return BuildF64Trunc(input); |
| op = m->Float64RoundTruncate().op(); |
| break; |
| } |
| case wasm::kExprF64NearestInt: { |
| if (!m->Float64RoundTiesEven().IsSupported()) |
| return BuildF64NearestInt(input); |
| op = m->Float64RoundTiesEven().op(); |
| break; |
| } |
| case wasm::kExprF64Acos: { |
| return BuildF64Acos(input); |
| } |
| case wasm::kExprF64Asin: { |
| return BuildF64Asin(input); |
| } |
| case wasm::kExprF64Atan: |
| op = m->Float64Atan(); |
| break; |
| case wasm::kExprF64Cos: { |
| op = m->Float64Cos(); |
| break; |
| } |
| case wasm::kExprF64Sin: { |
| op = m->Float64Sin(); |
| break; |
| } |
| case wasm::kExprF64Tan: { |
| op = m->Float64Tan(); |
| break; |
| } |
| case wasm::kExprF64Exp: { |
| op = m->Float64Exp(); |
| break; |
| } |
| case wasm::kExprF64Log: |
| op = m->Float64Log(); |
| break; |
| case wasm::kExprI32ConvertI64: |
| op = m->TruncateInt64ToInt32(); |
| break; |
| case wasm::kExprI64SConvertI32: |
| op = m->ChangeInt32ToInt64(); |
| break; |
| case wasm::kExprI64UConvertI32: |
| op = m->ChangeUint32ToUint64(); |
| break; |
| case wasm::kExprF64ReinterpretI64: |
| op = m->BitcastInt64ToFloat64(); |
| break; |
| case wasm::kExprI64ReinterpretF64: |
| op = m->BitcastFloat64ToInt64(); |
| break; |
| case wasm::kExprI64Clz: |
| op = m->Word64Clz(); |
| break; |
| case wasm::kExprI64Ctz: { |
| OptionalOperator ctz64 = m->Word64Ctz(); |
| if (ctz64.IsSupported()) { |
| op = ctz64.op(); |
| break; |
| } else if (m->Is32() && m->Word32Ctz().IsSupported()) { |
| op = ctz64.placeholder(); |
| break; |
| } else if (m->Word64ReverseBits().IsSupported()) { |
| Node* reversed = graph()->NewNode(m->Word64ReverseBits().op(), input); |
| Node* result = graph()->NewNode(m->Word64Clz(), reversed); |
| return result; |
| } else { |
| return BuildI64Ctz(input); |
| } |
| } |
| case wasm::kExprI64Popcnt: { |
| OptionalOperator popcnt64 = m->Word64Popcnt(); |
| if (popcnt64.IsSupported()) { |
| op = popcnt64.op(); |
| } else if (m->Is32() && m->Word32Popcnt().IsSupported()) { |
| op = popcnt64.placeholder(); |
| } else { |
| return BuildI64Popcnt(input); |
| } |
| break; |
| } |
| case wasm::kExprI64Eqz: |
| op = m->Word64Equal(); |
| return graph()->NewNode(op, input, jsgraph()->Int64Constant(0)); |
| case wasm::kExprF32SConvertI64: |
| if (m->Is32()) { |
| return BuildF32SConvertI64(input); |
| } |
| op = m->RoundInt64ToFloat32(); |
| break; |
| case wasm::kExprF32UConvertI64: |
| if (m->Is32()) { |
| return BuildF32UConvertI64(input); |
| } |
| op = m->RoundUint64ToFloat32(); |
| break; |
| case wasm::kExprF64SConvertI64: |
| if (m->Is32()) { |
| return BuildF64SConvertI64(input); |
| } |
| op = m->RoundInt64ToFloat64(); |
| break; |
| case wasm::kExprF64UConvertI64: |
| if (m->Is32()) { |
| return BuildF64UConvertI64(input); |
| } |
| op = m->RoundUint64ToFloat64(); |
| break; |
| case wasm::kExprI64SConvertF32: |
| return BuildI64SConvertF32(input, position); |
| case wasm::kExprI64SConvertF64: |
| return BuildI64SConvertF64(input, position); |
| case wasm::kExprI64UConvertF32: |
| return BuildI64UConvertF32(input, position); |
| case wasm::kExprI64UConvertF64: |
| return BuildI64UConvertF64(input, position); |
| case wasm::kExprI32AsmjsLoadMem8S: |
| return BuildAsmjsLoadMem(MachineType::Int8(), input); |
| case wasm::kExprI32AsmjsLoadMem8U: |
| return BuildAsmjsLoadMem(MachineType::Uint8(), input); |
| case wasm::kExprI32AsmjsLoadMem16S: |
| return BuildAsmjsLoadMem(MachineType::Int16(), input); |
| case wasm::kExprI32AsmjsLoadMem16U: |
| return BuildAsmjsLoadMem(MachineType::Uint16(), input); |
| case wasm::kExprI32AsmjsLoadMem: |
| return BuildAsmjsLoadMem(MachineType::Int32(), input); |
| case wasm::kExprF32AsmjsLoadMem: |
| return BuildAsmjsLoadMem(MachineType::Float32(), input); |
| case wasm::kExprF64AsmjsLoadMem: |
| return BuildAsmjsLoadMem(MachineType::Float64(), input); |
| default: |
| FATAL_UNSUPPORTED_OPCODE(opcode); |
| } |
| return graph()->NewNode(op, input); |
| } |
| |
| Node* WasmGraphBuilder::Float32Constant(float value) { |
| return jsgraph()->Float32Constant(value); |
| } |
| |
| Node* WasmGraphBuilder::Float64Constant(double value) { |
| return jsgraph()->Float64Constant(value); |
| } |
| |
| Node* WasmGraphBuilder::HeapConstant(Handle<HeapObject> value) { |
| return jsgraph()->HeapConstant(value); |
| } |
| |
| namespace { |
| Node* Branch(JSGraph* jsgraph, Node* cond, Node** true_node, Node** false_node, |
| Node* control, BranchHint hint) { |
| DCHECK_NOT_NULL(cond); |
| DCHECK_NOT_NULL(control); |
| Node* branch = |
| jsgraph->graph()->NewNode(jsgraph->common()->Branch(hint), cond, control); |
| *true_node = jsgraph->graph()->NewNode(jsgraph->common()->IfTrue(), branch); |
| *false_node = jsgraph->graph()->NewNode(jsgraph->common()->IfFalse(), branch); |
| return branch; |
| } |
| } // namespace |
| |
| Node* WasmGraphBuilder::BranchNoHint(Node* cond, Node** true_node, |
| Node** false_node) { |
| return Branch(jsgraph(), cond, true_node, false_node, *control_, |
| BranchHint::kNone); |
| } |
| |
| Node* WasmGraphBuilder::BranchExpectTrue(Node* cond, Node** true_node, |
| Node** false_node) { |
| return Branch(jsgraph(), cond, true_node, false_node, *control_, |
| BranchHint::kTrue); |
| } |
| |
| Node* WasmGraphBuilder::BranchExpectFalse(Node* cond, Node** true_node, |
| Node** false_node) { |
| return Branch(jsgraph(), cond, true_node, false_node, *control_, |
| BranchHint::kFalse); |
| } |
| |
| Builtins::Name WasmGraphBuilder::GetBuiltinIdForTrap(wasm::TrapReason reason) { |
| if (runtime_exception_support_ == kNoRuntimeExceptionSupport) { |
| // We use Builtins::builtin_count as a marker to tell the code generator |
| // to generate a call to a testing c-function instead of a runtime |
| // function. This code should only be called from a cctest. |
| return Builtins::builtin_count; |
| } |
| |
| switch (reason) { |
| #define TRAPREASON_TO_MESSAGE(name) \ |
| case wasm::k##name: \ |
| return Builtins::kThrowWasm##name; |
| FOREACH_WASM_TRAPREASON(TRAPREASON_TO_MESSAGE) |
| #undef TRAPREASON_TO_MESSAGE |
| default: |
| UNREACHABLE(); |
| } |
| } |
| |
| Node* WasmGraphBuilder::TrapIfTrue(wasm::TrapReason reason, Node* cond, |
| wasm::WasmCodePosition position) { |
| Builtins::Name trap_id = GetBuiltinIdForTrap(reason); |
| Node* node = graph()->NewNode(jsgraph()->common()->TrapIf(trap_id), cond, |
| Effect(), Control()); |
| *control_ = node; |
| SetSourcePosition(node, position); |
| return node; |
| } |
| |
| Node* WasmGraphBuilder::TrapIfFalse(wasm::TrapReason reason, Node* cond, |
| wasm::WasmCodePosition position) { |
| Builtins::Name trap_id = GetBuiltinIdForTrap(reason); |
| |
| Node* node = graph()->NewNode(jsgraph()->common()->TrapUnless(trap_id), cond, |
| Effect(), Control()); |
| *control_ = node; |
| SetSourcePosition(node, position); |
| return node; |
| } |
| |
| // Add a check that traps if {node} is equal to {val}. |
| Node* WasmGraphBuilder::TrapIfEq32(wasm::TrapReason reason, Node* node, |
| int32_t val, |
| wasm::WasmCodePosition position) { |
| Int32Matcher m(node); |
| if (m.HasValue() && !m.Is(val)) return graph()->start(); |
| if (val == 0) { |
| return TrapIfFalse(reason, node, position); |
| } else { |
| return TrapIfTrue(reason, |
| graph()->NewNode(jsgraph()->machine()->Word32Equal(), |
| node, jsgraph()->Int32Constant(val)), |
| position); |
| } |
| } |
| |
| // Add a check that traps if {node} is zero. |
| Node* WasmGraphBuilder::ZeroCheck32(wasm::TrapReason reason, Node* node, |
| wasm::WasmCodePosition position) { |
| return TrapIfEq32(reason, node, 0, position); |
| } |
| |
| // Add a check that traps if {node} is equal to {val}. |
| Node* WasmGraphBuilder::TrapIfEq64(wasm::TrapReason reason, Node* node, |
| int64_t val, |
| wasm::WasmCodePosition position) { |
| Int64Matcher m(node); |
| if (m.HasValue() && !m.Is(val)) return graph()->start(); |
| return TrapIfTrue(reason, |
| graph()->NewNode(jsgraph()->machine()->Word64Equal(), node, |
| jsgraph()->Int64Constant(val)), |
| position); |
| } |
| |
| // Add a check that traps if {node} is zero. |
| Node* WasmGraphBuilder::ZeroCheck64(wasm::TrapReason reason, Node* node, |
| wasm::WasmCodePosition position) { |
| return TrapIfEq64(reason, node, 0, position); |
| } |
| |
| Node* WasmGraphBuilder::Switch(unsigned count, Node* key) { |
| return graph()->NewNode(jsgraph()->common()->Switch(count), key, *control_); |
| } |
| |
| Node* WasmGraphBuilder::IfValue(int32_t value, Node* sw) { |
| DCHECK_EQ(IrOpcode::kSwitch, sw->opcode()); |
| return graph()->NewNode(jsgraph()->common()->IfValue(value), sw); |
| } |
| |
| Node* WasmGraphBuilder::IfDefault(Node* sw) { |
| DCHECK_EQ(IrOpcode::kSwitch, sw->opcode()); |
| return graph()->NewNode(jsgraph()->common()->IfDefault(), sw); |
| } |
| |
| Node* WasmGraphBuilder::Return(unsigned count, Node** vals) { |
| DCHECK_NOT_NULL(*control_); |
| DCHECK_NOT_NULL(*effect_); |
| |
| static const int kStackAllocatedNodeBufferSize = 8; |
| Node* stack_buffer[kStackAllocatedNodeBufferSize]; |
| std::vector<Node*> heap_buffer; |
| |
| Node** buf = stack_buffer; |
| if (count + 3 > kStackAllocatedNodeBufferSize) { |
| heap_buffer.resize(count + 3); |
| buf = heap_buffer.data(); |
| } |
| |
| buf[0] = jsgraph()->Int32Constant(0); |
| memcpy(buf + 1, vals, sizeof(void*) * count); |
| buf[count + 1] = *effect_; |
| buf[count + 2] = *control_; |
| Node* ret = |
| graph()->NewNode(jsgraph()->common()->Return(count), count + 3, buf); |
| |
| MergeControlToEnd(jsgraph(), ret); |
| return ret; |
| } |
| |
| Node* WasmGraphBuilder::ReturnVoid() { return Return(0, nullptr); } |
| |
| Node* WasmGraphBuilder::Unreachable(wasm::WasmCodePosition position) { |
| TrapIfFalse(wasm::TrapReason::kTrapUnreachable, Int32Constant(0), position); |
| ReturnVoid(); |
| return nullptr; |
| } |
| |
| Node* WasmGraphBuilder::MaskShiftCount32(Node* node) { |
| static const int32_t kMask32 = 0x1F; |
| if (!jsgraph()->machine()->Word32ShiftIsSafe()) { |
| // Shifts by constants are so common we pattern-match them here. |
| Int32Matcher match(node); |
| if (match.HasValue()) { |
| int32_t masked = (match.Value() & kMask32); |
| if (match.Value() != masked) node = jsgraph()->Int32Constant(masked); |
| } else { |
| node = graph()->NewNode(jsgraph()->machine()->Word32And(), node, |
| jsgraph()->Int32Constant(kMask32)); |
| } |
| } |
| return node; |
| } |
| |
| Node* WasmGraphBuilder::MaskShiftCount64(Node* node) { |
| static const int64_t kMask64 = 0x3F; |
| if (!jsgraph()->machine()->Word32ShiftIsSafe()) { |
| // Shifts by constants are so common we pattern-match them here. |
| Int64Matcher match(node); |
| if (match.HasValue()) { |
| int64_t masked = (match.Value() & kMask64); |
| if (match.Value() != masked) node = jsgraph()->Int64Constant(masked); |
| } else { |
| node = graph()->NewNode(jsgraph()->machine()->Word64And(), node, |
| jsgraph()->Int64Constant(kMask64)); |
| } |
| } |
| return node; |
| } |
| |
| static bool ReverseBytesSupported(MachineOperatorBuilder* m, |
| size_t size_in_bytes) { |
| switch (size_in_bytes) { |
| case 4: |
| case 16: |
| return m->Word32ReverseBytes().IsSupported(); |
| case 8: |
| return m->Word64ReverseBytes().IsSupported(); |
| default: |
| break; |
| } |
| return false; |
| } |
| |
| Node* WasmGraphBuilder::BuildChangeEndiannessStore( |
| Node* node, MachineRepresentation mem_rep, wasm::ValueType wasmtype) { |
| Node* result; |
| Node* value = node; |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| int valueSizeInBytes = 1 << ElementSizeLog2Of(wasmtype); |
| int valueSizeInBits = 8 * valueSizeInBytes; |
| bool isFloat = false; |
| |
| switch (wasmtype) { |
| case wasm::kWasmF64: |
| value = graph()->NewNode(m->BitcastFloat64ToInt64(), node); |
| isFloat = true; |
| case wasm::kWasmI64: |
| result = jsgraph()->Int64Constant(0); |
| break; |
| case wasm::kWasmF32: |
| value = graph()->NewNode(m->BitcastFloat32ToInt32(), node); |
| isFloat = true; |
| case wasm::kWasmI32: |
| result = jsgraph()->Int32Constant(0); |
| break; |
| case wasm::kWasmS128: |
| DCHECK(ReverseBytesSupported(m, valueSizeInBytes)); |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| |
| if (mem_rep == MachineRepresentation::kWord8) { |
| // No need to change endianness for byte size, return original node |
| return node; |
| } |
| if (wasmtype == wasm::kWasmI64 && mem_rep < MachineRepresentation::kWord64) { |
| // In case we store lower part of WasmI64 expression, we can truncate |
| // upper 32bits |
| value = graph()->NewNode(m->TruncateInt64ToInt32(), value); |
| valueSizeInBytes = 1 << ElementSizeLog2Of(wasm::kWasmI32); |
| valueSizeInBits = 8 * valueSizeInBytes; |
| if (mem_rep == MachineRepresentation::kWord16) { |
| value = |
| graph()->NewNode(m->Word32Shl(), value, jsgraph()->Int32Constant(16)); |
| } |
| } else if (wasmtype == wasm::kWasmI32 && |
| mem_rep == MachineRepresentation::kWord16) { |
| value = |
| graph()->NewNode(m->Word32Shl(), value, jsgraph()->Int32Constant(16)); |
| } |
| |
| int i; |
| uint32_t shiftCount; |
| |
| if (ReverseBytesSupported(m, valueSizeInBytes)) { |
| switch (valueSizeInBytes) { |
| case 4: |
| result = graph()->NewNode(m->Word32ReverseBytes().op(), value); |
| break; |
| case 8: |
| result = graph()->NewNode(m->Word64ReverseBytes().op(), value); |
| break; |
| case 16: { |
| Node* byte_reversed_lanes[4]; |
| for (int lane = 0; lane < 4; lane++) { |
| byte_reversed_lanes[lane] = graph()->NewNode( |
| m->Word32ReverseBytes().op(), |
| graph()->NewNode(jsgraph()->machine()->I32x4ExtractLane(lane), |
| value)); |
| } |
| |
| // This is making a copy of the value. |
| result = |
| graph()->NewNode(jsgraph()->machine()->S128And(), value, value); |
| |
| for (int lane = 0; lane < 4; lane++) { |
| result = |
| graph()->NewNode(jsgraph()->machine()->I32x4ReplaceLane(3 - lane), |
| result, byte_reversed_lanes[lane]); |
| } |
| |
| break; |
| } |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| } else { |
| for (i = 0, shiftCount = valueSizeInBits - 8; i < valueSizeInBits / 2; |
| i += 8, shiftCount -= 16) { |
| Node* shiftLower; |
| Node* shiftHigher; |
| Node* lowerByte; |
| Node* higherByte; |
| |
| DCHECK_LT(0, shiftCount); |
| DCHECK_EQ(0, (shiftCount + 8) % 16); |
| |
| if (valueSizeInBits > 32) { |
| shiftLower = graph()->NewNode(m->Word64Shl(), value, |
| jsgraph()->Int64Constant(shiftCount)); |
| shiftHigher = graph()->NewNode(m->Word64Shr(), value, |
| jsgraph()->Int64Constant(shiftCount)); |
| lowerByte = graph()->NewNode( |
| m->Word64And(), shiftLower, |
| jsgraph()->Int64Constant(static_cast<uint64_t>(0xFF) |
| << (valueSizeInBits - 8 - i))); |
| higherByte = graph()->NewNode( |
| m->Word64And(), shiftHigher, |
| jsgraph()->Int64Constant(static_cast<uint64_t>(0xFF) << i)); |
| result = graph()->NewNode(m->Word64Or(), result, lowerByte); |
| result = graph()->NewNode(m->Word64Or(), result, higherByte); |
| } else { |
| shiftLower = graph()->NewNode(m->Word32Shl(), value, |
| jsgraph()->Int32Constant(shiftCount)); |
| shiftHigher = graph()->NewNode(m->Word32Shr(), value, |
| jsgraph()->Int32Constant(shiftCount)); |
| lowerByte = graph()->NewNode( |
| m->Word32And(), shiftLower, |
| jsgraph()->Int32Constant(static_cast<uint32_t>(0xFF) |
| << (valueSizeInBits - 8 - i))); |
| higherByte = graph()->NewNode( |
| m->Word32And(), shiftHigher, |
| jsgraph()->Int32Constant(static_cast<uint32_t>(0xFF) << i)); |
| result = graph()->NewNode(m->Word32Or(), result, lowerByte); |
| result = graph()->NewNode(m->Word32Or(), result, higherByte); |
| } |
| } |
| } |
| |
| if (isFloat) { |
| switch (wasmtype) { |
| case wasm::kWasmF64: |
| result = graph()->NewNode(m->BitcastInt64ToFloat64(), result); |
| break; |
| case wasm::kWasmF32: |
| result = graph()->NewNode(m->BitcastInt32ToFloat32(), result); |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| } |
| |
| return result; |
| } |
| |
| Node* WasmGraphBuilder::BuildChangeEndiannessLoad(Node* node, |
| MachineType memtype, |
| wasm::ValueType wasmtype) { |
| Node* result; |
| Node* value = node; |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| int valueSizeInBytes = 1 << ElementSizeLog2Of(memtype.representation()); |
| int valueSizeInBits = 8 * valueSizeInBytes; |
| bool isFloat = false; |
| |
| switch (memtype.representation()) { |
| case MachineRepresentation::kFloat64: |
| value = graph()->NewNode(m->BitcastFloat64ToInt64(), node); |
| isFloat = true; |
| case MachineRepresentation::kWord64: |
| result = jsgraph()->Int64Constant(0); |
| break; |
| case MachineRepresentation::kFloat32: |
| value = graph()->NewNode(m->BitcastFloat32ToInt32(), node); |
| isFloat = true; |
| case MachineRepresentation::kWord32: |
| case MachineRepresentation::kWord16: |
| result = jsgraph()->Int32Constant(0); |
| break; |
| case MachineRepresentation::kWord8: |
| // No need to change endianness for byte size, return original node |
| return node; |
| break; |
| case MachineRepresentation::kSimd128: |
| DCHECK(ReverseBytesSupported(m, valueSizeInBytes)); |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| |
| int i; |
| uint32_t shiftCount; |
| |
| if (ReverseBytesSupported(m, valueSizeInBytes < 4 ? 4 : valueSizeInBytes)) { |
| switch (valueSizeInBytes) { |
| case 2: |
| result = |
| graph()->NewNode(m->Word32ReverseBytes().op(), |
| graph()->NewNode(m->Word32Shl(), value, |
| jsgraph()->Int32Constant(16))); |
| break; |
| case 4: |
| result = graph()->NewNode(m->Word32ReverseBytes().op(), value); |
| break; |
| case 8: |
| result = graph()->NewNode(m->Word64ReverseBytes().op(), value); |
| break; |
| case 16: { |
| Node* byte_reversed_lanes[4]; |
| for (int lane = 0; lane < 4; lane++) { |
| byte_reversed_lanes[lane] = graph()->NewNode( |
| m->Word32ReverseBytes().op(), |
| graph()->NewNode(jsgraph()->machine()->I32x4ExtractLane(lane), |
| value)); |
| } |
| |
| // This is making a copy of the value. |
| result = |
| graph()->NewNode(jsgraph()->machine()->S128And(), value, value); |
| |
| for (int lane = 0; lane < 4; lane++) { |
| result = |
| graph()->NewNode(jsgraph()->machine()->I32x4ReplaceLane(3 - lane), |
| result, byte_reversed_lanes[lane]); |
| } |
| |
| break; |
| } |
| default: |
| UNREACHABLE(); |
| } |
| } else { |
| for (i = 0, shiftCount = valueSizeInBits - 8; i < valueSizeInBits / 2; |
| i += 8, shiftCount -= 16) { |
| Node* shiftLower; |
| Node* shiftHigher; |
| Node* lowerByte; |
| Node* higherByte; |
| |
| DCHECK_LT(0, shiftCount); |
| DCHECK_EQ(0, (shiftCount + 8) % 16); |
| |
| if (valueSizeInBits > 32) { |
| shiftLower = graph()->NewNode(m->Word64Shl(), value, |
| jsgraph()->Int64Constant(shiftCount)); |
| shiftHigher = graph()->NewNode(m->Word64Shr(), value, |
| jsgraph()->Int64Constant(shiftCount)); |
| lowerByte = graph()->NewNode( |
| m->Word64And(), shiftLower, |
| jsgraph()->Int64Constant(static_cast<uint64_t>(0xFF) |
| << (valueSizeInBits - 8 - i))); |
| higherByte = graph()->NewNode( |
| m->Word64And(), shiftHigher, |
| jsgraph()->Int64Constant(static_cast<uint64_t>(0xFF) << i)); |
| result = graph()->NewNode(m->Word64Or(), result, lowerByte); |
| result = graph()->NewNode(m->Word64Or(), result, higherByte); |
| } else { |
| shiftLower = graph()->NewNode(m->Word32Shl(), value, |
| jsgraph()->Int32Constant(shiftCount)); |
| shiftHigher = graph()->NewNode(m->Word32Shr(), value, |
| jsgraph()->Int32Constant(shiftCount)); |
| lowerByte = graph()->NewNode( |
| m->Word32And(), shiftLower, |
| jsgraph()->Int32Constant(static_cast<uint32_t>(0xFF) |
| << (valueSizeInBits - 8 - i))); |
| higherByte = graph()->NewNode( |
| m->Word32And(), shiftHigher, |
| jsgraph()->Int32Constant(static_cast<uint32_t>(0xFF) << i)); |
| result = graph()->NewNode(m->Word32Or(), result, lowerByte); |
| result = graph()->NewNode(m->Word32Or(), result, higherByte); |
| } |
| } |
| } |
| |
| if (isFloat) { |
| switch (memtype.representation()) { |
| case MachineRepresentation::kFloat64: |
| result = graph()->NewNode(m->BitcastInt64ToFloat64(), result); |
| break; |
| case MachineRepresentation::kFloat32: |
| result = graph()->NewNode(m->BitcastInt32ToFloat32(), result); |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| } |
| |
| // We need to sign extend the value |
| if (memtype.IsSigned()) { |
| DCHECK(!isFloat); |
| if (valueSizeInBits < 32) { |
| Node* shiftBitCount; |
| // Perform sign extension using following trick |
| // result = (x << machine_width - type_width) >> (machine_width - |
| // type_width) |
| if (wasmtype == wasm::kWasmI64) { |
| shiftBitCount = jsgraph()->Int32Constant(64 - valueSizeInBits); |
| result = graph()->NewNode( |
| m->Word64Sar(), |
| graph()->NewNode(m->Word64Shl(), |
| graph()->NewNode(m->ChangeInt32ToInt64(), result), |
| shiftBitCount), |
| shiftBitCount); |
| } else if (wasmtype == wasm::kWasmI32) { |
| shiftBitCount = jsgraph()->Int32Constant(32 - valueSizeInBits); |
| result = graph()->NewNode( |
| m->Word32Sar(), |
| graph()->NewNode(m->Word32Shl(), result, shiftBitCount), |
| shiftBitCount); |
| } |
| } |
| } |
| |
| return result; |
| } |
| |
| Node* WasmGraphBuilder::BuildF32CopySign(Node* left, Node* right) { |
| Node* result = Unop( |
| wasm::kExprF32ReinterpretI32, |
| Binop(wasm::kExprI32Ior, |
| Binop(wasm::kExprI32And, Unop(wasm::kExprI32ReinterpretF32, left), |
| jsgraph()->Int32Constant(0x7FFFFFFF)), |
| Binop(wasm::kExprI32And, Unop(wasm::kExprI32ReinterpretF32, right), |
| jsgraph()->Int32Constant(0x80000000)))); |
| |
| return result; |
| } |
| |
| Node* WasmGraphBuilder::BuildF64CopySign(Node* left, Node* right) { |
| #if WASM_64 |
| Node* result = Unop( |
| wasm::kExprF64ReinterpretI64, |
| Binop(wasm::kExprI64Ior, |
| Binop(wasm::kExprI64And, Unop(wasm::kExprI64ReinterpretF64, left), |
| jsgraph()->Int64Constant(0x7FFFFFFFFFFFFFFF)), |
| Binop(wasm::kExprI64And, Unop(wasm::kExprI64ReinterpretF64, right), |
| jsgraph()->Int64Constant(0x8000000000000000)))); |
| |
| return result; |
| #else |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| |
| Node* high_word_left = graph()->NewNode(m->Float64ExtractHighWord32(), left); |
| Node* high_word_right = |
| graph()->NewNode(m->Float64ExtractHighWord32(), right); |
| |
| Node* new_high_word = Binop(wasm::kExprI32Ior, |
| Binop(wasm::kExprI32And, high_word_left, |
| jsgraph()->Int32Constant(0x7FFFFFFF)), |
| Binop(wasm::kExprI32And, high_word_right, |
| jsgraph()->Int32Constant(0x80000000))); |
| |
| return graph()->NewNode(m->Float64InsertHighWord32(), left, new_high_word); |
| #endif |
| } |
| |
| // Helper classes for float to int conversions. |
| struct WasmGraphBuilder::IntConvertOps { |
| MachineRepresentation word_rep() const { |
| return MachineRepresentation::kWord32; |
| } |
| Node* zero() const { return builder_->Int32Constant(0); } |
| virtual Node* min() const = 0; |
| virtual Node* max() const = 0; |
| virtual ~IntConvertOps() = default; |
| |
| protected: |
| explicit IntConvertOps(WasmGraphBuilder* builder) : builder_(builder) {} |
| WasmGraphBuilder* builder_; |
| DISALLOW_IMPLICIT_CONSTRUCTORS(IntConvertOps); |
| }; |
| |
| struct I32SConvertOps final : public WasmGraphBuilder::IntConvertOps { |
| explicit I32SConvertOps(WasmGraphBuilder* builder) |
| : WasmGraphBuilder::IntConvertOps(builder) {} |
| ~I32SConvertOps() = default; |
| Node* min() const { |
| return builder_->Int32Constant(std::numeric_limits<int32_t>::min()); |
| } |
| Node* max() const { |
| return builder_->Int32Constant(std::numeric_limits<int32_t>::max()); |
| } |
| DISALLOW_IMPLICIT_CONSTRUCTORS(I32SConvertOps); |
| }; |
| |
| struct I32UConvertOps final : public WasmGraphBuilder::IntConvertOps { |
| explicit I32UConvertOps(WasmGraphBuilder* builder) |
| : WasmGraphBuilder::IntConvertOps(builder) {} |
| ~I32UConvertOps() = default; |
| Node* min() const { |
| return builder_->Int32Constant(std::numeric_limits<uint32_t>::min()); |
| } |
| Node* max() const { |
| return builder_->Int32Constant(std::numeric_limits<uint32_t>::max()); |
| } |
| DISALLOW_IMPLICIT_CONSTRUCTORS(I32UConvertOps); |
| }; |
| |
| struct WasmGraphBuilder::FloatConvertOps { |
| virtual Node* zero() const = 0; |
| virtual wasm::WasmOpcode trunc_op() const = 0; |
| virtual wasm::WasmOpcode ne_op() const = 0; |
| virtual wasm::WasmOpcode lt_op() const = 0; |
| virtual ~FloatConvertOps() = default; |
| |
| protected: |
| explicit FloatConvertOps(WasmGraphBuilder* builder) : builder_(builder) {} |
| WasmGraphBuilder* builder_; |
| DISALLOW_IMPLICIT_CONSTRUCTORS(FloatConvertOps); |
| }; |
| |
| struct F32ConvertOps final : public WasmGraphBuilder::FloatConvertOps { |
| explicit F32ConvertOps(WasmGraphBuilder* builder) |
| : WasmGraphBuilder::FloatConvertOps(builder) {} |
| ~F32ConvertOps() = default; |
| Node* zero() const { return builder_->Float32Constant(0.0); } |
| wasm::WasmOpcode trunc_op() const { return wasm::kExprF32Trunc; } |
| wasm::WasmOpcode ne_op() const { return wasm::kExprF32Ne; } |
| wasm::WasmOpcode lt_op() const { return wasm::kExprF32Lt; } |
| DISALLOW_IMPLICIT_CONSTRUCTORS(F32ConvertOps); |
| }; |
| |
| struct F64ConvertOps final : public WasmGraphBuilder::FloatConvertOps { |
| explicit F64ConvertOps(WasmGraphBuilder* builder) |
| : WasmGraphBuilder::FloatConvertOps(builder) {} |
| ~F64ConvertOps() = default; |
| Node* zero() const { return builder_->Float64Constant(0.0); } |
| wasm::WasmOpcode trunc_op() const { return wasm::kExprF64Trunc; } |
| wasm::WasmOpcode ne_op() const { return wasm::kExprF64Ne; } |
| wasm::WasmOpcode lt_op() const { return wasm::kExprF64Lt; } |
| DISALLOW_IMPLICIT_CONSTRUCTORS(F64ConvertOps); |
| }; |
| |
| Node* WasmGraphBuilder::BuildConvertCheck(Node* test, Node* result, Node* input, |
| wasm::WasmCodePosition position, |
| NumericImplementation impl, |
| const IntConvertOps* int_ops, |
| const FloatConvertOps* float_ops) { |
| switch (impl) { |
| case NumericImplementation::kTrap: |
| TrapIfTrue(wasm::kTrapFloatUnrepresentable, test, position); |
| return result; |
| case NumericImplementation::kSaturate: { |
| Diamond tl_d(graph(), jsgraph()->common(), test, BranchHint::kFalse); |
| tl_d.Chain(*control_); |
| Diamond nan_d(graph(), jsgraph()->common(), |
| Binop(float_ops->ne_op(), input, input), // Checks if NaN. |
| BranchHint::kFalse); |
| nan_d.Nest(tl_d, true); |
| Diamond sat_d(graph(), jsgraph()->common(), |
| Binop(float_ops->lt_op(), input, float_ops->zero()), |
| BranchHint::kNone); |
| sat_d.Nest(nan_d, false); |
| Node* sat_val = |
| sat_d.Phi(int_ops->word_rep(), int_ops->min(), int_ops->max()); |
| Node* nan_val = nan_d.Phi(int_ops->word_rep(), int_ops->zero(), sat_val); |
| return tl_d.Phi(int_ops->word_rep(), nan_val, result); |
| } |
| } |
| UNREACHABLE(); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32ConvertOp( |
| Node* input, wasm::WasmCodePosition position, NumericImplementation impl, |
| const Operator* op, wasm::WasmOpcode check_op, const IntConvertOps* int_ops, |
| const FloatConvertOps* float_ops) { |
| // Truncation of the input value is needed for the overflow check later. |
| Node* trunc = Unop(float_ops->trunc_op(), input); |
| Node* result = graph()->NewNode(op, trunc); |
| |
| // Convert the result back to f64. If we end up at a different value than the |
| // truncated input value, then there has been an overflow and we |
| // trap/saturate. |
| Node* check = Unop(check_op, result); |
| Node* overflow = Binop(float_ops->ne_op(), trunc, check); |
| return BuildConvertCheck(overflow, result, input, position, impl, int_ops, |
| float_ops); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32SConvertF32(Node* input, |
| wasm::WasmCodePosition position, |
| NumericImplementation impl) { |
| I32SConvertOps int_ops(this); |
| F32ConvertOps float_ops(this); |
| return BuildI32ConvertOp(input, position, impl, |
| jsgraph()->machine()->TruncateFloat32ToInt32(), |
| wasm::kExprF32SConvertI32, &int_ops, &float_ops); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32SConvertF64(Node* input, |
| wasm::WasmCodePosition position, |
| NumericImplementation impl) { |
| I32SConvertOps int_ops(this); |
| F64ConvertOps float_ops(this); |
| return BuildI32ConvertOp(input, position, impl, |
| jsgraph()->machine()->ChangeFloat64ToInt32(), |
| wasm::kExprF64SConvertI32, &int_ops, &float_ops); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32UConvertF32(Node* input, |
| wasm::WasmCodePosition position, |
| NumericImplementation impl) { |
| I32UConvertOps int_ops(this); |
| F32ConvertOps float_ops(this); |
| return BuildI32ConvertOp(input, position, impl, |
| jsgraph()->machine()->TruncateFloat32ToUint32(), |
| wasm::kExprF32UConvertI32, &int_ops, &float_ops); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32UConvertF64(Node* input, |
| wasm::WasmCodePosition position, |
| NumericImplementation impl) { |
| I32UConvertOps int_ops(this); |
| F64ConvertOps float_ops(this); |
| return BuildI32ConvertOp(input, position, impl, |
| jsgraph()->machine()->TruncateFloat64ToUint32(), |
| wasm::kExprF64UConvertI32, &int_ops, &float_ops); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsSConvertF32(Node* input) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| // asm.js must use the wacky JS semantics. |
| input = graph()->NewNode(m->ChangeFloat32ToFloat64(), input); |
| return graph()->NewNode(m->TruncateFloat64ToWord32(), input); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsSConvertF64(Node* input) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| // asm.js must use the wacky JS semantics. |
| return graph()->NewNode(m->TruncateFloat64ToWord32(), input); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsUConvertF32(Node* input) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| // asm.js must use the wacky JS semantics. |
| input = graph()->NewNode(m->ChangeFloat32ToFloat64(), input); |
| return graph()->NewNode(m->TruncateFloat64ToWord32(), input); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsUConvertF64(Node* input) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| // asm.js must use the wacky JS semantics. |
| return graph()->NewNode(m->TruncateFloat64ToWord32(), input); |
| } |
| |
| Node* WasmGraphBuilder::BuildBitCountingCall(Node* input, ExternalReference ref, |
| MachineRepresentation input_type) { |
| Node* stack_slot_param = |
| graph()->NewNode(jsgraph()->machine()->StackSlot(input_type)); |
| |
| const Operator* store_op = jsgraph()->machine()->Store( |
| StoreRepresentation(input_type, kNoWriteBarrier)); |
| *effect_ = |
| graph()->NewNode(store_op, stack_slot_param, jsgraph()->Int32Constant(0), |
| input, *effect_, *control_); |
| |
| MachineSignature::Builder sig_builder(jsgraph()->zone(), 1, 1); |
| sig_builder.AddReturn(MachineType::Int32()); |
| sig_builder.AddParam(MachineType::Pointer()); |
| |
| Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); |
| |
| return BuildCCall(sig_builder.Build(), function, stack_slot_param); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32Ctz(Node* input) { |
| return BuildBitCountingCall( |
| input, ExternalReference::wasm_word32_ctz(jsgraph()->isolate()), |
| MachineRepresentation::kWord32); |
| } |
| |
| Node* WasmGraphBuilder::BuildI64Ctz(Node* input) { |
| return Unop(wasm::kExprI64UConvertI32, |
| BuildBitCountingCall(input, ExternalReference::wasm_word64_ctz( |
| jsgraph()->isolate()), |
| MachineRepresentation::kWord64)); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32Popcnt(Node* input) { |
| return BuildBitCountingCall( |
| input, ExternalReference::wasm_word32_popcnt(jsgraph()->isolate()), |
| MachineRepresentation::kWord32); |
| } |
| |
| Node* WasmGraphBuilder::BuildI64Popcnt(Node* input) { |
| return Unop(wasm::kExprI64UConvertI32, |
| BuildBitCountingCall(input, ExternalReference::wasm_word64_popcnt( |
| jsgraph()->isolate()), |
| MachineRepresentation::kWord64)); |
| } |
| |
| Node* WasmGraphBuilder::BuildF32Trunc(Node* input) { |
| MachineType type = MachineType::Float32(); |
| ExternalReference ref = |
| ExternalReference::wasm_f32_trunc(jsgraph()->isolate()); |
| |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF32Floor(Node* input) { |
| MachineType type = MachineType::Float32(); |
| ExternalReference ref = |
| ExternalReference::wasm_f32_floor(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF32Ceil(Node* input) { |
| MachineType type = MachineType::Float32(); |
| ExternalReference ref = |
| ExternalReference::wasm_f32_ceil(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF32NearestInt(Node* input) { |
| MachineType type = MachineType::Float32(); |
| ExternalReference ref = |
| ExternalReference::wasm_f32_nearest_int(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64Trunc(Node* input) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::wasm_f64_trunc(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64Floor(Node* input) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::wasm_f64_floor(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64Ceil(Node* input) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::wasm_f64_ceil(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64NearestInt(Node* input) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::wasm_f64_nearest_int(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64Acos(Node* input) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::f64_acos_wrapper_function(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64Asin(Node* input) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::f64_asin_wrapper_function(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, input); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64Pow(Node* left, Node* right) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::wasm_float64_pow(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, left, right); |
| } |
| |
| Node* WasmGraphBuilder::BuildF64Mod(Node* left, Node* right) { |
| MachineType type = MachineType::Float64(); |
| ExternalReference ref = |
| ExternalReference::f64_mod_wrapper_function(jsgraph()->isolate()); |
| return BuildCFuncInstruction(ref, type, left, right); |
| } |
| |
| Node* WasmGraphBuilder::BuildCFuncInstruction(ExternalReference ref, |
| MachineType type, Node* input0, |
| Node* input1) { |
| // We do truncation by calling a C function which calculates the result. |
| // The input is passed to the C function as a double*'s to avoid double |
| // parameters. For this we reserve slots on the stack, store the parameters |
| // in those slots, pass pointers to the slot to the C function, |
| // and after calling the C function we collect the return value from |
| // the stack slot. |
| |
| Node* stack_slot_param0 = |
| graph()->NewNode(jsgraph()->machine()->StackSlot(type.representation())); |
| |
| const Operator* store_op0 = jsgraph()->machine()->Store( |
| StoreRepresentation(type.representation(), kNoWriteBarrier)); |
| *effect_ = graph()->NewNode(store_op0, stack_slot_param0, |
| jsgraph()->Int32Constant(0), input0, *effect_, |
| *control_); |
| |
| Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); |
| |
| if (input1 == nullptr) { |
| const int input_count = 1; |
| Signature<MachineType>::Builder sig_builder(jsgraph()->zone(), 0, |
| input_count); |
| sig_builder.AddParam(MachineType::Pointer()); |
| BuildCCall(sig_builder.Build(), function, stack_slot_param0); |
| } else { |
| Node* stack_slot_param1 = graph()->NewNode( |
| jsgraph()->machine()->StackSlot(type.representation())); |
| const Operator* store_op1 = jsgraph()->machine()->Store( |
| StoreRepresentation(type.representation(), kNoWriteBarrier)); |
| *effect_ = graph()->NewNode(store_op1, stack_slot_param1, |
| jsgraph()->Int32Constant(0), input1, *effect_, |
| *control_); |
| |
| const int input_count = 2; |
| Signature<MachineType>::Builder sig_builder(jsgraph()->zone(), 0, |
| input_count); |
| sig_builder.AddParam(MachineType::Pointer()); |
| sig_builder.AddParam(MachineType::Pointer()); |
| BuildCCall(sig_builder.Build(), function, stack_slot_param0, |
| stack_slot_param1); |
| } |
| |
| const Operator* load_op = jsgraph()->machine()->Load(type); |
| |
| Node* load = |
| graph()->NewNode(load_op, stack_slot_param0, jsgraph()->Int32Constant(0), |
| *effect_, *control_); |
| *effect_ = load; |
| return load; |
| } |
| |
| Node* WasmGraphBuilder::BuildF32SConvertI64(Node* input) { |
| // TODO(titzer/bradnelson): Check handlng of asm.js case. |
| return BuildIntToFloatConversionInstruction( |
| input, ExternalReference::wasm_int64_to_float32(jsgraph()->isolate()), |
| MachineRepresentation::kWord64, MachineType::Float32()); |
| } |
| Node* WasmGraphBuilder::BuildF32UConvertI64(Node* input) { |
| // TODO(titzer/bradnelson): Check handlng of asm.js case. |
| return BuildIntToFloatConversionInstruction( |
| input, ExternalReference::wasm_uint64_to_float32(jsgraph()->isolate()), |
| MachineRepresentation::kWord64, MachineType::Float32()); |
| } |
| Node* WasmGraphBuilder::BuildF64SConvertI64(Node* input) { |
| return BuildIntToFloatConversionInstruction( |
| input, ExternalReference::wasm_int64_to_float64(jsgraph()->isolate()), |
| MachineRepresentation::kWord64, MachineType::Float64()); |
| } |
| Node* WasmGraphBuilder::BuildF64UConvertI64(Node* input) { |
| return BuildIntToFloatConversionInstruction( |
| input, ExternalReference::wasm_uint64_to_float64(jsgraph()->isolate()), |
| MachineRepresentation::kWord64, MachineType::Float64()); |
| } |
| |
| Node* WasmGraphBuilder::BuildIntToFloatConversionInstruction( |
| Node* input, ExternalReference ref, |
| MachineRepresentation parameter_representation, |
| const MachineType result_type) { |
| Node* stack_slot_param = graph()->NewNode( |
| jsgraph()->machine()->StackSlot(parameter_representation)); |
| Node* stack_slot_result = graph()->NewNode( |
| jsgraph()->machine()->StackSlot(result_type.representation())); |
| const Operator* store_op = jsgraph()->machine()->Store( |
| StoreRepresentation(parameter_representation, kNoWriteBarrier)); |
| *effect_ = |
| graph()->NewNode(store_op, stack_slot_param, jsgraph()->Int32Constant(0), |
| input, *effect_, *control_); |
| MachineSignature::Builder sig_builder(jsgraph()->zone(), 0, 2); |
| sig_builder.AddParam(MachineType::Pointer()); |
| sig_builder.AddParam(MachineType::Pointer()); |
| Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); |
| BuildCCall(sig_builder.Build(), function, stack_slot_param, |
| stack_slot_result); |
| const Operator* load_op = jsgraph()->machine()->Load(result_type); |
| Node* load = |
| graph()->NewNode(load_op, stack_slot_result, jsgraph()->Int32Constant(0), |
| *effect_, *control_); |
| *effect_ = load; |
| return load; |
| } |
| |
| Node* WasmGraphBuilder::BuildI64SConvertF32(Node* input, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildFloatToIntConversionInstruction( |
| input, ExternalReference::wasm_float32_to_int64(jsgraph()->isolate()), |
| MachineRepresentation::kFloat32, MachineType::Int64(), position); |
| } else { |
| Node* trunc = graph()->NewNode( |
| jsgraph()->machine()->TryTruncateFloat32ToInt64(), input); |
| Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, |
| graph()->start()); |
| Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, |
| graph()->start()); |
| ZeroCheck64(wasm::kTrapFloatUnrepresentable, overflow, position); |
| return result; |
| } |
| } |
| |
| Node* WasmGraphBuilder::BuildI64UConvertF32(Node* input, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildFloatToIntConversionInstruction( |
| input, ExternalReference::wasm_float32_to_uint64(jsgraph()->isolate()), |
| MachineRepresentation::kFloat32, MachineType::Int64(), position); |
| } else { |
| Node* trunc = graph()->NewNode( |
| jsgraph()->machine()->TryTruncateFloat32ToUint64(), input); |
| Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, |
| graph()->start()); |
| Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, |
| graph()->start()); |
| ZeroCheck64(wasm::kTrapFloatUnrepresentable, overflow, position); |
| return result; |
| } |
| } |
| |
| Node* WasmGraphBuilder::BuildI64SConvertF64(Node* input, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildFloatToIntConversionInstruction( |
| input, ExternalReference::wasm_float64_to_int64(jsgraph()->isolate()), |
| MachineRepresentation::kFloat64, MachineType::Int64(), position); |
| } else { |
| Node* trunc = graph()->NewNode( |
| jsgraph()->machine()->TryTruncateFloat64ToInt64(), input); |
| Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, |
| graph()->start()); |
| Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, |
| graph()->start()); |
| ZeroCheck64(wasm::kTrapFloatUnrepresentable, overflow, position); |
| return result; |
| } |
| } |
| |
| Node* WasmGraphBuilder::BuildI64UConvertF64(Node* input, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildFloatToIntConversionInstruction( |
| input, ExternalReference::wasm_float64_to_uint64(jsgraph()->isolate()), |
| MachineRepresentation::kFloat64, MachineType::Int64(), position); |
| } else { |
| Node* trunc = graph()->NewNode( |
| jsgraph()->machine()->TryTruncateFloat64ToUint64(), input); |
| Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, |
| graph()->start()); |
| Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, |
| graph()->start()); |
| ZeroCheck64(wasm::kTrapFloatUnrepresentable, overflow, position); |
| return result; |
| } |
| } |
| |
| Node* WasmGraphBuilder::BuildFloatToIntConversionInstruction( |
| Node* input, ExternalReference ref, |
| MachineRepresentation parameter_representation, |
| const MachineType result_type, wasm::WasmCodePosition position) { |
| Node* stack_slot_param = graph()->NewNode( |
| jsgraph()->machine()->StackSlot(parameter_representation)); |
| Node* stack_slot_result = graph()->NewNode( |
| jsgraph()->machine()->StackSlot(result_type.representation())); |
| const Operator* store_op = jsgraph()->machine()->Store( |
| StoreRepresentation(parameter_representation, kNoWriteBarrier)); |
| *effect_ = |
| graph()->NewNode(store_op, stack_slot_param, jsgraph()->Int32Constant(0), |
| input, *effect_, *control_); |
| MachineSignature::Builder sig_builder(jsgraph()->zone(), 1, 2); |
| sig_builder.AddReturn(MachineType::Int32()); |
| sig_builder.AddParam(MachineType::Pointer()); |
| sig_builder.AddParam(MachineType::Pointer()); |
| Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); |
| ZeroCheck32(wasm::kTrapFloatUnrepresentable, |
| BuildCCall(sig_builder.Build(), function, stack_slot_param, |
| stack_slot_result), |
| position); |
| const Operator* load_op = jsgraph()->machine()->Load(result_type); |
| Node* load = |
| graph()->NewNode(load_op, stack_slot_result, jsgraph()->Int32Constant(0), |
| *effect_, *control_); |
| *effect_ = load; |
| return load; |
| } |
| |
| Node* WasmGraphBuilder::GrowMemory(Node* input) { |
| SetNeedsStackCheck(); |
| Diamond check_input_range( |
| graph(), jsgraph()->common(), |
| graph()->NewNode(jsgraph()->machine()->Uint32LessThanOrEqual(), input, |
| jsgraph()->Uint32Constant(FLAG_wasm_max_mem_pages)), |
| BranchHint::kTrue); |
| |
| check_input_range.Chain(*control_); |
| |
| Node* parameters[] = {BuildChangeUint32ToSmi(input)}; |
| Node* old_effect = *effect_; |
| *control_ = check_input_range.if_true; |
| Node* call = BuildCallToRuntime(Runtime::kWasmGrowMemory, parameters, |
| arraysize(parameters)); |
| |
| Node* result = BuildChangeSmiToInt32(call); |
| |
| result = check_input_range.Phi(MachineRepresentation::kWord32, result, |
| jsgraph()->Int32Constant(-1)); |
| *effect_ = graph()->NewNode(jsgraph()->common()->EffectPhi(2), *effect_, |
| old_effect, check_input_range.merge); |
| *control_ = check_input_range.merge; |
| return result; |
| } |
| |
| uint32_t WasmGraphBuilder::GetExceptionEncodedSize( |
| const wasm::WasmException* exception) const { |
| const wasm::WasmExceptionSig* sig = exception->sig; |
| uint32_t encoded_size = 0; |
| for (size_t i = 0; i < sig->parameter_count(); ++i) { |
| size_t byte_size = size_t(1) << ElementSizeLog2Of(sig->GetParam(i)); |
| DCHECK_EQ(byte_size % kBytesPerExceptionValuesArrayElement, 0); |
| DCHECK_LE(1, byte_size / kBytesPerExceptionValuesArrayElement); |
| encoded_size += byte_size / kBytesPerExceptionValuesArrayElement; |
| } |
| return encoded_size; |
| } |
| |
| Node* WasmGraphBuilder::Throw(uint32_t tag, |
| const wasm::WasmException* exception, |
| const Vector<Node*> values) { |
| SetNeedsStackCheck(); |
| uint32_t encoded_size = GetExceptionEncodedSize(exception); |
| Node* create_parameters[] = { |
| BuildChangeUint32ToSmi(ConvertExceptionTagToRuntimeId(tag)), |
| BuildChangeUint32ToSmi(Uint32Constant(encoded_size))}; |
| BuildCallToRuntime(Runtime::kWasmThrowCreate, create_parameters, |
| arraysize(create_parameters)); |
| uint32_t index = 0; |
| const wasm::WasmExceptionSig* sig = exception->sig; |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| for (size_t i = 0; i < sig->parameter_count(); ++i) { |
| Node* value = values[i]; |
| switch (sig->GetParam(i)) { |
| case wasm::kWasmF32: |
| value = graph()->NewNode(m->BitcastFloat32ToInt32(), value); |
| // Intentionally fall to next case. |
| case wasm::kWasmI32: |
| BuildEncodeException32BitValue(&index, value); |
| break; |
| case wasm::kWasmF64: |
| value = graph()->NewNode(m->BitcastFloat64ToInt64(), value); |
| // Intentionally fall to next case. |
| case wasm::kWasmI64: { |
| Node* upper32 = graph()->NewNode( |
| m->TruncateInt64ToInt32(), |
| Binop(wasm::kExprI64ShrU, value, Int64Constant(32))); |
| BuildEncodeException32BitValue(&index, upper32); |
| Node* lower32 = graph()->NewNode(m->TruncateInt64ToInt32(), value); |
| BuildEncodeException32BitValue(&index, lower32); |
| break; |
| } |
| default: |
| UNREACHABLE(); |
| } |
| } |
| DCHECK_EQ(encoded_size, index); |
| return BuildCallToRuntime(Runtime::kWasmThrow, nullptr, 0); |
| } |
| |
| void WasmGraphBuilder::BuildEncodeException32BitValue(uint32_t* index, |
| Node* value) { |
| MachineOperatorBuilder* machine = jsgraph()->machine(); |
| Node* upper_parameters[] = { |
| BuildChangeUint32ToSmi(Int32Constant(*index)), |
| BuildChangeUint32ToSmi( |
| graph()->NewNode(machine->Word32Shr(), value, Int32Constant(16))), |
| }; |
| BuildCallToRuntime(Runtime::kWasmExceptionSetElement, upper_parameters, |
| arraysize(upper_parameters)); |
| ++(*index); |
| Node* lower_parameters[] = { |
| BuildChangeUint32ToSmi(Int32Constant(*index)), |
| BuildChangeUint32ToSmi(graph()->NewNode(machine->Word32And(), value, |
| Int32Constant(0xFFFFu))), |
| }; |
| BuildCallToRuntime(Runtime::kWasmExceptionSetElement, lower_parameters, |
| arraysize(lower_parameters)); |
| ++(*index); |
| } |
| |
| Node* WasmGraphBuilder::BuildDecodeException32BitValue(Node* const* values, |
| uint32_t* index) { |
| MachineOperatorBuilder* machine = jsgraph()->machine(); |
| Node* upper = BuildChangeSmiToInt32(values[*index]); |
| (*index)++; |
| upper = graph()->NewNode(machine->Word32Shl(), upper, Int32Constant(16)); |
| Node* lower = BuildChangeSmiToInt32(values[*index]); |
| (*index)++; |
| Node* value = graph()->NewNode(machine->Word32Or(), upper, lower); |
| return value; |
| } |
| |
| Node* WasmGraphBuilder::Rethrow() { |
| SetNeedsStackCheck(); |
| Node* result = BuildCallToRuntime(Runtime::kWasmThrow, nullptr, 0); |
| return result; |
| } |
| |
| Node* WasmGraphBuilder::ConvertExceptionTagToRuntimeId(uint32_t tag) { |
| // TODO(kschimpf): Handle exceptions from different modules, when they are |
| // linked at runtime. |
| return Uint32Constant(tag); |
| } |
| |
| Node* WasmGraphBuilder::GetExceptionRuntimeId() { |
| SetNeedsStackCheck(); |
| return BuildChangeSmiToInt32( |
| BuildCallToRuntime(Runtime::kWasmGetExceptionRuntimeId, nullptr, 0)); |
| } |
| |
| Node** WasmGraphBuilder::GetExceptionValues( |
| const wasm::WasmException* except_decl) { |
| // TODO(kschimpf): We need to move this code to the function-body-decoder.cc |
| // in order to build landing-pad (exception) edges in case the runtime |
| // call causes an exception. |
| |
| // Start by getting the encoded values from the exception. |
| uint32_t encoded_size = GetExceptionEncodedSize(except_decl); |
| Node** values = Buffer(encoded_size); |
| for (uint32_t i = 0; i < encoded_size; ++i) { |
| Node* parameters[] = {BuildChangeUint32ToSmi(Uint32Constant(i))}; |
| values[i] = BuildCallToRuntime(Runtime::kWasmExceptionGetElement, |
| parameters, arraysize(parameters)); |
| } |
| |
| // Now convert the leading entries to the corresponding parameter values. |
| uint32_t index = 0; |
| const wasm::WasmExceptionSig* sig = except_decl->sig; |
| for (size_t i = 0; i < sig->parameter_count(); ++i) { |
| Node* value = BuildDecodeException32BitValue(values, &index); |
| switch (wasm::ValueType type = sig->GetParam(i)) { |
| case wasm::kWasmF32: { |
| value = Unop(wasm::kExprF32ReinterpretI32, value); |
| break; |
| } |
| case wasm::kWasmI32: |
| break; |
| case wasm::kWasmF64: |
| case wasm::kWasmI64: { |
| Node* upper = |
| Binop(wasm::kExprI64Shl, Unop(wasm::kExprI64UConvertI32, value), |
| Int64Constant(32)); |
| Node* lower = Unop(wasm::kExprI64UConvertI32, |
| BuildDecodeException32BitValue(values, &index)); |
| value = Binop(wasm::kExprI64Ior, upper, lower); |
| if (type == wasm::kWasmF64) { |
| value = Unop(wasm::kExprF64ReinterpretI64, value); |
| } |
| break; |
| } |
| default: |
| UNREACHABLE(); |
| } |
| values[i] = value; |
| } |
| DCHECK_EQ(index, encoded_size); |
| return values; |
| } |
| |
| Node* WasmGraphBuilder::BuildI32DivS(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| ZeroCheck32(wasm::kTrapDivByZero, right, position); |
| Node* before = *control_; |
| Node* denom_is_m1; |
| Node* denom_is_not_m1; |
| BranchExpectFalse( |
| graph()->NewNode(m->Word32Equal(), right, jsgraph()->Int32Constant(-1)), |
| &denom_is_m1, &denom_is_not_m1); |
| *control_ = denom_is_m1; |
| TrapIfEq32(wasm::kTrapDivUnrepresentable, left, kMinInt, position); |
| if (*control_ != denom_is_m1) { |
| *control_ = graph()->NewNode(jsgraph()->common()->Merge(2), denom_is_not_m1, |
| *control_); |
| } else { |
| *control_ = before; |
| } |
| return graph()->NewNode(m->Int32Div(), left, right, *control_); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32RemS(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| |
| ZeroCheck32(wasm::kTrapRemByZero, right, position); |
| |
| Diamond d( |
| graph(), jsgraph()->common(), |
| graph()->NewNode(m->Word32Equal(), right, jsgraph()->Int32Constant(-1)), |
| BranchHint::kFalse); |
| d.Chain(*control_); |
| |
| return d.Phi(MachineRepresentation::kWord32, jsgraph()->Int32Constant(0), |
| graph()->NewNode(m->Int32Mod(), left, right, d.if_false)); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32DivU(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| return graph()->NewNode(m->Uint32Div(), left, right, |
| ZeroCheck32(wasm::kTrapDivByZero, right, position)); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32RemU(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| return graph()->NewNode(m->Uint32Mod(), left, right, |
| ZeroCheck32(wasm::kTrapRemByZero, right, position)); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsDivS(Node* left, Node* right) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| |
| Int32Matcher mr(right); |
| if (mr.HasValue()) { |
| if (mr.Value() == 0) { |
| return jsgraph()->Int32Constant(0); |
| } else if (mr.Value() == -1) { |
| // The result is the negation of the left input. |
| return graph()->NewNode(m->Int32Sub(), jsgraph()->Int32Constant(0), left); |
| } |
| return graph()->NewNode(m->Int32Div(), left, right, *control_); |
| } |
| |
| // asm.js semantics return 0 on divide or mod by zero. |
| if (m->Int32DivIsSafe()) { |
| // The hardware instruction does the right thing (e.g. arm). |
| return graph()->NewNode(m->Int32Div(), left, right, graph()->start()); |
| } |
| |
| // Check denominator for zero. |
| Diamond z( |
| graph(), jsgraph()->common(), |
| graph()->NewNode(m->Word32Equal(), right, jsgraph()->Int32Constant(0)), |
| BranchHint::kFalse); |
| |
| // Check numerator for -1. (avoid minint / -1 case). |
| Diamond n( |
| graph(), jsgraph()->common(), |
| graph()->NewNode(m->Word32Equal(), right, jsgraph()->Int32Constant(-1)), |
| BranchHint::kFalse); |
| |
| Node* div = graph()->NewNode(m->Int32Div(), left, right, z.if_false); |
| Node* neg = |
| graph()->NewNode(m->Int32Sub(), jsgraph()->Int32Constant(0), left); |
| |
| return n.Phi( |
| MachineRepresentation::kWord32, neg, |
| z.Phi(MachineRepresentation::kWord32, jsgraph()->Int32Constant(0), div)); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsRemS(Node* left, Node* right) { |
| CommonOperatorBuilder* c = jsgraph()->common(); |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| Node* const zero = jsgraph()->Int32Constant(0); |
| |
| Int32Matcher mr(right); |
| if (mr.HasValue()) { |
| if (mr.Value() == 0 || mr.Value() == -1) { |
| return zero; |
| } |
| return graph()->NewNode(m->Int32Mod(), left, right, *control_); |
| } |
| |
| // General case for signed integer modulus, with optimization for (unknown) |
| // power of 2 right hand side. |
| // |
| // if 0 < right then |
| // msk = right - 1 |
| // if right & msk != 0 then |
| // left % right |
| // else |
| // if left < 0 then |
| // -(-left & msk) |
| // else |
| // left & msk |
| // else |
| // if right < -1 then |
| // left % right |
| // else |
| // zero |
| // |
| // Note: We do not use the Diamond helper class here, because it really hurts |
| // readability with nested diamonds. |
| Node* const minus_one = jsgraph()->Int32Constant(-1); |
| |
| const Operator* const merge_op = c->Merge(2); |
| const Operator* const phi_op = c->Phi(MachineRepresentation::kWord32, 2); |
| |
| Node* check0 = graph()->NewNode(m->Int32LessThan(), zero, right); |
| Node* branch0 = |
| graph()->NewNode(c->Branch(BranchHint::kTrue), check0, graph()->start()); |
| |
| Node* if_true0 = graph()->NewNode(c->IfTrue(), branch0); |
| Node* true0; |
| { |
| Node* msk = graph()->NewNode(m->Int32Add(), right, minus_one); |
| |
| Node* check1 = graph()->NewNode(m->Word32And(), right, msk); |
| Node* branch1 = graph()->NewNode(c->Branch(), check1, if_true0); |
| |
| Node* if_true1 = graph()->NewNode(c->IfTrue(), branch1); |
| Node* true1 = graph()->NewNode(m->Int32Mod(), left, right, if_true1); |
| |
| Node* if_false1 = graph()->NewNode(c->IfFalse(), branch1); |
| Node* false1; |
| { |
| Node* check2 = graph()->NewNode(m->Int32LessThan(), left, zero); |
| Node* branch2 = |
| graph()->NewNode(c->Branch(BranchHint::kFalse), check2, if_false1); |
| |
| Node* if_true2 = graph()->NewNode(c->IfTrue(), branch2); |
| Node* true2 = graph()->NewNode( |
| m->Int32Sub(), zero, |
| graph()->NewNode(m->Word32And(), |
| graph()->NewNode(m->Int32Sub(), zero, left), msk)); |
| |
| Node* if_false2 = graph()->NewNode(c->IfFalse(), branch2); |
| Node* false2 = graph()->NewNode(m->Word32And(), left, msk); |
| |
| if_false1 = graph()->NewNode(merge_op, if_true2, if_false2); |
| false1 = graph()->NewNode(phi_op, true2, false2, if_false1); |
| } |
| |
| if_true0 = graph()->NewNode(merge_op, if_true1, if_false1); |
| true0 = graph()->NewNode(phi_op, true1, false1, if_true0); |
| } |
| |
| Node* if_false0 = graph()->NewNode(c->IfFalse(), branch0); |
| Node* false0; |
| { |
| Node* check1 = graph()->NewNode(m->Int32LessThan(), right, minus_one); |
| Node* branch1 = |
| graph()->NewNode(c->Branch(BranchHint::kTrue), check1, if_false0); |
| |
| Node* if_true1 = graph()->NewNode(c->IfTrue(), branch1); |
| Node* true1 = graph()->NewNode(m->Int32Mod(), left, right, if_true1); |
| |
| Node* if_false1 = graph()->NewNode(c->IfFalse(), branch1); |
| Node* false1 = zero; |
| |
| if_false0 = graph()->NewNode(merge_op, if_true1, if_false1); |
| false0 = graph()->NewNode(phi_op, true1, false1, if_false0); |
| } |
| |
| Node* merge0 = graph()->NewNode(merge_op, if_true0, if_false0); |
| return graph()->NewNode(phi_op, true0, false0, merge0); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsDivU(Node* left, Node* right) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| // asm.js semantics return 0 on divide or mod by zero. |
| if (m->Uint32DivIsSafe()) { |
| // The hardware instruction does the right thing (e.g. arm). |
| return graph()->NewNode(m->Uint32Div(), left, right, graph()->start()); |
| } |
| |
| // Explicit check for x % 0. |
| Diamond z( |
| graph(), jsgraph()->common(), |
| graph()->NewNode(m->Word32Equal(), right, jsgraph()->Int32Constant(0)), |
| BranchHint::kFalse); |
| |
| return z.Phi(MachineRepresentation::kWord32, jsgraph()->Int32Constant(0), |
| graph()->NewNode(jsgraph()->machine()->Uint32Div(), left, right, |
| z.if_false)); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32AsmjsRemU(Node* left, Node* right) { |
| MachineOperatorBuilder* m = jsgraph()->machine(); |
| // asm.js semantics return 0 on divide or mod by zero. |
| // Explicit check for x % 0. |
| Diamond z( |
| graph(), jsgraph()->common(), |
| graph()->NewNode(m->Word32Equal(), right, jsgraph()->Int32Constant(0)), |
| BranchHint::kFalse); |
| |
| Node* rem = graph()->NewNode(jsgraph()->machine()->Uint32Mod(), left, right, |
| z.if_false); |
| return z.Phi(MachineRepresentation::kWord32, jsgraph()->Int32Constant(0), |
| rem); |
| } |
| |
| Node* WasmGraphBuilder::BuildI64DivS(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildDiv64Call( |
| left, right, ExternalReference::wasm_int64_div(jsgraph()->isolate()), |
| MachineType::Int64(), wasm::kTrapDivByZero, position); |
| } |
| ZeroCheck64(wasm::kTrapDivByZero, right, position); |
| Node* before = *control_; |
| Node* denom_is_m1; |
| Node* denom_is_not_m1; |
| BranchExpectFalse(graph()->NewNode(jsgraph()->machine()->Word64Equal(), right, |
| jsgraph()->Int64Constant(-1)), |
| &denom_is_m1, &denom_is_not_m1); |
| *control_ = denom_is_m1; |
| TrapIfEq64(wasm::kTrapDivUnrepresentable, left, |
| std::numeric_limits<int64_t>::min(), position); |
| if (*control_ != denom_is_m1) { |
| *control_ = graph()->NewNode(jsgraph()->common()->Merge(2), denom_is_not_m1, |
| *control_); |
| } else { |
| *control_ = before; |
| } |
| return graph()->NewNode(jsgraph()->machine()->Int64Div(), left, right, |
| *control_); |
| } |
| |
| Node* WasmGraphBuilder::BuildI64RemS(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildDiv64Call( |
| left, right, ExternalReference::wasm_int64_mod(jsgraph()->isolate()), |
| MachineType::Int64(), wasm::kTrapRemByZero, position); |
| } |
| ZeroCheck64(wasm::kTrapRemByZero, right, position); |
| Diamond d(jsgraph()->graph(), jsgraph()->common(), |
| graph()->NewNode(jsgraph()->machine()->Word64Equal(), right, |
| jsgraph()->Int64Constant(-1))); |
| |
| d.Chain(*control_); |
| |
| Node* rem = graph()->NewNode(jsgraph()->machine()->Int64Mod(), left, right, |
| d.if_false); |
| |
| return d.Phi(MachineRepresentation::kWord64, jsgraph()->Int64Constant(0), |
| rem); |
| } |
| |
| Node* WasmGraphBuilder::BuildI64DivU(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildDiv64Call( |
| left, right, ExternalReference::wasm_uint64_div(jsgraph()->isolate()), |
| MachineType::Int64(), wasm::kTrapDivByZero, position); |
| } |
| return graph()->NewNode(jsgraph()->machine()->Uint64Div(), left, right, |
| ZeroCheck64(wasm::kTrapDivByZero, right, position)); |
| } |
| Node* WasmGraphBuilder::BuildI64RemU(Node* left, Node* right, |
| wasm::WasmCodePosition position) { |
| if (jsgraph()->machine()->Is32()) { |
| return BuildDiv64Call( |
| left, right, ExternalReference::wasm_uint64_mod(jsgraph()->isolate()), |
| MachineType::Int64(), wasm::kTrapRemByZero, position); |
| } |
| return graph()->NewNode(jsgraph()->machine()->Uint64Mod(), left, right, |
| ZeroCheck64(wasm::kTrapRemByZero, right, position)); |
| } |
| |
| Node* WasmGraphBuilder::BuildDiv64Call(Node* left, Node* right, |
| ExternalReference ref, |
| MachineType result_type, int trap_zero, |
| wasm::WasmCodePosition position) { |
| Node* stack_slot_dst = graph()->NewNode( |
| jsgraph()->machine()->StackSlot(MachineRepresentation::kWord64)); |
| Node* stack_slot_src = graph()->NewNode( |
| jsgraph()->machine()->StackSlot(MachineRepresentation::kWord64)); |
| |
| const Operator* store_op = jsgraph()->machine()->Store( |
| StoreRepresentation(MachineRepresentation::kWord64, kNoWriteBarrier)); |
| *effect_ = |
| graph()->NewNode(store_op, stack_slot_dst, jsgraph()->Int32Constant(0), |
| left, *effect_, *control_); |
| *effect_ = |
| graph()->NewNode(store_op, stack_slot_src, jsgraph()->Int32Constant(0), |
| right, *effect_, *control_); |
| |
| MachineSignature::Builder sig_builder(jsgraph()->zone(), 1, 2); |
| sig_builder.AddReturn(MachineType::Int32()); |
| sig_builder.AddParam(MachineType::Pointer()); |
| sig_builder.AddParam(MachineType::Pointer()); |
| |
| Node* function = graph()->NewNode(jsgraph()->common()->ExternalConstant(ref)); |
| Node* call = |
| BuildCCall(sig_builder.Build(), function, stack_slot_dst, stack_slot_src); |
| |
| ZeroCheck32(static_cast<wasm::TrapReason>(trap_zero), call, position); |
| TrapIfEq32(wasm::kTrapDivUnrepresentable, call, -1, position); |
| const Operator* load_op = jsgraph()->machine()->Load(result_type); |
| Node* load = |
| graph()->NewNode(load_op, stack_slot_dst, jsgraph()->Int32Constant(0), |
| *effect_, *control_); |
| *effect_ = load; |
| return load; |
| } |
| |
| template <typename... Args> |
| Node* WasmGraphBuilder::BuildCCall(MachineSignature* sig, Node* function, |
| Args... args) { |
| DCHECK_LE(sig->return_count(), 1); |
| DCHECK_EQ(sizeof...(args), sig->parameter_count()); |
| Node* const call_args[] = {function, args..., *effect_, *control_}; |
| |
| CallDescriptor* desc = |
| Linkage::GetSimplifiedCDescriptor(jsgraph()->zone(), sig); |
| |
| const Operator* op = jsgraph()->common()->Call(desc); |
| Node* call = graph()->NewNode(op, arraysize(call_args), call_args); |
| *effect_ = call; |
| return call; |
| } |
| |
| Node* WasmGraphBuilder::BuildWasmCall(wasm::FunctionSig* sig, Node** args, |
| Node*** rets, |
| wasm::WasmCodePosition position) { |
| DCHECK_NOT_NULL(wasm_context_); |
| SetNeedsStackCheck(); |
| const size_t params = sig->parameter_count(); |
| const size_t extra = 3; // wasm_context, effect, and control. |
| const size_t count = 1 + params + extra; |
| |
| // Reallocate the buffer to make space for extra inputs. |
| args = Realloc(args, 1 + params, count); |
| |
| // Make room for the wasm_context parameter at index 1, just after code. |
| memmove(&args[2], &args[1], params * sizeof(Node*)); |
| args[1] = wasm_context_.get(); |
| |
| // Add effect and control inputs. |
| args[params + 2] = *effect_; |
| args[params + 3] = *control_; |
| |
| CallDescriptor* descriptor = GetWasmCallDescriptor(jsgraph()->zone(), sig); |
| const Operator* op = jsgraph()->common()->Call(descriptor); |
| Node* call = graph()->NewNode(op, static_cast<int>(count), args); |
| SetSourcePosition(call, position); |
| |
| *effect_ = call; |
| size_t ret_count = sig->return_count(); |
| if (ret_count == 0) return call; // No return value. |
| |
| *rets = Buffer(ret_count); |
| if (ret_count == 1) { |
| // Only a single return value. |
| (*rets)[0] = call; |
| } else { |
| // Create projections for all return values. |
| for (size_t i = 0; i < ret_count; i++) { |
| (*rets)[i] = graph()->NewNode(jsgraph()->common()->Projection(i), call, |
| graph()->start()); |
| } |
| } |
| return call; |
| } |
| |
| Node* WasmGraphBuilder::CallDirect(uint32_t index, Node** args, Node*** rets, |
| wasm::WasmCodePosition position) { |
| DCHECK_NULL(args[0]); |
| wasm::FunctionSig* sig = env_->module->functions[index].sig; |
| if (FLAG_wasm_jit_to_native) { |
| // Just encode the function index. This will be patched at instantiation. |
| Address code = reinterpret_cast<Address>(index); |
| args[0] = jsgraph()->RelocatableIntPtrConstant( |
| reinterpret_cast<intptr_t>(code), RelocInfo::WASM_CALL); |
| } else { |
| // Add code object as constant. |
| Handle<Code> code = index < env_->function_code.size() |
| ? env_->function_code[index] |
| : env_->default_function_code; |
| |
| DCHECK(!code.is_null()); |
| args[0] = HeapConstant(code); |
| } |
| |
| return BuildWasmCall(sig, args, rets, position); |
| } |
| |
| Node* WasmGraphBuilder::CallIndirect(uint32_t sig_index, Node** args, |
| Node*** rets, |
| wasm::WasmCodePosition position) { |
| DCHECK_NOT_NULL(args[0]); |
| DCHECK_NOT_NULL(env_); |
| |
| // Assume only one table for now. |
| uint32_t table_index = 0; |
| wasm::FunctionSig* sig = env_->module->signatures[sig_index]; |
| |
| EnsureFunctionTableNodes(); |
| MachineOperatorBuilder* machine = jsgraph()->machine(); |
| Node* key = args[0]; |
| |
| // Bounds check against the table size. |
| Node* size = function_tables_[table_index].size; |
| Node* in_bounds = graph()->NewNode(machine->Uint32LessThan(), key, size); |
| TrapIfFalse(wasm::kTrapFuncInvalid, in_bounds, position); |
| Node* table_address = function_tables_[table_index].table_addr; |
| Node* table = graph()->NewNode( |
| jsgraph()->machine()->Load(MachineType::AnyTagged()), table_address, |
| jsgraph()->IntPtrConstant(0), *effect_, *control_); |
| // Load signature from the table and check. |
| // The table is a FixedArray; signatures are encoded as SMIs. |
| // [sig1, code1, sig2, code2, sig3, code3, ...] |
| static_assert(compiler::kFunctionTableEntrySize == 2, "consistency"); |
| static_assert(compiler::kFunctionTableSignatureOffset == 0, "consistency"); |
| static_assert(compiler::kFunctionTableCodeOffset == 1, "consistency"); |
| ElementAccess access = AccessBuilder::ForFixedArrayElement(); |
| const int fixed_offset = access.header_size - access.tag(); |
| Node* key_offset = graph()->NewNode(machine->Word32Shl(), key, |
| Int32Constant(kPointerSizeLog2 + 1)); |
| Node* load_sig = |
| graph()->NewNode(machine->Load(MachineType::AnyTagged()), table, |
| graph()->NewNode(machine->Int32Add(), key_offset, |
| Int32Constant(fixed_offset)), |
| *effect_, *control_); |
| int32_t canonical_sig_num = env_->module->signature_ids[sig_index]; |
| CHECK_GE(sig_index, 0); |
| Node* sig_match = graph()->NewNode(machine->WordEqual(), load_sig, |
| jsgraph()->SmiConstant(canonical_sig_num)); |
| TrapIfFalse(wasm::kTrapFuncSigMismatch, sig_match, position); |
| |
| // Load code object from the table. It is held by a Foreign. |
| Node* entry = graph()->NewNode( |
| machine->Load(MachineType::AnyTagged()), table, |
| graph()->NewNode(machine->Int32Add(), key_offset, |
| Uint32Constant(fixed_offset + kPointerSize)), |
| *effect_, *control_); |
| if (FLAG_wasm_jit_to_native) { |
| Node* address = graph()->NewNode( |
| machine->Load(MachineType::Pointer()), entry, |
| Int32Constant(Foreign::kForeignAddressOffset - kHeapObjectTag), |
| *effect_, *control_); |
| args[0] = address; |
| } else { |
| args[0] = entry; |
| } |
| return BuildWasmCall(sig, args, rets, position); |
| } |
| |
| Node* WasmGraphBuilder::BuildI32Rol(Node* left, Node* right) { |
| // Implement Rol by Ror since TurboFan does not have Rol opcode. |
| // TODO(weiliang): support Word32Rol opcode in TurboFan. |
| Int32Matcher m(right); |
| if (m.HasValue()) { |
| return Binop(wasm::kExprI32Ror, left, |
| jsgraph()->Int32Constant(32 - m.Value())); |
| } else { |
| return Binop(wasm::kExprI32Ror, left, |
| Binop(wasm::kExprI32Sub, jsgraph()->Int32Constant(32), right)); |
| } |
| } |
| |
| Node* WasmGraphBuilder::BuildI64Rol(Node* left, Node* right) { |
| // Implement Rol by Ror since TurboFan does not have Rol opcode. |
| // TODO(weiliang): support Word64Rol opcode in TurboFan. |
| Int64Matcher m(right); |
| if (m.HasValue()) { |
| return Binop(wasm::kExprI64Ror, left, |
| jsgraph()->Int64Constant(64 - m.Value())); |
| } else { |
| return Binop(wasm::kExprI64Ror, left, |
| Binop(wasm::kExprI64Sub, jsgraph()->Int64Constant(64), right)); |
| } |
| } |
| |
| Node* WasmGraphBuilder::Invert(Node* node) { |
| return Unop(wasm::kExprI32Eqz, node); |
| } |
| |
| Node* WasmGraphBuilder::BuildChangeInt32ToTagged(Node* value) { |
| MachineOperatorBuilder* machine = jsgraph()->machine(); |
| CommonOperatorBuilder* common = jsgraph()->common(); |
| |
| if (machine->Is64()) { |
| return BuildChangeInt32ToSmi(value); |
| } |
| |
| Node* add = graph()->NewNode(machine->Int32AddWithOverflow(), value, value, |
| graph()->start()); |
| |
| Node* ovf = graph()->NewNode(common->Projection(1), add, graph()->start()); |
| Node* branch = graph()->NewNode(common->Branch(BranchHint::kFalse), ovf, |
| graph()->start()); |
| |
| Node* if_true = graph()->NewNode(common->IfTrue(), branch); |
| Node* vtrue = BuildAllocateHeapNumberWithValue( |
| graph()->NewNode(machine->ChangeInt32ToFloat64(), value), if_true); |
| |
| Node* if_false = graph()->NewNode(common->IfFalse(), branch); |
| Node* vfalse = graph()->NewNode(common->Projection(0), add, if_false); |
| |
| Node* merge = graph()->NewNode(common->Merge(2), if_true, if_false); |
| Node* phi = graph()->NewNode(common->Phi(MachineRepresentation::kTagged, 2), |
| vtrue, vfalse, merge); |
| return phi; |
| } |
| |
| Node* WasmGraphBuilder::BuildChangeFloat64ToTagged(Node* value) { |
| MachineOperatorBuilder* machine = jsgraph()->machine(); |
| CommonOperatorBuilder* common = jsgraph()->common(); |
| |
| Node* value32 = graph()->NewNode(machine->RoundFloat64ToInt32(), value); |
| Node* check_same = graph()->NewNode( |
| machine->Float64Equal(), value, |
| graph()->NewNode(machine->ChangeInt32ToFloat64(), value32)); |
| Node* branch_same = |
| graph()->NewNode(common->Branch(), check_same, graph()->start()); |
| |
| Node* if_smi = graph()->NewNode(common->IfTrue(), branch_same); |
| Node |