Searched refs:shiftNum (Results 1 – 5 of 5) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | bin_mir_file.h | 37 constexpr uint8 shiftNum = 4; in MakeVersionNum() local 38 return (mj << shiftNum) | mn; in MakeVersionNum()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
| D | mir_type.cpp | 1381 constexpr uint32 shiftNum = 3; in GetSize() local 1387 byteOfst = (bitOfst >> shiftNum) + 1; in GetSize() 1396 byteOfst = bitOfst >> shiftNum; in GetSize() 1401 byteOfst = bitOfst >> shiftNum; in GetSize() 1404 byteOfst = bitOfst >> shiftNum; in GetSize() 1409 byteOfst = (bitOfst >> shiftNum) + 1; in GetSize()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/ |
| D | constantfold.cpp | 1117 size_t shiftNum = (kByteSizeOfBit64 - resultType.GetSize()) * kBitSizePerByte; in CalIntValueFromFloatValue() local 1119 int64 max = LLONG_MAX >> shiftNum; in CalIntValueFromFloatValue() 1120 uint64 umax = ULLONG_MAX >> shiftNum; in CalIntValueFromFloatValue() 1121 int64 min = isSigned ? (LLONG_MIN >> shiftNum) : 0; in CalIntValueFromFloatValue()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/ |
| D | me_ir.h | 918 constexpr uint32 shiftNum = 4; in GetHashIndex() local 919 return labelIdx << shiftNum; in GetHashIndex()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_cgfunc.cpp | 4383 ImmOperand &shiftNum = CreateImmOperand(shiftVal - 1, dsize, false); in SelectMpy() local 4384 SelectShift(resOpnd, *otherOp, shiftNum, kShiftLeft, primType); in SelectMpy() 4457 ImmOperand &shiftNum = CreateImmOperand(shiftNumber, dsize, false); in SelectDiv() local 4464 SelectShift(resOpnd, tmpOpnd, shiftNum, kShiftAright, primType); in SelectDiv() 4477 … ImmOperand &shiftNum = CreateImmOperand(__builtin_ffsll(imm->GetValue()) - 1, dsize, false); in SelectDiv() local 4478 SelectShift(resOpnd, opnd0, shiftNum, kShiftLright, primType); in SelectDiv() 4775 … ImmOperand &shiftNum = CreateImmOperand(is64Bits ? kHighestBitOf64Bits : kHighestBitOf32Bits, in SelectCmpOp() local 4778 GetCurBB()->AppendInsn(GetInsnBuilder()->BuildInsn(mOpCode, resOpnd, opnd0, shiftNum)); in SelectCmpOp()
|