diff options
Diffstat (limited to 'libpixelflinger/codeflinger/ARMAssemblerProxy.cpp')
-rw-r--r-- | libpixelflinger/codeflinger/ARMAssemblerProxy.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp b/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp index 1c7bc76e4..816de48fe 100644 --- a/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp +++ b/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp @@ -294,5 +294,18 @@ void ARMAssemblerProxy::UBFX(int cc, int Rd, int Rn, int lsb, int width) { mTarget->UBFX(cc, Rd, Rn, lsb, width); } +void ARMAssemblerProxy::ADDR_LDR(int cc, int Rd, int Rn, uint32_t offset) { + mTarget->ADDR_LDR(cc, Rd, Rn, offset); +} +void ARMAssemblerProxy::ADDR_STR(int cc, int Rd, int Rn, uint32_t offset) { + mTarget->ADDR_STR(cc, Rd, Rn, offset); +} +void ARMAssemblerProxy::ADDR_ADD(int cc, int s, int Rd, int Rn, uint32_t Op2){ + mTarget->ADDR_ADD(cc, s, Rd, Rn, Op2); +} +void ARMAssemblerProxy::ADDR_SUB(int cc, int s, int Rd, int Rn, uint32_t Op2){ + mTarget->ADDR_SUB(cc, s, Rd, Rn, Op2); +} + }; // namespace android |