Home
last modified time | relevance | path

Searched refs:EncodeCast (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/compiler/
Dcodegen_intrinsics_ets.cpp149 GetEncoder()->EncodeCast(dst.As(type), true, num, true); in CreateStringBuilderAppendNumber()
152 GetEncoder()->EncodeCast(tmp, true, num, true); in CreateStringBuilderAppendNumber()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dcodegen-inl.h141 GetEncoder()->EncodeCast(dstReg.As(INT32_TYPE), isSigned, retReg, isSigned); in CallEntrypoint()
Dencode.h184 virtual void EncodeCast(Reg dst, bool dstSigned, Reg src, bool srcSigned);
Dencode.cpp104 void Encoder::EncodeCast([[maybe_unused]] Reg dst, [[maybe_unused]] bool dstSigned, [[maybe_unused]… in EncodeCast() function in ark::compiler::Encoder
Dcodegen.cpp1431 … GetEncoder()->EncodeCast(dstReg, isSigned, Reg(returnReg.GetId(), INT32_TYPE), isSigned); in CreateCallIntrinsic()
1846 … GetEncoder()->EncodeCast(dstReg, isSigned, Reg(returnReg.GetId(), INT32_TYPE), isSigned); in FinalizeCall()
2164 enc->EncodeCast(dst.As(INT64_TYPE), dstSigned, dst, dstSigned); in EncodeDynamicCast()
Dencode_visitor.cpp268 enc->GetEncoder()->EncodeCast(dst, dstSigned, src, srcSigned); in VisitCast()
280 enc->GetEncoder()->EncodeCast(dst, dstSigned, src, srcSigned); in VisitCast()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
Dencode.cpp433 EncodeCast(tmpReg, false, src1, false); in EncodeJump()
437 EncodeCast(tmpReg, false, src0, false); in EncodeJump()
493 EncodeCast(tmpReg, false, src1, false); in EncodeJumpTest()
497 EncodeCast(tmpReg, false, src0, false); in EncodeJumpTest()
730 EncodeCast(dst, false, src, false); in EncodeMov()
1095 void Amd64Encoder::EncodeCast(Reg dst, bool dstSigned, Reg src, bool srcSigned) in EncodeCast() function in ark::compiler::amd64::Amd64Encoder
Dtarget.h270 void EncodeCast(Reg dst, bool dstSigned, Reg src, bool srcSigned) override;
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/
Dtarget.h295 void EncodeCast(Reg dst, bool dstSigned, Reg src, bool srcSigned) override;
Dencode.cpp1355 void Aarch32Encoder::EncodeCast(Reg dst, bool dstSigned, Reg src, bool srcSigned) in EncodeCast() function in ark::compiler::aarch32::Aarch32Encoder
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
Dtarget.h238 void EncodeCast(Reg dst, bool dstSigned, Reg src, bool srcSigned) override;
Dencode.cpp1491 void Aarch64Encoder::EncodeCast(Reg dst, bool dstSigned, Reg src, bool srcSigned) in EncodeCast() function in ark::compiler::aarch64::Aarch64Encoder
2404 EncodeCast(src, false, src.As(INT64_TYPE), false); in EncodeStrz()
/arkcompiler/runtime_core/static_core/compiler/tests/amd64/
Dencoder64_test_2.cpp84 test->GetEncoder()->EncodeCast(output, std::is_signed_v<Dst>, input, std::is_signed_v<Src>); in TestCast()
/arkcompiler/runtime_core/static_core/compiler/tests/aarch32/
Dencoder32_test_2.cpp145 test->GetEncoder()->EncodeCast(output, std::is_signed_v<Dst>, input, std::is_signed_v<Src>); in TestCast()
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/
Dencoder64_test_2.cpp188 test->GetEncoder()->EncodeCast(output, std::is_signed_v<Dst>, input, std::is_signed_v<Src>); in TestCast()
/arkcompiler/runtime_core/compiler/tests/amd64/
Dencoder64_test.cpp2455 test->GetEncoder()->EncodeCast(output, std::is_signed_v<Dst>, input, std::is_signed_v<Src>); in TestCast()
/arkcompiler/runtime_core/compiler/tests/aarch32/
Dencoder32_test.cpp2428 test->GetEncoder()->EncodeCast(output, std::is_signed_v<Dst>, input, std::is_signed_v<Src>); in TestCast()
/arkcompiler/runtime_core/compiler/tests/aarch64/
Dencoder64_test.cpp2562 test->GetEncoder()->EncodeCast(output, std::is_signed_v<Dst>, input, std::is_signed_v<Src>); in TestCast()