Home
last modified time | relevance | path

Searched defs:dstReg (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dslow_path.h266 void SetDstReg(Reg dstReg) in SetDstReg()
293 void SetDstReg(Reg dstReg) in SetDstReg()
319 void SetDstReg(Reg dstReg) in SetDstReg()
Dspill_fill_encoder.cpp210 auto dstReg = GetDstReg(sf.GetDst(), Codegen::ConvertDataType(type, codegen_->GetArch())); in EncodeImmToX() local
226 auto dstReg = GetDstReg(sf.GetDst(), srcReg.GetType()); in EncodeRegisterToX() local
279 auto dstReg = GetDstReg(sf.GetDst(), typeInfo); in EncodeStackToX() local
Dcodegen.h277 …void CallEntrypoint(Inst *inst, EntrypointId id, Reg dstReg, RegMask preservedRegs, Args &&...para… in CallEntrypoint()
358 … void CallRuntime(Inst *inst, EntrypointId id, Reg dstReg, RegMask preservedRegs, Args &&...params) in CallRuntime()
364 …void CallFastPath(Inst *inst, EntrypointId id, Reg dstReg, RegMask preservedRegs, Args &&...params) in CallFastPath()
370 …void CallRuntimeWithMethod(Inst *inst, void *method, EntrypointId eid, Reg dstReg, Args &&...param… in CallRuntimeWithMethod()
725 auto dstReg = ConvertRegister(location.GetValue(), immType); in EncodeImms() local
Dcodegen.cpp1213 auto dstReg = ConvertRegister(callInst->GetDstReg(), callInst->GetType()); in CreateMultiArrayCall() local
1362 auto dstReg = ConvertRegister(inst->GetDstReg(), inst->GetType()); in CreateCallIntrinsic() local
1737 auto dstReg = ConvertRegister(call->GetDstReg(), call->GetType()); in EmitCallDynamic() local
1773 auto dstReg = ConvertRegister(call->GetDstReg(), returnType); in FinalizeCall() local
2768 auto dstReg = ConvertRegister(inst->GetDstReg(), inst->GetType()); in VisitCall() local
5385 auto dstReg = codegen->ConvertRegister(inst->GetDstReg(), inst->GetType()); in VisitLiveOut() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dspill_fills_resolver.cpp220 for (LocationIndex dstReg = 0; dstReg < static_cast<LocationIndex>(locationsCount_); ++dstReg) { in Reorder() local
227 for (LocationIndex dstReg = 0; dstReg < static_cast<LocationIndex>(locationsCount_); ++dstReg) { in Reorder() local
247 auto dstReg = dstFirst; in CheckAndResolveCyclicDependency() local
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/
Dets_codegen_extensions.cpp24 auto dstReg = ConvertRegister(callInst->GetDstReg(), callInst->GetType()); in LaunchCallCodegen() local
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Dcodegen.cpp255 auto dstReg = inst->GetDstReg(); in VisitConstant32() local
304 auto dstReg = inst->GetDstReg(); in VisitConstant64() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
Dencode.cpp1835 auto dstReg = dstAliased ? ArchReg(tmpReg, size) : ArchReg(dst, size); in EncodeSelect() local
1873 auto dstReg = dstAliased ? ArchReg(tmpReg, size) : ArchReg(dst, size); in EncodeSelect() local
1891 auto dstReg = dstAliased ? ArchReg(tmpReg, size) : ArchReg(dst, size); in EncodeSelectTest() local
1916 auto dstReg = dstAliased ? ArchReg(tmpReg, size) : ArchReg(dst, size); in EncodeSelectTest() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/
Dencode.cpp2298 auto dstReg = VixlReg(dst); in EncodeLdrExclusive() local
2339 auto dstReg = copyDst ? VixlReg(tmp) : VixlReg(dst); in EncodeStrExclusive() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
Dencode.cpp1978 auto dstReg = VixlReg(dst); in EncodeLdrExclusive() local
2014 auto dstReg = copyDst ? VixlReg(tmp) : VixlReg(dst); in EncodeStrExclusive() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_prop.cpp1598 bool CopyRegProp::IsValidCopyProp(const RegOperand &dstReg, const RegOperand &srcReg) const in IsValidCopyProp() argument
Daarch64_peep.cpp4104 auto &dstReg = static_cast<RegOperand &>(csetReg); in Run() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
Delf_assembler.cpp558 void ElfAssembler::OpCmovcc(Reg srcReg, Reg dstReg, uint8 opCode1, uint8 opCode2) in OpCmovcc()