Searched refs:srcVal (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/ |
H A D | macro_assembler_aarch64.cpp | 320 uint64_t srcVal = static_cast<uint64_t>(imm); in CopyImm() local 322 if (IsSingleInstructionMovable(srcVal, size)) { in CopyImm() 334 if ((srcVal & 0x0000FFFFULL) == 0 || (srcVal & 0x0000FFFFULL) == 0xFFFFULL) { in CopyImm() 338 if (((srcVal >> k16BitSize) & 0x0000FFFFULL) == 0 || ((srcVal >> k16BitSize) & 0x0000FFFFULL) == 0xFFFFULL) { in CopyImm() 343 int64_t srcLower = static_cast<int64_t>(srcVal & 0x0000FFFFULL); in CopyImm() 346 int64_t srcUpper = static_cast<int64_t>((srcVal >> k16BitSize) & 0x0000FFFFULL); in CopyImm() 349 CopyImmSize64(destReg, srcVal); in CopyImm() 353 void MacroAssemblerAArch64::CopyImmSize64(aarch64::Register destReg, uint64_t srcVal) in CopyImmSize64() argument [all...] |
H A D | macro_assembler_aarch64.h | 70 void CopyImmSize64(aarch64::Register destReg, uint64_t srcVal);
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | spill_fill_data.h | 30 SpillFillData(LocationType srcType, LocationType dstType, unsigned srcVal, unsigned dstVal, DataType::Type tp) in SpillFillData() argument 31 : src_(srcType, srcVal), dst_(dstType, dstVal), type_(tp) in SpillFillData()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
H A D | aarch64_cgfunc.cpp | 205 uint64 srcVal = static_cast<uint64>(src.GetValue()); in SelectCopyImm() local 211 srcVal = (srcVal << k56BitSize) >> k56BitSize; in SelectCopyImm() 215 srcVal = (static_cast<int64>(srcVal) << k56BitSize) >> k56BitSize; in SelectCopyImm() 223 DEBUG_ASSERT((srcVal & 0x0000FFFFULL) != 0, "unexpected value"); in SelectCopyImm() 224 DEBUG_ASSERT(((srcVal >> k16BitSize) & 0x0000FFFFULL) == 0, "unexpected value"); in SelectCopyImm() 225 DEBUG_ASSERT((srcVal & 0x0000FFFFULL) != 0xFFFFULL, "unexpected value"); in SelectCopyImm() 227 ImmOperand &srcLower = CreateImmOperand(static_cast<int64>(srcVal & 0x0000FFFFULL), k16BitSize, false); in SelectCopyImm() 232 srcVal in SelectCopyImm() [all...] |
Completed in 5 milliseconds