Home
last modified time | relevance | path

Searched refs:BITS_PER_UINT32 (Results 1 - 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
H A Ddtoa_helper.h115 const uint64_t a = f_ >> BITS_PER_UINT32; in operator *()
117 const uint64_t c = rhs.f_ >> BITS_PER_UINT32; in operator *()
123 uint64_t tmp = (bd >> BITS_PER_UINT32) + (ad & M32) + (bc & M32); in operator *()
125 return DiyFp(ac + (ad >> BITS_PER_UINT32) + (bc >> BITS_PER_UINT32) + (tmp >> BITS_PER_UINT32), in operator *()
165 static constexpr uint32_t ROUND_BITS = BITS_PER_UINT32 - 1;
H A Ddtoa_helper.cpp25 return ((static_cast<uint64_t>(high32) << BITS_PER_UINT32) | static_cast<uint64_t>(low32)); in ConstructLong()
/arkcompiler/runtime_core/static_core/runtime/
H A Dcframe.cpp84 val |= static_cast<uint64_t>(GetValueFromSlot(helpers::ToSigned(vreg.GetValue()) - 1)) << BITS_PER_UINT32; in GetVRegValueSlot()
110 val |= static_cast<uint64_t>(GetValueFromSlot(static_cast<int>(regNum) - 1)) << BITS_PER_UINT32; in GetVRegValueRegister()
124 << BITS_PER_UINT32; in GetVRegValueRegister()
168 SetValueToSlot(locationValue - 1, value >> BITS_PER_UINT32); in SetVRegValue()
181 SetValueToSlot(regNum - 1, value >> BITS_PER_UINT32); in SetVRegValue()
189 WriteCalleeSavedRegister(locationValue + 1, value >> BITS_PER_UINT32, isFp, calleeStack); in SetVRegValue()
/arkcompiler/runtime_core/libpandabase/
H A Dglobals.h25 static constexpr unsigned BITS_PER_UINT32 = sizeof(uint32_t) * BITS_PER_BYTE; member
/arkcompiler/runtime_core/static_core/libpandabase/
H A Dglobals.h25 static constexpr unsigned BITS_PER_UINT32 = sizeof(uint32_t) * BITS_PER_BYTE; member
/arkcompiler/runtime_core/libpandabase/utils/
H A Dbit_memory_region.h251 for (; (i + BITS_PER_UINT32) < length; i += BITS_PER_UINT32) {
252 res += panda::Popcount(Read(first + i, BITS_PER_UINT32));
H A Dbit_memory_stream.h53 static constexpr size_t bits_per_word = BITS_PER_UINT32; in Write()
H A Dbit_utils.h293 return static_cast<uint32_t>(reinterpret_cast<uint64_t>(value) >> BITS_PER_UINT32); in High32Bits()
H A Dbit_vector.h459 return (BITS_PER_UINT32 - 1) - Clz(storage_[i]) + (i * WORD_BITS); in GetHighestBitSet()
/arkcompiler/runtime_core/static_core/compiler/code_info/
H A Dcode_info_builder.cpp165 uint32_t low = value & ((1LLU << BITS_PER_UINT32) - 1); in AddConstant()
166 uint32_t hi = (value >> BITS_PER_UINT32) & ((1LLU << BITS_PER_UINT32) - 1); in AddConstant()
H A Dcode_info.h270 inlineInfo.GetMethodLow() | (static_cast<uint64_t>(inlineInfo.GetMethodHi()) << BITS_PER_UINT32); in GetMethod()
284 return low | (hi << BITS_PER_UINT32); in GetConstant()
486 for (size_t i = 0; i < end; i += BITS_PER_UINT32) { in FillVRegList()
487 uint32_t mask = vregMask.Read(i, std::min<uint32_t>(end - i, BITS_PER_UINT32)); in FillVRegList()
587 ArenaBitVectorSpan vec(&regMask, BITS_PER_UINT32); in EnumerateRoots()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dbit_memory_region.h254 for (; (i + BITS_PER_UINT32) < length; i += BITS_PER_UINT32) {
255 res += ark::Popcount(Read(first + i, BITS_PER_UINT32));
H A Dbit_memory_stream.h53 static constexpr size_t BITS_PER_WORD = BITS_PER_UINT32; in Write()
H A Dbit_utils.h295 return static_cast<uint32_t>(reinterpret_cast<uint64_t>(value) >> BITS_PER_UINT32); in High32Bits()
H A Dbit_vector.h478 return (BITS_PER_UINT32 - 1) - Clz(storage_[i]) + (i * WORD_BITS); in GetHighestBitSet()
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
H A Dstring_index_of.h116 return (mask << BITS_PER_UINT32) | mask; in BuildSearchPattern()
123 return (mask << BITS_PER_UINT32) | mask; in BuildSearchPattern()
150 mask = (mask << BITS_PER_UINT32) | mask; in BuildSearchPattern()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
H A Dets_to_string_cache_test.cpp304 auto longValue = (static_cast<uint64_t>(dis(engine)) << BITS_PER_UINT32) | dis(engine); in TEST_F()
341 auto longValue = (static_cast<uint64_t>(dis(engine)) << BITS_PER_UINT32) | dis(engine); in TEST_F()
/arkcompiler/runtime_core/libpandabase/tests/
H A Dbit_memory_region_test.cpp66 for (size_t length = 0; length < BITS_PER_UINT32; length++) { in TEST()
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H A Dbit_memory_region_test.cpp68 for (size_t length = 0; length < BITS_PER_UINT32; length++) { in TEST()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dinst.h2507 std::bitset<BITS_PER_UINT32> roots_regs_mask_ {0};
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dcodegen.cpp2142 CHECK_GE(dst.GetSize(), BITS_PER_UINT32); in EncodeDynamicCast()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
H A Dencode.cpp1465 CHECK_EQ(dst.GetSize(), BITS_PER_UINT32); in EncodeFastPathDynamicCast()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
H A Dencode.cpp1077 CHECK_EQ(dst.GetSize(), BITS_PER_UINT32); in EncodeFastPathDynamicCast()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dinst.h3961 std::bitset<BITS_PER_UINT32> rootsRegsMask_ {0};

Completed in 37 milliseconds