reverse previous patch, implicit IT blocks are not supported by the Android NDK

This commit is contained in:
Michael Mohr 2010-12-28 11:17:28 -08:00
parent ea0658df06
commit 1933d52832
3 changed files with 11 additions and 1 deletions

View File

@ -100,7 +100,7 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
# -ftree-vectorizer-verbose=2: verbose output during compile
# Note: not all V7a targets support NEON!
# LOCAL_ARM_NEON := true
LOCAL_CFLAGS += -DTFM_ARM -mimplicit-it=thumb
LOCAL_CFLAGS += -DTFM_ARM
endif
include $(BUILD_STATIC_LIBRARY)

View File

@ -15,6 +15,10 @@ when compiled for armeabi:
For now, the armeabi target will use the unoptimized C code. TFM_ARM is conditionally defined
for the armeabi-v7a target.
Don't forget to change FP_MAX_SIZE in src/headers/tfm.h to suit your needs, e.g.
#define FP_MAX_SIZE (16384+(8*DIGIT_BIT))
Build instructions:
(1) Clone this git repository to your project's JNI directory, naming the directory "tfm".

View File

@ -296,6 +296,9 @@ asm( \
asm( \
" LDR r0,%1 \n\t" \
" ADDS r0,r0,%0 \n\t" \
#if defined(__thumb2__)
" ITE CS \n\t" \
#endif
" MOVCS %0,#1 \n\t" \
" MOVCC %0,#0 \n\t" \
" UMLAL r0,%0,%3,%4 \n\t" \
@ -307,6 +310,9 @@ asm( \
" LDR r0,%1 \n\t" \
" ADDS r0,r0,%0 \n\t" \
" STR r0,%1 \n\t" \
#if defined(__thumb2__)
" ITE CS \n\t" \
#endif
" MOVCS %0,#1 \n\t" \
" MOVCC %0,#0 \n\t" \
:"=r"(cy),"=g"(_c[0]):"0"(cy),"1"(_c[0]):"r0","%cc");