Lines Matching full:int64
61 inline GateRef StubBuilder::Int64(int64_t value) in Int64() function
63 return env_->GetBuilder()->Int64(value); in Int64()
73 return env_->Is32Bit() ? Int32(value) : Int64(value); in IntPtr()
78 return env_->Is32Bit() ? Int32(sizeof(uint32_t)) : Int64(sizeof(uint64_t)); in IntPtrSize()
270 Store(VariableType::INT64(), glue, frame, in SavePcIfNeeded()
281 Store(VariableType::INT64(), glue, frame, in SaveJumpSizeIfNeeded()
309 type = env_->IsArch64Bit() ? VariableType::INT64() : VariableType::INT32(); in Load()
973 Store(VariableType::INT64(), glue, object, hashOffset, hash); in SetHash()
1980 return Int64Mul(Int64(sizeof(JSTaggedValue)), index); in GetGlobalConstantAddr()
1988 return Int64Mul(Int64(sizeof(JSTaggedValue)), Int64(static_cast<int>(index))); in GetGlobalConstantString()
2123 Int64(RegionSpaceFlag::VALID_SPACE_MASK)), Int64(RegionSpaceFlag::IN_YOUNG_SPACE)); in InYoungGeneration()
2181 return Load(VariableType::INT64(), method, callFieldOffset); in GetCallFieldFromMethod()
2251 GateRef callfield = Load(VariableType::INT64(), method, callFieldOffset); in IsNativeMethod()
2254 Int64LSR(callfield, Int64(MethodLiteral::IsNativeBit::START_BIT)), in IsNativeMethod()
2255 Int64((1LU << MethodLiteral::IsNativeBit::SIZE) - 1)), in IsNativeMethod()
2256 Int64(0)); in IsNativeMethod()
2272 GateRef callfield = Load(VariableType::INT64(), method, callFieldOffset); in GetExpectedNumOfArgs()
2274 Int64LSR(callfield, Int64(MethodLiteral::NumArgsBits::START_BIT)), in GetExpectedNumOfArgs()
2275 Int64((1LU << MethodLiteral::NumArgsBits::SIZE) - 1))); in GetExpectedNumOfArgs()
2340 GateRef extraLiteralInfo = Load(VariableType::INT64(), method, extraLiteralInfoOffset); in GetBuiltinId()
2342 Int64LSR(extraLiteralInfo, Int64(MethodLiteral::BuiltinIdBits::START_BIT)), in GetBuiltinId()
2343 Int64((1LU << MethodLiteral::BuiltinIdBits::SIZE) - 1))); in GetBuiltinId()