Home
last modified time | relevance | path

Searched refs:dsize (Results 1 - 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_cgfunc.cpp182 uint32 dsize = GetPrimTypeBitSize(dtype); in SelectCopyImm() local
185 if (dsize < src.GetSize()) { in SelectCopyImm()
187 uint64 mask = (1UL << dsize) - 1; in SelectCopyImm()
192 DEBUG_ASSERT(((dsize == k8BitSize) || (dsize == k16BitSize) || (dsize == k32BitSize) || (dsize == k64BitSize)), in SelectCopyImm()
194 if (src.GetSize() == k32BitSize && dsize == k64BitSize && src.IsSingleInstructionMovable()) { in SelectCopyImm()
201 MOperator mOp = (dsize <= k32BitSize) ? MOP_wmovri32 : MOP_xmovri64; in SelectCopyImm()
207 if (dsize in SelectCopyImm()
300 SelectCopyMemOpnd(Operand &dest, PrimType dtype, uint32 dsize, Operand &src, PrimType stype) SelectCopyMemOpnd() argument
376 SelectCopyRegOpnd(Operand &dest, PrimType dtype, Operand::OperandType opndType, uint32 dsize, Operand &src, PrimType stype) SelectCopyRegOpnd() argument
443 uint32 dsize = GetPrimTypeBitSize(dtype); SelectCopy() local
1368 uint32 dsize = GetPrimTypeBitSize(dtype); SelectAdd() local
1394 uint32 dsize = GetPrimTypeBitSize(primType); SelectAdd() local
1497 uint32 dsize = GetPrimTypeBitSize(primType); SelectSub() local
1585 uint32 dsize = GetPrimTypeBitSize(dtype); SelectSub() local
1600 uint32 dsize = GetPrimTypeBitSize(dtype); SelectMpy() local
1615 uint32 dsize = GetPrimTypeBitSize(primType); SelectMpy() local
1689 uint32 dsize = GetPrimTypeBitSize(primType); SelectDiv() local
1761 uint32 dsize = GetPrimTypeBitSize(dtype); SelectDiv() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H A Daarch64_cgfunc.h142 void SelectAArch64Cmp(Operand &o, Operand &i, bool isIntType, uint32 dsize);
143 void SelectTargetFPCmpQuiet(Operand &o0, Operand &o1, uint32 dsize);
554 PrimType GetOperandTy(bool isIntty, uint32 dsize, bool isSigned) const in GetOperandTy() argument
557 return (isIntty ? ((dsize == k64BitSize) ? (isSigned ? PTY_i64 : PTY_u64) : (isSigned ? PTY_i32 : PTY_u32)) in GetOperandTy()
558 : ((dsize == k64BitSize) ? PTY_f64 : PTY_f32)); in GetOperandTy()
561 RegOperand &LoadIntoRegister(Operand &o, bool isIntty, uint32 dsize, bool asSigned = false) in LoadIntoRegister() argument
566 pTy = dsize == k32BitSize ? PTY_f32 : PTY_f64; in LoadIntoRegister()
568 pTy = GetOperandTy(isIntty, dsize, asSigned); in LoadIntoRegister()
615 void SelectCopyMemOpnd(Operand &dest, PrimType dtype, uint32 dsize, Operand &src, PrimType stype);
616 void SelectCopyRegOpnd(Operand &dest, PrimType dtype, Operand::OperandType opndType, uint32 dsize, Operan
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Disel.cpp680 uint32 dsize = GetPrimTypeBitSize(opnd0Type); in SelectShift() local
684 mOp = fastShlMappingFunc(dsize); in SelectShift()
687 mOp = fastAshrMappingFunc(dsize); in SelectShift()
690 mOp = fastLshrMappingFunc(dsize); in SelectShift()

Completed in 8 milliseconds