Home
last modified time | relevance | path

Searched refs:chunkVal (Results 1 - 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
H A Dmacro_assembler_aarch64.cpp308 uint64_t chunkVal = (val >> (static_cast<uint64_t>(sa))) & 0x0000FFFFUL; in BetterUseMOVZ() local
309 if (chunkVal == 0) { in BetterUseMOVZ()
311 } else if (chunkVal == 0xFFFFUL) { in BetterUseMOVZ()
376 uint64_t chunkVal = (srcVal >> (static_cast<uint64_t>(sa))) & 0x0000FFFFULL; in CopyImmSize64() local
377 if (useMovz ? (chunkVal == 0) : (chunkVal == 0x0000FFFFULL)) { in CopyImmSize64()
380 int64_t src16 = static_cast<int64_t>(chunkVal); in CopyImmSize64()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Doperand.cpp45 uint64 chunkVal = (val >> (static_cast<uint64>(sa))) & 0x0000FFFFUL; in BetterUseMOVZ() local
46 if (chunkVal == 0) { in BetterUseMOVZ()
48 } else if (chunkVal == 0xFFFFUL) { in BetterUseMOVZ()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H A Daarch64_mop_split.h480 uint64 chunkVal = (static_cast<uint64>(immVal) >> sa) & 0x0000FFFFULL; in MOP_xmovri64Split() local
481 if (useMovz ? (chunkVal == 0) : (chunkVal == 0x0000FFFFULL)) { in MOP_xmovri64Split()
484 ImmOperand &src16 = opndBuilder->CreateImm(k16BitSize, static_cast<int64>(chunkVal), false); in MOP_xmovri64Split()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_cgfunc.cpp273 uint64 chunkVal = (srcVal >> (static_cast<uint64>(sa))) & 0x0000FFFFULL; in SelectCopyImm() local
274 if (useMovz ? (chunkVal == 0) : (chunkVal == 0x0000FFFFULL)) { in SelectCopyImm()
277 ImmOperand &src16 = CreateImmOperand(static_cast<int64>(chunkVal), k16BitSize, false); in SelectCopyImm()

Completed in 11 milliseconds