Lines Matching defs:result
1203 Node* result = graph()->NewNode(m->Word32Clz(), reversed);
1204 return result;
1316 Node* result = m->Is64() ? graph()->NewNode(m->Word64Clz(), reversed)
1319 return result;
1636 Node* result;
1649 result = Int64Constant(0);
1656 result = Int32Constant(0);
1689 result = gasm_->Word32ReverseBytes(value);
1692 result = gasm_->Word64ReverseBytes(value);
1695 result = graph()->NewNode(m->Simd128ReverseBytes(), value);
1719 result = gasm_->Word64Or(result, lowerByte);
1720 result = gasm_->Word64Or(result, higherByte);
1729 result = gasm_->Word32Or(result, lowerByte);
1730 result = gasm_->Word32Or(result, higherByte);
1738 result = gasm_->BitcastInt64ToFloat64(result);
1741 result = gasm_->BitcastInt32ToFloat32(result);
1748 return result;
1754 Node* result;
1767 result = Int64Constant(0);
1775 result = Int32Constant(0);
1793 result = gasm_->Word32ReverseBytes(
1797 result = gasm_->Word32ReverseBytes(value);
1800 result = gasm_->Word64ReverseBytes(value);
1803 result = graph()->NewNode(m->Simd128ReverseBytes(), value);
1827 result = gasm_->Word64Or(result, lowerByte);
1828 result = gasm_->Word64Or(result, higherByte);
1837 result = gasm_->Word32Or(result, lowerByte);
1838 result = gasm_->Word32Or(result, higherByte);
1846 result = gasm_->BitcastInt64ToFloat64(result);
1849 result = gasm_->BitcastInt32ToFloat32(result);
1862 // result = (x << machine_width - type_width) >> (machine_width -
1866 result = gasm_->Word64Sar(
1867 gasm_->Word64Shl(gasm_->ChangeInt32ToInt64(result), shiftBitCount),
1871 result = gasm_->Word32Sar(gasm_->Word32Shl(result, shiftBitCount),
1876 result = gasm_->ChangeUint32ToUint64(result);
1879 return result;
1883 Node* result = Unop(
1891 return result;
2332 // We do truncation by calling a C function which calculates the result.
2734 // The result is the negation of the left input.
3641 Node* result =
3643 result = env_->module->is_memory64 ? BuildChangeIntPtrToInt64(result)
3644 : BuildTruncateIntPtrToInt32(result);
3645 return result;
4233 // reads return {undefined} coerced to the result type (0 for integers, NaN
5353 Node* result = gasm_->AddNode(
5359 result =
5360 BuildChangeEndiannessLoad(result, info.machine_type, info.wasm_type);
5364 return result;
6266 // If it didn't overflow, the result is {2 * value} as pointer-sized value.
8100 wasm::WasmCompilationResult result = Pipeline::GenerateCodeForWasmNativeStub(
8106 int codesize = result.code_desc.body_size();
8112 return result;
8146 wasm::WasmCompilationResult result = Pipeline::GenerateCodeForWasmNativeStub(
8153 wasm::kAnonymousFuncIndex, result.code_desc, result.frame_slot_count,
8154 result.tagged_parameter_slots,
8155 result.protected_instructions_data.as_vector(),
8156 result.source_positions.as_vector(), wasm::WasmCode::kWasmToCapiWrapper,
8200 wasm::WasmCompilationResult result = Pipeline::GenerateCodeForWasmNativeStub(
8206 wasm::kAnonymousFuncIndex, result.code_desc, result.frame_slot_count,
8207 result.tagged_parameter_slots,
8208 result.protected_instructions_data.as_vector(),
8209 result.source_positions.as_vector(), wasm::WasmCode::kWasmToJsWrapper,
8515 auto result = info.ReleaseWasmCompilationResult();
8516 CHECK_NOT_NULL(result); // Compilation expected to succeed.
8517 DCHECK_EQ(wasm::ExecutionTier::kTurbofan, result->result_tier);
8518 return std::move(*result);