Lines Matching refs:Int64Constant

720 Node* WasmGraphBuilder::Int64Constant(int64_t value) {
721 return mcgraph()->Int64Constant(value);
1336 return gasm_->Word64Equal(input, Int64Constant(0));
1536 TrapIfTrue(reason, gasm_->Word64Equal(node, Int64Constant(val)), position);
1609 if (match.ResolvedValue() != masked) node = Int64Constant(masked);
1611 node = gasm_->Word64And(node, Int64Constant(kMask64));
1649 result = Int64Constant(0);
1712 shiftLower = gasm_->Word64Shl(value, Int64Constant(shiftCount));
1713 shiftHigher = gasm_->Word64Shr(value, Int64Constant(shiftCount));
1715 shiftLower, Int64Constant(static_cast<uint64_t>(0xFF)
1718 shiftHigher, Int64Constant(static_cast<uint64_t>(0xFF) << i));
1767 result = Int64Constant(0);
1820 shiftLower = gasm_->Word64Shl(value, Int64Constant(shiftCount));
1821 shiftHigher = gasm_->Word64Shr(value, Int64Constant(shiftCount));
1823 shiftLower, Int64Constant(static_cast<uint64_t>(0xFF)
1826 shiftHigher, Int64Constant(static_cast<uint64_t>(0xFF) << i));
1898 Int64Constant(0x7FFFFFFFFFFFFFFF)),
1900 Int64Constant(0x8000000000000000))));
2055 return builder->Int64Constant(0);
2072 return builder->Int64Constant(std::numeric_limits<int64_t>::min());
2074 return builder->Int64Constant(std::numeric_limits<uint64_t>::min());
2087 return builder->Int64Constant(std::numeric_limits<int64_t>::max());
2089 return builder->Int64Constant(std::numeric_limits<uint64_t>::max());
2146 test = builder->Binop(wasm::kExprI64Eq, test, builder->Int64Constant(0));
2469 gasm_->Uint64LessThanOrEqual(input, Int64Constant(kMaxInt)),
2480 grow_result, gasm_->Int64Constant(-1));
2513 Binop(wasm::kExprI64ShrU, value, Int64Constant(32)));
2588 Int64Constant(32));
2902 BranchExpectFalse(gasm_->Word64Equal(right, Int64Constant(-1)), &denom_is_m1,
2923 gasm_->Word64Equal(right, Int64Constant(-1)));
2930 return d.Phi(MachineRepresentation::kWord64, Int64Constant(0), rem);
3429 ? Int64Constant(64 - (m.ResolvedValue() & 0x3F))
3430 : Binop(wasm::kExprI64Sub, Int64Constant(64), right);
4255 oob_value = Int64Constant(0);