Home
last modified time | relevance | path

Searched defs:isSigned (Results 1 – 25 of 28) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_isa_tbl.h85 static inline X64MOP_t GetSetCCMop(maple::Opcode opcode, Operand::OperandType dTy, bool isSigned, b… in GetSetCCMop()
117 static inline X64MOP_t GetCMovCCMop(maple::Opcode opcode, int32 bitSize, bool isSigned) in GetCMovCCMop()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dmpl_int_val.h29 IntVal(uint64 val, uint8 bitWidth, bool isSigned) : value(val), width(bitWidth), sign(isSigned) in IntVal()
44 …IntVal(const IntVal &val, uint8 bitWidth, bool isSigned) : IntVal(val.value, bitWidth, isSigned) {} in IntVal()
46 IntVal(const IntVal &val, bool isSigned) : IntVal(val.value, val.width, isSigned) {} in IntVal()
455 IntVal TruncOrExtend(uint8 newWidth, bool isSigned) const in TruncOrExtend()
467 IntVal Trunc(uint8 newWidth, bool isSigned) const in Trunc()
472 IntVal Extend(uint8 newWidth, bool isSigned) const in Extend()
/arkcompiler/runtime_core/static_core/compiler/tests/amd64/
Dencoder64_test_2.cpp281 bool isSigned = std::is_signed<T>::value; in TestDiv() local
354 bool isSigned = std::is_signed<T>::value; in TestDivImm() local
411 bool isSigned = std::is_signed<T>::value; in TestMod() local
485 bool isSigned = std::is_signed<T>::value; in TestModImm() local
597 bool isSigned = std::is_signed<T>::value; in TestParam() local
Dencoder64_test_1.cpp501 bool isSigned = std::is_signed<T>::value; in TestJumpCC() local
594 bool isSigned = std::is_signed<T>::value; in TestLdr() local
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/
Dencoder64_test_2.cpp425 bool isSigned = std::is_signed<T>::value; in TestDiv() local
496 bool isSigned = std::is_signed_v<T>; in TestDivImm() local
555 bool isSigned = std::is_signed_v<T>; in TestModImm() local
664 bool isSigned = std::is_signed<T>::value; in TestMod() local
763 bool isSigned = std::is_signed<T>::value; in TestParam() local
Dencoder64_test_1.cpp468 bool isSigned = std::is_signed<T>::value; in TestJumpCC() local
580 bool isSigned = std::is_signed<T>::value; in TestLdr() local
/arkcompiler/runtime_core/static_core/compiler/tests/aarch32/
Dencoder32_test_2.cpp345 bool isSigned = std::is_signed<T>::value; in TestDiv() local
473 bool isSigned = std::is_signed<T>::value; in TestMod() local
578 bool isSigned = std::is_signed<T>::value; in TestParam() local
Dencoder32_test_1.cpp487 bool isSigned = std::is_signed<T>::value; in TestLdr() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_cgfunc.h225 ImmOperand &CreateImmOperand(Operand::OperandType type, int64 val, uint32 size, bool isSigned) in CreateImmOperand()
582 PrimType GetOperandTy(bool isIntty, uint32 dsize, bool isSigned) const in GetOperandTy()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Disel.cpp96 static MOperator GetFastCvtMopI(uint32 fromSize, uint32 toSize, bool isSigned) in GetFastCvtMopI()
592 PrimType MPISel::GetIntegerPrimTypeFromSize(bool isSigned, uint32 bitSize) in GetIntegerPrimTypeFromSize()
856 bool isSigned = IsSignedInteger(primType); in SelectExtractbits() local
928 bool isSigned = !IsPrimitiveUnsigned(toType); in SelectCvtFloat2Int() local
953 bool isSigned = !IsPrimitiveUnsigned(fromType); in SelectCvtInt2Float() local
993 bool isSigned = !IsPrimitiveUnsigned(fromType); in SelectIntCvt() local
Dcg_irbuilder.cpp98 ImmOperand &OperandBuilder::CreateImm(uint32 size, int64 value, bool isSigned, MemPool *mp) in CreateImm()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
Dassembler_aarch64.h394 inline uint32_t LoadAndStoreImm(uint32_t imm, bool isSigned) in LoadAndStoreImm()
Dassembler_aarch64.cpp279 bool isSigned = operand.GetAddrMode() != AddrMode::OFFSET; in Ldr() local
320 bool isSigned = true; in Str() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_cgfunc.cpp1189 …bool isSigned = IsPrimitiveInteger(primType) ? IsSignedInteger(primType) : (signedCond ? true : fa… in SelectCondGoto() local
1228 bool isSigned = in SelectCondSpecialCase1() local
1299 bool isSigned = IsSignedInteger(dtype); in SelectAdd() local
1516 bool isSigned = IsSignedInteger(dtype); in SelectSub() local
1531 bool isSigned = IsSignedInteger(dtype); in SelectMpy() local
1692 bool isSigned = IsSignedInteger(dtype); in SelectDiv() local
1704 …::SelectRem(Operand &resOpnd, Operand &lhsOpnd, Operand &rhsOpnd, PrimType primType, bool isSigned, in SelectRem()
1839 bool isSigned = IsSignedInteger(dtype); in SelectRem() local
2034 bool isSigned = IsSignedInteger(dtype); in SelectRelationOperator() local
2193 bool isSigned = IsSignedInteger(dtype); in SelectMinOrMax() local
[all …]
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dencode.h468 static constexpr bool CanOptimizeImmDivModCommon(uint64_t imm, bool isSigned) in CanOptimizeImmDivModCommon()
Dcodegen-inl.h135 bool isSigned = DataType::IsTypeSigned(inst->GetType()); in CallEntrypoint() local
Dencode.cpp144 [[maybe_unused]] bool isSigned) in EncodeDiv()
150 [[maybe_unused]] bool isSigned) in EncodeMod()
Dcodegen.cpp1422 bool isSigned = DataType::IsTypeSigned(returnType); in CreateCallIntrinsic() local
1794 bool isSigned = DataType::IsTypeSigned(returnType); in EmitCallNative() local
1864 bool isSigned = DataType::IsTypeSigned(returnType); in FinalizeCall() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
Dx64_MPIsel.cpp552 static X64MOP_t PickJmpInsn(Opcode brOp, Opcode cmpOp, bool isFloat, bool isSigned) in PickJmpInsn()
716 bool isSigned = IsSignedInteger(primType); in SelectDivRem() local
854 bool isSigned = (!IsPrimitiveUnsigned(primOpndType) && !IsPrimitiveFloat(primOpndType)); in SelectCmpResult() local
870 bool isSigned = !IsPrimitiveUnsigned(primType); in SelectSelect() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dlowering.cpp371 bool isSigned = DataType::IsTypeSigned(input0->GetType()); in TryReplaceDivPowerOfTwo() local
394 bool isSigned = DataType::IsTypeSigned(input0->GetType()); in TryReplaceDivModNonPowerOfTwo() local
422 bool isSigned = DataType::IsTypeSigned(input0->GetType()); in TryReplaceModPowerOfTwo() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
Dconstantfold.cpp952 bool isSigned = IsSignedInteger(resultType.GetPrimType()); in CalIntValueFromFloatValue() local
1178 bool isSigned = IsSignedInteger(ptyp); in GetNearestSizePtyp() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/
Dencode.cpp98 static vixl::aarch32::DataType Convert(const TypeInfo info, const bool isSigned = false) in Convert()
766 bool Aarch32Encoder::IsNeedToPrepareMemLdS(MemRef mem, const TypeInfo &memType, bool isSigned) in IsNeedToPrepareMemLdS()
844 … vixl::aarch32::Register tmp, bool isSigned, bool copySp) in PrepareMemLdS()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
Dencode.cpp1152 auto extendTo32bit = [this](Reg reg, bool isSigned) { in EncodeCastScalar()
1594 void Amd64Encoder::EncodeDiv(Reg dst, Reg src0, Imm imm, bool isSigned) in EncodeDiv()
1605 void Amd64Encoder::EncodeMod(Reg dst, Reg src0, Imm imm, bool isSigned) in EncodeMod()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
Dlmir_builder.cpp696 bool isSigned = true; in ICmp() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
Dencode.cpp2051 void Aarch64Encoder::EncodeDiv(Reg dst, Reg src0, Imm imm, bool isSigned) in EncodeDiv()
2062 void Aarch64Encoder::EncodeMod(Reg dst, Reg src0, Imm imm, bool isSigned) in EncodeMod()

12