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/
H A Dx64_isa_tbl.h85 static inline X64MOP_t GetSetCCMop(maple::Opcode opcode, Operand::OperandType dTy, bool isSigned, bool isFloat) in GetSetCCMop() argument
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dencode.h460 static constexpr bool CanOptimizeImmDivModCommon(uint64_t imm, bool isSigned) in CanOptimizeImmDivModCommon() argument
H A Dcodegen-inl.h140 bool isSigned = DataType::IsTypeSigned(inst->GetType()); in CallEntrypoint() local
H A Dencode.cpp132 EncodeDiv([[maybe_unused]] Reg dst, [[maybe_unused]] Reg src0, [[maybe_unused]] Imm imm, [[maybe_unused]] bool isSigned) EncodeDiv() argument
138 EncodeMod([[maybe_unused]] Reg dst, [[maybe_unused]] Reg src0, [[maybe_unused]] Imm imm, [[maybe_unused]] bool isSigned) EncodeMod() argument
/arkcompiler/runtime_core/static_core/compiler/tests/amd64/
H A 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; TestParam() local
[all...]
H A 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/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dcg_irbuilder.cpp82 ImmOperand &OperandBuilder::CreateImm(uint32 size, int64 value, bool isSigned, MemPool *mp) in CreateImm() argument
H A Disel.cpp98 static MOperator GetFastCvtMopI(uint32 fromSize, uint32 toSize, bool isSigned) in GetFastCvtMopI() argument
534 PrimType MPISel::GetIntegerPrimTypeFromSize(bool isSigned, uint32 bitSize) in GetIntegerPrimTypeFromSize() argument
832 bool isSigned = IsSignedInteger(primType); in SelectExtractbits() local
904 bool isSigned in SelectCvtFloat2Int() local
929 bool isSigned = !IsPrimitiveUnsigned(fromType); SelectCvtInt2Float() local
969 bool isSigned = !IsPrimitiveUnsigned(fromType); SelectIntCvt() local
[all...]
/arkcompiler/runtime_core/static_core/compiler/tests/aarch32/
H A Dencoder32_test_1.cpp487 bool isSigned = std::is_signed<T>::value; in TestLdr() local
H A 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
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
H A Dassembler_aarch64.h392 inline uint32_t LoadAndStoreImm(uint32_t imm, bool isSigned) in LoadAndStoreImm() argument
H A Dassembler_aarch64.cpp283 bool isSigned = operand.GetAddrMode() != AddrMode::OFFSET; in Ldr() local
324 bool isSigned = true; in Str() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dmpl_int_val.h29 IntVal(uint64 val, uint8 bitWidth, bool isSigned) : value(val), width(bitWidth), sign(isSigned) in IntVal() argument
44 IntVal(const IntVal &val, uint8 bitWidth, bool isSigned) : IntVal(val.value, bitWidth, isSigned) {} in IntVal() argument
46 IntVal(const IntVal &val, bool isSigned) : IntVal(val.value, val.width, isSigned) {} in IntVal() argument
[all...]
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/
H A 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
H A 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; TestParam() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H A Daarch64_cgfunc.h206 ImmOperand &CreateImmOperand(int64 val, uint32 size, bool isSigned, VaryType varyType = kNotVary, in CreateImmOperand() argument
212 ImmOperand &CreateImmOperand(Operand::OperandType type, int64 val, uint32 size, bool isSigned) in CreateImmOperand() argument
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dlowering.cpp357 bool isSigned = DataType::IsTypeSigned(input0->GetType()); in TryReplaceDivPowerOfTwo() local
380 bool isSigned = DataType::IsTypeSigned(input0->GetType()); in TryReplaceDivModNonPowerOfTwo() local
406 bool isSigned = DataType::IsTypeSigned(input0->GetType()); in TryReplaceModPowerOfTwo() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
H A Dx64_MPIsel.cpp454 static X64MOP_t PickJmpInsn(Opcode brOp, Opcode cmpOp, bool isFloat, bool isSigned) in PickJmpInsn() argument
618 bool isSigned in SelectDivRem() local
756 bool isSigned = (!IsPrimitiveUnsigned(primOpndType) && !IsPrimitiveFloat(primOpndType)); SelectCmpResult() local
772 bool isSigned = !IsPrimitiveUnsigned(primType); SelectSelect() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
H A Dlmir_builder.cpp675 bool isSigned = true; in ICmp() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
H A Dconstantfold.cpp962 bool isSigned = IsSignedInteger(resultType.GetPrimType()); in CalIntValueFromFloatValue() local
1188 bool isSigned = IsSignedInteger(ptyp); in GetNearestSizePtyp() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
H A Dencode.cpp1573 void Amd64Encoder::EncodeDiv(Reg dst, Reg src0, Imm imm, bool isSigned) in EncodeDiv() argument
1584 void Amd64Encoder::EncodeMod(Reg dst, Reg src0, Imm imm, bool isSigned) in EncodeMod() argument
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/
H A Dencode.cpp765 bool Aarch32Encoder::IsNeedToPrepareMemLdS(MemRef mem, const TypeInfo &memType, bool isSigned) in IsNeedToPrepareMemLdS() argument
842 PrepareMemLdS(MemRef mem, const TypeInfo &memType, vixl::aarch32::Register tmp, bool isSigned, bool copySp) PrepareMemLdS() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Doperand.h490 ImmOperand(int64 val, uint32 size, bool isSigned, VaryType isVar = kNotVary, bool isFloat = false) in ImmOperand() argument
494 ImmOperand(OperandType type, int64 val, uint32 size, bool isSigned, VaryType isVar = kNotVary, bool isFloat = false) in ImmOperand() argument
498 ImmOperand(const MIRSymbol &symbol, int64 val, int32 relocs, bool isSigned, VaryType isVar = kNotVary, in ImmOperand() argument
760 bool isSigned; global() member in maplebe::ImmOperand
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_cgfunc.cpp1257 bool isSigned in SelectCondGoto() local
1296 bool isSigned = SelectCondSpecialCase1() local
1367 bool isSigned = IsSignedInteger(dtype); SelectAdd() local
1584 bool isSigned = IsSignedInteger(dtype); SelectSub() local
1599 bool isSigned = IsSignedInteger(dtype); SelectMpy() local
1760 bool isSigned = IsSignedInteger(dtype); SelectDiv() local
1772 SelectRem(Operand &resOpnd, Operand &lhsOpnd, Operand &rhsOpnd, PrimType primType, bool isSigned, bool is64Bits) SelectRem() argument
[all...]
H A Daarch64_peep.cpp423 bool isSigned = (mOp == MOP_xsxtw64); in OptimizeAddrBOrXShiftExtend() local

Completed in 49 milliseconds

12