Compare commits
	
		
			1 Commits
		
	
	
		
			jb-mr1-dev
			...
			ics-mr1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					fc89980c7b | 
							
								
								
									
										6
									
								
								MAINTAINERS
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								MAINTAINERS
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
 | 
			
		||||
Bionic support for SuperH
 | 
			
		||||
-------------------------
 | 
			
		||||
Bionic support for SuperH architecture is written by
 | 
			
		||||
Shin-ichiro KAWASAKI <shinichiro.kawasaki.mg@hitachi.com>
 | 
			
		||||
and Contributed to Android by Hitachi, Ltd. and Renesas Solutions Corp.
 | 
			
		||||
							
								
								
									
										10
									
								
								ThirdPartyProject.prop
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								ThirdPartyProject.prop
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
# Copyright 2010 Google Inc. All Rights Reserved.
 | 
			
		||||
#Fri Jul 16 10:03:08 PDT 2010
 | 
			
		||||
currentVersion=Unknown
 | 
			
		||||
version=Unknown
 | 
			
		||||
isNative=true
 | 
			
		||||
feedurl=http\://www.openbsd.org/security.html
 | 
			
		||||
name=openbsd
 | 
			
		||||
keywords=openbsd
 | 
			
		||||
onDevice=true
 | 
			
		||||
homepage=http\://openbsd.org
 | 
			
		||||
							
								
								
									
										706
									
								
								libc/Android.mk
									
									
									
									
									
								
							
							
						
						
									
										706
									
								
								libc/Android.mk
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										441
									
								
								libc/Jamfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										441
									
								
								libc/Jamfile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,441 @@
 | 
			
		||||
# This file is used to build the Bionic library with the Jam build
 | 
			
		||||
# tool. For info, see www.perforce.com/jam/jam.html
 | 
			
		||||
#
 | 
			
		||||
 | 
			
		||||
BIONIC_TOP ?= $(DOT) ;
 | 
			
		||||
 | 
			
		||||
DEBUG = 1 ;
 | 
			
		||||
 | 
			
		||||
# pattern used for automatic heade inclusion detection
 | 
			
		||||
HDRPATTERN = "^[ 	]*#[ 	]*include[ 	]*[<\"]([^\">]*)[\">].*$" ;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# debugging support, simply define the DEBUG variable to activate verbose output
 | 
			
		||||
rule Debug
 | 
			
		||||
{
 | 
			
		||||
    if $(DEBUG) {
 | 
			
		||||
        Echo $(1) ;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# return all elements from $(1) that are not in $(2)
 | 
			
		||||
rule Filter  list : filter
 | 
			
		||||
{
 | 
			
		||||
    local result = ;
 | 
			
		||||
    local item ;
 | 
			
		||||
    for item in $(list) {
 | 
			
		||||
        if ! $(item) in $(filter) {
 | 
			
		||||
            result += $(item) ;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    return $(result) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# reverse a list of elements
 | 
			
		||||
rule Reverse  list
 | 
			
		||||
{
 | 
			
		||||
    local  result = ;
 | 
			
		||||
    local  item ;
 | 
			
		||||
 | 
			
		||||
    for item in $(list) {
 | 
			
		||||
        result = $(item) $(result) ;
 | 
			
		||||
    }
 | 
			
		||||
    return $(result) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# decompose a path into a list of elements
 | 
			
		||||
rule PathDecompose  dir
 | 
			
		||||
{
 | 
			
		||||
    local  result ;
 | 
			
		||||
 | 
			
		||||
    while $(dir:D)
 | 
			
		||||
    {
 | 
			
		||||
        if ! $(dir:BS) {  # for rooted paths like "/foo"
 | 
			
		||||
            break ;
 | 
			
		||||
        }
 | 
			
		||||
        result = $(dir:BS) $(result) ;
 | 
			
		||||
        dir    = $(dir:D) ;
 | 
			
		||||
    }
 | 
			
		||||
    result = $(dir) $(result) ;
 | 
			
		||||
    return $(result) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# simply a file path, i.e. get rid of . or .. when possible
 | 
			
		||||
rule _PathSimplify  dir
 | 
			
		||||
{
 | 
			
		||||
    local  result = ;
 | 
			
		||||
    local  dir2 d ;
 | 
			
		||||
 | 
			
		||||
    dir  = [ PathDecompose $(dir) ] ;
 | 
			
		||||
 | 
			
		||||
    # get rid of any single dot
 | 
			
		||||
    dir2 = ;
 | 
			
		||||
    for d in $(dir) {
 | 
			
		||||
        if $(d) = "." {
 | 
			
		||||
            continue ;
 | 
			
		||||
        }
 | 
			
		||||
        dir2 += $(d) ;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    # get rid of .. when possible
 | 
			
		||||
    for d in $(dir2) {
 | 
			
		||||
        if $(d) = ".." && $(result) {
 | 
			
		||||
            result = $(result[2-]) ;
 | 
			
		||||
        }
 | 
			
		||||
        else
 | 
			
		||||
            result = $(d) $(result) ;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    # now invert the result
 | 
			
		||||
    result = [ Reverse $(result) ] ;
 | 
			
		||||
    if ! $(result) {
 | 
			
		||||
        result = "." ;
 | 
			
		||||
    }
 | 
			
		||||
    return $(result:J="/") ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
rule PathSimplify  dirs
 | 
			
		||||
{
 | 
			
		||||
    local result ;
 | 
			
		||||
    local d ;
 | 
			
		||||
    for d in $(dirs) {
 | 
			
		||||
        result += [ _PathSimplify $(d) ] ;
 | 
			
		||||
    }
 | 
			
		||||
    return $(result) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# retrieve list of subdirectories
 | 
			
		||||
rule ListSubDirs  paths
 | 
			
		||||
{
 | 
			
		||||
    local  result  = ;
 | 
			
		||||
    local  entry ;
 | 
			
		||||
    for entry in [ Glob $(paths) : * ] {
 | 
			
		||||
        if ! $(entry:S) {
 | 
			
		||||
            result += $(entry) ;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    return [ PathSimplify $(result) ] ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# retrieve list of sources in a given directory
 | 
			
		||||
rule ListSources  path
 | 
			
		||||
{
 | 
			
		||||
    return [ Glob $(path) : *.S *.c ] ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# find the prebuilt directory
 | 
			
		||||
#
 | 
			
		||||
if ! $(TOP) {
 | 
			
		||||
    Echo "Please define TOP as the root of your device build tree" ;
 | 
			
		||||
    Exit ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
Debug "OS is" $(OS) ;
 | 
			
		||||
Debug "CPU is" $(CPU) ;
 | 
			
		||||
 | 
			
		||||
if $(OS) = LINUX
 | 
			
		||||
{
 | 
			
		||||
    PREBUILT = $(TOP)/prebuilt/Linux ;
 | 
			
		||||
}
 | 
			
		||||
else if $(OS) = MACOSX
 | 
			
		||||
{
 | 
			
		||||
    switch $(CPU) {
 | 
			
		||||
        case i386 : PREBUILT = $(TOP)/prebuilt/darwin-x86 ; break ;
 | 
			
		||||
        case ppc  : PREBUILT = $(TOP)/prebuilt/darwin-ppc ; break ;
 | 
			
		||||
        case *    : Echo "unsupported CPU" "$(CPU) !!" ;
 | 
			
		||||
                    Echo "Please contact digit@google.com for help" ;
 | 
			
		||||
                    Exit ;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
else
 | 
			
		||||
{
 | 
			
		||||
    Echo "Unsupported operating system" $(OS) ;
 | 
			
		||||
    Echo "Please contact digit@google.com for help" ;
 | 
			
		||||
    Exit ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
Debug "TOP is" $(TOP) ;
 | 
			
		||||
Debug "PREBUILT is" $(PREBUILT) ;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# check architectures and setup toolchain variables
 | 
			
		||||
#
 | 
			
		||||
SUPPORTED_ARCHS = x86 arm ;
 | 
			
		||||
 | 
			
		||||
ARCH ?= $(SUPPORTED_ARCHS) ;
 | 
			
		||||
 | 
			
		||||
if ! $(ARCH) in $(SUPPORTED_ARCHS) {
 | 
			
		||||
    Echo "The variable ARCH contains an unsupported value, use one or more of these instead" ;
 | 
			
		||||
    Echo "separated by spaces:" $(SUPPORTED_ARCHS) ;
 | 
			
		||||
    Exit ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
x86_TOOLSET_PREFIX ?= "" ;
 | 
			
		||||
arm_TOOLSET_PREFIX ?= $(TOP)/prebuilt/Linux/toolchain-4.1.1/bin/arm-elf- ;
 | 
			
		||||
 | 
			
		||||
for arch in $(ARCH) {
 | 
			
		||||
    CC_$(arch)  = $($(arch)_TOOLSET_PREFIX)gcc ;
 | 
			
		||||
    C++_$(arch) = $($(arch)_TOOLSET_PREFIX)g++ ;
 | 
			
		||||
    AR_$(arch)  = $($(arch)_TOOLSET_PREFIX)ar ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# the list of arch-independent source subdirectories
 | 
			
		||||
BIONIC_SRC_SUBDIRS = string ;
 | 
			
		||||
BIONIC_x86_SUBDIRS = ;
 | 
			
		||||
BIONIC_arm_SUBDIRS = ;
 | 
			
		||||
 | 
			
		||||
CFLAGS   = -O0 -g -W ;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# find sources in a given list of subdirectories
 | 
			
		||||
rule FindSources  dirs
 | 
			
		||||
{
 | 
			
		||||
    local dir ;
 | 
			
		||||
 | 
			
		||||
    for dir in $(dirs)
 | 
			
		||||
    {
 | 
			
		||||
        local LOCAL_SRC NO_LOCAL_SRC ;
 | 
			
		||||
 | 
			
		||||
        if [ Glob $(dir) : rules.jam ] {
 | 
			
		||||
            include $(dir)/rules.jam ;
 | 
			
		||||
            if $(LOCAL_SRC) {
 | 
			
		||||
                _sources = $(LOCAL_SRC) ;
 | 
			
		||||
            }
 | 
			
		||||
            else {
 | 
			
		||||
                _sources = [ Glob $(dir) : *.S *.c ] ;
 | 
			
		||||
                _sources = $(_sources:BS) ;
 | 
			
		||||
            }
 | 
			
		||||
            if $(NO_LOCAL_SRC) {
 | 
			
		||||
                _sources = [ Filter $(_sources) : $(NO_LOCAL_SRC) ] ;
 | 
			
		||||
            }
 | 
			
		||||
            sources += $(dir)/$(_sources) ;
 | 
			
		||||
        }
 | 
			
		||||
        else
 | 
			
		||||
            sources += [ ListSources $(dir) ] ;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Compile a given object file from a source
 | 
			
		||||
rule Compile  object : source
 | 
			
		||||
{
 | 
			
		||||
    Depends $(object) : $(source) ;
 | 
			
		||||
    Depends bionic : $(object) ;
 | 
			
		||||
    Clean clean : $(object) ;
 | 
			
		||||
 | 
			
		||||
    MakeLocate $(object) : $(OUT) ;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    CC on $(object)       = $(CC_$(arch)) ;
 | 
			
		||||
    CFLAGS on $(object)   = $(CFLAGS) ;
 | 
			
		||||
    INCLUDES on $(object) = $(INCLUDES) ;
 | 
			
		||||
    DEFINES on $(object)  = $(DEFINES) ;
 | 
			
		||||
 | 
			
		||||
    HDRRULE on $(>) = HdrRule ;
 | 
			
		||||
    HDRSCAN on $(>) = $(HDRPATTERN) ;
 | 
			
		||||
    HDRSEARCH on $(>) = $(INCLUDES) ;
 | 
			
		||||
    HDRGRIST on $(>) = $(HDRGRIST) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
actions Compile
 | 
			
		||||
{
 | 
			
		||||
    $(CC) -c -o $(1) $(CFLAGS) -I$(INCLUDES) -D$(DEFINES) $(2)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
rule RmTemps
 | 
			
		||||
{
 | 
			
		||||
    Temporary $(2) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
actions quietly updated piecemeal together RmTemps
 | 
			
		||||
{
 | 
			
		||||
    rm -f $(2)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
actions Archive
 | 
			
		||||
{
 | 
			
		||||
    $(AR) ru $(1) $(2)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
rule Library  library : objects
 | 
			
		||||
{
 | 
			
		||||
    local  obj ;
 | 
			
		||||
 | 
			
		||||
    if ! $(library:S) {
 | 
			
		||||
        library = $(library:S=.a) ;
 | 
			
		||||
    }
 | 
			
		||||
    library = $(library:G=<$(arch)>) ;
 | 
			
		||||
 | 
			
		||||
    Depends all : $(library) ;
 | 
			
		||||
 | 
			
		||||
    if ! $(library:D) {
 | 
			
		||||
        MakeLocate $(library) $(library)($(objects:BS)) : $(OUT) ;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    Depends $(library) : $(library)($(objects:BS)) ;
 | 
			
		||||
    for obj in $(objects) {
 | 
			
		||||
        Depends $(library)($(obj:BS)) : $(obj) ;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    Clean clean : $(library) ;
 | 
			
		||||
 | 
			
		||||
    AR on $(library) = $(AR_$(arch)) ;
 | 
			
		||||
    Archive $(library) : $(objects) ;
 | 
			
		||||
 | 
			
		||||
    RmTemps $(library) : $(objects) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
rule  ProcessDir
 | 
			
		||||
{
 | 
			
		||||
    local CFLAGS   = $(CFLAGS) ;
 | 
			
		||||
    local DEFINES  = $(DEFINES) ;
 | 
			
		||||
    local INCLUDES = $(INCLUDES) ;
 | 
			
		||||
    local local_rules = [ Glob $(1) : rules.jam ] ;
 | 
			
		||||
    local source sources ;
 | 
			
		||||
 | 
			
		||||
    if $(local_rules) {
 | 
			
		||||
        local LOCAL_CFLAGS LOCAL_DEFINES LOCAL_INCLUDES LOCAL_SRC NO_LOCAL_SRC ;
 | 
			
		||||
 | 
			
		||||
        include $(local_rules) ;
 | 
			
		||||
        CFLAGS   += $(LOCAL_CFLAGS) ;
 | 
			
		||||
        DEFINES  += $(LOCAL_DEFINES) ;
 | 
			
		||||
        INCLUDES += $(LOCAL_INCLUDES) ;
 | 
			
		||||
 | 
			
		||||
        if $(LOCAL_SRC) {
 | 
			
		||||
            sources = $(LOCAL_SRC) ;
 | 
			
		||||
        }
 | 
			
		||||
        else {
 | 
			
		||||
            sources = [ Glob $(1) : *.S *.c ] ;
 | 
			
		||||
            sources = $(sources:BS) ;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if $(NO_LOCAL_SRC) {
 | 
			
		||||
            sources = [ Filter $(sources) : $(NO_LOCAL_SRC) ] ;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        sources = $(1)/$(sources) ;
 | 
			
		||||
    }
 | 
			
		||||
    else
 | 
			
		||||
        sources = [ Glob $(1) : *.S *.c ] ;
 | 
			
		||||
 | 
			
		||||
    for source in $(sources) {
 | 
			
		||||
        local name = $(source:B) ;
 | 
			
		||||
 | 
			
		||||
        if $(source:S) = ".S" {
 | 
			
		||||
            # record the list of assembler sources
 | 
			
		||||
            ASSEMBLER_SOURCES += $(name) ;
 | 
			
		||||
        }
 | 
			
		||||
        else if $(source:S) = ".c" && $(name) in $(ASSEMBLER_SOURCES) {
 | 
			
		||||
            # skip C source file if corresponding assembler exists
 | 
			
		||||
            continue ;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        objname = <$(arch)>$(name).o  ;
 | 
			
		||||
 | 
			
		||||
        Compile $(objname) : $(source) ;
 | 
			
		||||
        ALL_OBJECTS += $(objname) ;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
rule ProcessDirs
 | 
			
		||||
{
 | 
			
		||||
    local  dir ;
 | 
			
		||||
    for dir in $(1) {
 | 
			
		||||
        ProcessDir $(dir) ;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
INCLUDES_x86 = /usr/src/linux/include ;
 | 
			
		||||
 | 
			
		||||
INCLUDES_arm = ../kernel_headers
 | 
			
		||||
               include/arch/arm
 | 
			
		||||
               include/bits32
 | 
			
		||||
               ;
 | 
			
		||||
 | 
			
		||||
INCLUDES = include stdio string stdlib .
 | 
			
		||||
           ../msun/include
 | 
			
		||||
           ;
 | 
			
		||||
 | 
			
		||||
DEFINES  = ANDROID_CHANGES
 | 
			
		||||
           USE_LOCKS
 | 
			
		||||
           REALLOC_ZERO_BYTES_FREES
 | 
			
		||||
           _LIBC=1
 | 
			
		||||
           SOFTFLOAT
 | 
			
		||||
           FLOATING_POINT
 | 
			
		||||
           NEED_PSELECT=1
 | 
			
		||||
           ANDROID
 | 
			
		||||
           ;
 | 
			
		||||
 | 
			
		||||
CFLAGS_x86 = ;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
for arch in $(ARCH)
 | 
			
		||||
{
 | 
			
		||||
    local ARCH_DIR = $(BIONIC_TOP)/arch-$(arch) ;
 | 
			
		||||
    local INCLUDES = $(INCLUDES_$(arch)) $(ARCH_DIR)/include $(INCLUDES) ;
 | 
			
		||||
    local DEFINES  = $(DEFINES_$(arch)) $(DEFINES) ARCH=$(arch)  ;
 | 
			
		||||
    local CFLAGS   = $(CFLAGS) $(CFLAGS_$(arch)) ;
 | 
			
		||||
    local OUT      = out/$(arch) ;
 | 
			
		||||
    local ASSEMBLER_SOURCES ALL_OBJECTS ;
 | 
			
		||||
 | 
			
		||||
    ProcessDirs [ ListSubDirs $(ARCH_DIR) ] ;
 | 
			
		||||
    ProcessDirs stdlib stdio unistd string tzcode inet ;
 | 
			
		||||
    ProcessDirs [ ListSubDirs netbsd ] ;
 | 
			
		||||
    ProcessDirs bionic ;
 | 
			
		||||
 | 
			
		||||
    Library bionic : $(ALL_OBJECTS) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
BIONIC_SEARCH = $(BIONIC_TOP)/include ;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# /HdrRule source : headers ;
 | 
			
		||||
#
 | 
			
		||||
# Arranges the proper dependencies when the file _source_ includes the files
 | 
			
		||||
# _headers_ through the #include C preprocessor directive
 | 
			
		||||
#
 | 
			
		||||
# this rule is not intendend to be called explicitely. It is called
 | 
			
		||||
# automatically during header scanning on sources handled by the @Object
 | 
			
		||||
# rule (e.g. sources in @Main or @Library rules)
 | 
			
		||||
#
 | 
			
		||||
rule HdrRule
 | 
			
		||||
{
 | 
			
		||||
    # HdrRule source : headers ;
 | 
			
		||||
 | 
			
		||||
    # N.B.  This rule is called during binding, potentially after
 | 
			
		||||
    # the fate of many targets has been determined, and must be
 | 
			
		||||
    # used with caution: don't add dependencies to unrelated
 | 
			
		||||
    # targets, and don't set variables on $(<).
 | 
			
		||||
 | 
			
		||||
    # Tell Jam that anything depending on $(<) also depends on $(>),
 | 
			
		||||
    # set SEARCH so Jam can find the headers, but then say we don't
 | 
			
		||||
    # care if we can't actually find the headers (they may have been
 | 
			
		||||
    # within ifdefs),
 | 
			
		||||
 | 
			
		||||
    local s = $(>:G=$(HDRGRIST:E)) ;
 | 
			
		||||
 | 
			
		||||
    Includes $(<) : $(s) ;
 | 
			
		||||
    SEARCH on $(s) = $(HDRSEARCH) ;
 | 
			
		||||
    NoCare $(s) ;
 | 
			
		||||
 | 
			
		||||
    # Propagate on $(<) to $(>)
 | 
			
		||||
 | 
			
		||||
    HDRSEARCH on $(s) = $(HDRSEARCH) ;
 | 
			
		||||
    HDRSCAN on $(s) = $(HDRSCAN) ;
 | 
			
		||||
    HDRRULE on $(s) = $(HDRRULE) ;
 | 
			
		||||
    HDRGRIST on $(s) = $(HDRGRIST) ;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										4375
									
								
								libc/NOTICE
									
									
									
									
									
								
							
							
						
						
									
										4375
									
								
								libc/NOTICE
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -1,10 +1,10 @@
 | 
			
		||||
# this file is used to list all the syscalls that will be supported by
 | 
			
		||||
# the Bionic C library. It is used to automatically generate the syscall
 | 
			
		||||
# stubs, the list of syscall constants (__NR_xxxx) and the content of <linux/_unistd.h>
 | 
			
		||||
# stubs, the list of syscall constants (__NR_xxxx) and the content of <linux/_unitsd.h>
 | 
			
		||||
#
 | 
			
		||||
# each non comment line has the following format:
 | 
			
		||||
#
 | 
			
		||||
# return_type    func_name[:syscall_name[:call_id]]([parameter_list])  (syscall_number|"stub")
 | 
			
		||||
# return_type    func_name[:syscall_name[:call_id]]([parameter_list])  (#syscall_number|stub)
 | 
			
		||||
#
 | 
			
		||||
# note that:
 | 
			
		||||
#      - syscall_name correspond to the name of the syscall, which may differ from
 | 
			
		||||
@@ -22,18 +22,18 @@
 | 
			
		||||
#        assembler template for the syscall; it's up to the bionic implementation to provide
 | 
			
		||||
#        a relevant C stub
 | 
			
		||||
#
 | 
			
		||||
#      - additionally, if the syscall number is different amoung ARM, and x86, MIPS use:
 | 
			
		||||
#        return_type funcname[:syscall_name](parameters) arm_number,x86_number,mips_number
 | 
			
		||||
#      - additionally, if the syscall number is different amoung ARM, x86 and SuperH, use:
 | 
			
		||||
#        return_type funcname[:syscall_name](parameters) arm_number,x86_number,superh_number
 | 
			
		||||
#
 | 
			
		||||
# the file is processed by a python script named gensyscalls.py
 | 
			
		||||
#
 | 
			
		||||
 | 
			
		||||
# process management
 | 
			
		||||
void    _exit:exit_group (int)      248,252,246
 | 
			
		||||
void    _exit_thread:exit (int)     1
 | 
			
		||||
void    _exit:exit_group (int)      248,252
 | 
			
		||||
void    _exit_thread:exit (int)	    1
 | 
			
		||||
pid_t   __fork:fork (void)           2
 | 
			
		||||
pid_t   _waitpid:waitpid (pid_t, int*, int, struct rusage*)   -1,7,7
 | 
			
		||||
int     __waitid:waitid(int, pid_t, struct siginfo_t*, int,void*)          280,284,278
 | 
			
		||||
pid_t   _waitpid:waitpid (pid_t, int*, int, struct rusage*)   -1,7
 | 
			
		||||
int     __waitid:waitid(int, pid_t, struct siginfo_t*, int,void*)          280,284
 | 
			
		||||
 | 
			
		||||
# NOTE: this system call is never called directly, but we list it there
 | 
			
		||||
#       to have __NR_clone properly defined.
 | 
			
		||||
@@ -42,90 +42,70 @@ pid_t   __sys_clone:clone (int, void*, int*, void*, int*) 120
 | 
			
		||||
 | 
			
		||||
int     execve (const char*, char* const*, char* const*)  11
 | 
			
		||||
 | 
			
		||||
int     __setuid:setuid32 (uid_t)    213,213,-1
 | 
			
		||||
int     __setuid:setuid (uid_t)   -1,-1,23
 | 
			
		||||
uid_t   getuid:getuid32 ()         199,199,-1
 | 
			
		||||
uid_t   getuid:getuid ()           -1,-1,24
 | 
			
		||||
gid_t   getgid:getgid32 ()         200,200,-1
 | 
			
		||||
gid_t   getgid:getgid ()           -1,-1,47
 | 
			
		||||
uid_t   geteuid:geteuid32 ()       201,201,-1
 | 
			
		||||
uid_t   geteuid:geteuid ()         -1,-1,49
 | 
			
		||||
gid_t   getegid:getegid32 ()       202,202,-1
 | 
			
		||||
gid_t   getegid:getegid ()         -1,-1,50
 | 
			
		||||
uid_t   getresuid:getresuid32 (uid_t *ruid, uid_t *euid, uid_t *suid)   209,209,-1
 | 
			
		||||
uid_t   getresuid:getresuid (uid_t *ruid, uid_t *euid, uid_t *suid)     -1,-1,186
 | 
			
		||||
gid_t   getresgid:getresgid32 (gid_t *rgid, gid_t *egid, gid_t *sgid)   211,211,-1
 | 
			
		||||
gid_t   getresgid:getresgid (gid_t *rgid, gid_t *egid, gid_t *sgid)     -1,-1,191
 | 
			
		||||
pid_t   gettid()                   224,224,222
 | 
			
		||||
ssize_t readahead(int, off64_t, size_t)     225,225,223
 | 
			
		||||
int     getgroups:getgroups32(int, gid_t *)    205,205,-1
 | 
			
		||||
int     getgroups:getgroups(int, gid_t *)      -1,-1,80
 | 
			
		||||
int     __setuid:setuid32 (uid_t)    213
 | 
			
		||||
uid_t   getuid:getuid32 ()         199
 | 
			
		||||
gid_t   getgid:getgid32 ()         200
 | 
			
		||||
uid_t   geteuid:geteuid32 ()       201
 | 
			
		||||
gid_t   getegid:getegid32 ()       202
 | 
			
		||||
uid_t   getresuid:getresuid32 ()   209
 | 
			
		||||
gid_t   getresgid:getresgid32 ()   211
 | 
			
		||||
pid_t   gettid()                   224
 | 
			
		||||
int     getgroups:getgroups32(int, gid_t *)    205
 | 
			
		||||
pid_t   getpgid(pid_t)             132
 | 
			
		||||
pid_t   getppid()                  64
 | 
			
		||||
pid_t   getsid(pid_t)              147,147,151
 | 
			
		||||
pid_t   getppid()		   64
 | 
			
		||||
pid_t   setsid()                   66
 | 
			
		||||
int     setgid:setgid32(gid_t)     214,214,-1
 | 
			
		||||
int     setgid:setgid(gid_t)       -1,-1,46
 | 
			
		||||
int     setgid:setgid32(gid_t)     214
 | 
			
		||||
int     seteuid:seteuid32(uid_t)   stub
 | 
			
		||||
int     __setreuid:setreuid32(uid_t, uid_t)   203,203,-1
 | 
			
		||||
int     __setreuid:setreuid(uid_t, uid_t)     -1,-1,70
 | 
			
		||||
int     __setresuid:setresuid32(uid_t, uid_t, uid_t)   208,208,-1
 | 
			
		||||
int     __setresuid:setresuid(uid_t, uid_t, uid_t)     -1,-1,185
 | 
			
		||||
int     setresgid:setresgid32(gid_t, gid_t, gid_t)   210,210,-1
 | 
			
		||||
int     setresgid:setresgid(gid_t, gid_t, gid_t)     -1,-1,190
 | 
			
		||||
int     __setreuid:setreuid32(uid_t, uid_t)   203
 | 
			
		||||
int     __setresuid:setresuid32(uid_t, uid_t, uid_t)   208
 | 
			
		||||
int     setresgid:setresgid32(gid_t, gid_t, gid_t)   210
 | 
			
		||||
void*   __brk:brk(void*)           45
 | 
			
		||||
# see comments in arch-arm/bionic/kill.S to understand why we don't generate an ARM stub for kill/tkill
 | 
			
		||||
int     kill(pid_t, int)           -1,37,37
 | 
			
		||||
int     tkill(pid_t tid, int sig)  -1,238,236
 | 
			
		||||
int     tgkill(pid_t tgid, pid_t tid, int sig)  -1,270,266
 | 
			
		||||
int     kill(pid_t, int)           -1,37
 | 
			
		||||
int     tkill(pid_t tid, int sig)  -1,238
 | 
			
		||||
int     __ptrace:ptrace(int request, int pid, void* addr, void* data)  26
 | 
			
		||||
int     __set_thread_area:set_thread_area(void*  user_desc)  -1,243,283
 | 
			
		||||
int     __set_thread_area:set_thread_area(void*  user_desc)  -1,243
 | 
			
		||||
int     __getpriority:getpriority(int, int)  96
 | 
			
		||||
int     setpriority(int, int, int)   97
 | 
			
		||||
int     setrlimit(int resource, const struct rlimit *rlp)  75
 | 
			
		||||
int     getrlimit:ugetrlimit(int resource, struct rlimit *rlp)  191,191,-1
 | 
			
		||||
int     getrlimit:getrlimit(int resource, struct rlimit *rlp)  -1,-1,76
 | 
			
		||||
int     getrlimit:ugetrlimit(int resource, struct rlimit *rlp)  191
 | 
			
		||||
int     getrusage(int who, struct rusage*  r_usage)  77
 | 
			
		||||
int     setgroups:setgroups32(int, const gid_t *)   206,206,-1
 | 
			
		||||
int     setgroups:setgroups(int, const gid_t *)     -1,-1,81
 | 
			
		||||
int     setgroups:setgroups32(int, const gid_t *)   206
 | 
			
		||||
pid_t   getpgrp(void)  stub
 | 
			
		||||
int     setpgid(pid_t, pid_t)  57
 | 
			
		||||
pid_t   vfork(void)  190,-1,-1
 | 
			
		||||
int     setregid:setregid32(gid_t, gid_t)  204,204,-1
 | 
			
		||||
int     setregid:setregid(gid_t, gid_t)    -1,-1,71
 | 
			
		||||
pid_t   vfork(void)  190,-1,190
 | 
			
		||||
int     setregid:setregid32(gid_t, gid_t)  204
 | 
			
		||||
int     chroot(const char *)  61
 | 
			
		||||
# IMPORTANT: Even though <sys/prctl.h> declares prctl(int,...), the syscall stub must take 6 arguments
 | 
			
		||||
#            to match the kernel implementation.
 | 
			
		||||
int     prctl(int option, unsigned int arg2, unsigned int arg3, unsigned int arg4, unsigned int arg5)  172,172,192
 | 
			
		||||
int     capget(cap_user_header_t header, cap_user_data_t data) 184,184,204
 | 
			
		||||
int     capset(cap_user_header_t header, const cap_user_data_t data) 185,185,205
 | 
			
		||||
int     sigaltstack(const stack_t*, stack_t*) 186,186,206
 | 
			
		||||
int     prctl(int option, unsigned int arg2, unsigned int arg3, unsigned int arg4, unsigned int arg5)  172
 | 
			
		||||
int     capget(cap_user_header_t header, cap_user_data_t data) 184
 | 
			
		||||
int     capset(cap_user_header_t header, const cap_user_data_t data) 185
 | 
			
		||||
int     sigaltstack(const stack_t*, stack_t*) 186
 | 
			
		||||
int     acct(const char*  filepath)  51
 | 
			
		||||
 | 
			
		||||
# file descriptors
 | 
			
		||||
ssize_t     read (int, void*, size_t)        3
 | 
			
		||||
ssize_t     write (int, const void*, size_t)       4
 | 
			
		||||
ssize_t     pread64 (int, void *, size_t, off64_t) 180,180,200
 | 
			
		||||
ssize_t     pwrite64 (int, void *, size_t, off64_t) 181,181,201
 | 
			
		||||
ssize_t     pread64 (int, void *, size_t, off64_t) 180
 | 
			
		||||
ssize_t     pwrite64 (int, void *, size_t, off64_t) 181
 | 
			
		||||
int         __open:open (const char*, int, mode_t)  5
 | 
			
		||||
int         __openat:openat (int, const char*, int, mode_t)  322,295,288
 | 
			
		||||
int         __openat:openat (int, const char*, int, mode_t)  322,295
 | 
			
		||||
int         close (int)                      6
 | 
			
		||||
int         creat(const char*, mode_t)       stub
 | 
			
		||||
off_t       lseek(int, off_t, int)           19
 | 
			
		||||
int         __llseek:_llseek (int, unsigned long, unsigned long, loff_t*, int)  140
 | 
			
		||||
pid_t       getpid ()    20
 | 
			
		||||
void *      mmap(void *, size_t, int, int, int, long)  stub
 | 
			
		||||
void *      __mmap2:mmap2(void*, size_t, int, int, int, long)   192,192,210
 | 
			
		||||
void *      __mmap2:mmap2(void*, size_t, int, int, int, long)   192
 | 
			
		||||
int         munmap(void *, size_t)  91
 | 
			
		||||
void *      mremap(void *, size_t, size_t, unsigned long)  163,163,167
 | 
			
		||||
void *      mremap(void *, size_t, size_t, unsigned long)  163
 | 
			
		||||
int         msync(const void *, size_t, int)    144
 | 
			
		||||
int         mprotect(const void *, size_t, int)  125
 | 
			
		||||
int         madvise(const void *, size_t, int)  220,219,218
 | 
			
		||||
int         mlock(const void *addr, size_t len)    150,150,154
 | 
			
		||||
int         munlock(const void *addr, size_t len)   151,151,155
 | 
			
		||||
int         mlockall(int flags)   152,152,156
 | 
			
		||||
int         munlockall()   153,153,157
 | 
			
		||||
int         mincore(void*  start, size_t  length, unsigned char*  vec)   219,218,217
 | 
			
		||||
int         madvise(const void *, size_t, int)  220,219
 | 
			
		||||
int         mlock(const void *addr, size_t len)    150
 | 
			
		||||
int         munlock(const void *addr, size_t len)   151
 | 
			
		||||
int         mincore(void*  start, size_t  length, unsigned char*  vec)   219,218
 | 
			
		||||
int         __ioctl:ioctl(int, int, void *)  54
 | 
			
		||||
int         readv(int, const struct iovec *, int)   145
 | 
			
		||||
int         writev(int, const struct iovec *, int)  146
 | 
			
		||||
@@ -134,115 +114,95 @@ int         flock(int, int)   143
 | 
			
		||||
int         fchmod(int, mode_t)  94
 | 
			
		||||
int         dup(int)  41
 | 
			
		||||
int         pipe(int *)  42,42,-1
 | 
			
		||||
int         pipe2(int *, int) 359,331,328
 | 
			
		||||
int         pipe2(int *, int) 359,331
 | 
			
		||||
int         dup2(int, int)   63
 | 
			
		||||
int         select:_newselect(int, struct fd_set *, struct fd_set *, struct fd_set *, struct timeval *)  142
 | 
			
		||||
int         ftruncate(int, off_t)  93
 | 
			
		||||
int         ftruncate64(int, off64_t) 194,194,212
 | 
			
		||||
int         getdents:getdents64(unsigned int, struct dirent *, unsigned int)   217,220,219
 | 
			
		||||
int         ftruncate64(int, off64_t) 194
 | 
			
		||||
int         getdents:getdents64(unsigned int, struct dirent *, unsigned int)   217,220
 | 
			
		||||
int         fsync(int)  118
 | 
			
		||||
int         fdatasync(int) 148,148,152
 | 
			
		||||
int         fchown:fchown32(int, uid_t, gid_t)  207,207,-1
 | 
			
		||||
int         fchown:fchown(int, uid_t, gid_t)    -1,-1,95
 | 
			
		||||
int         fdatasync(int) 148
 | 
			
		||||
int         fchown:fchown32(int, uid_t, gid_t)  207
 | 
			
		||||
void        sync(void)  36
 | 
			
		||||
int         __fcntl64:fcntl64(int, int, void *)  221,221,220
 | 
			
		||||
int         __fstatfs64:fstatfs64(int, size_t, struct statfs *)  267,269,256
 | 
			
		||||
ssize_t     sendfile(int out_fd, int in_fd, off_t *offset, size_t count)  187,187,207
 | 
			
		||||
int         fstatat:fstatat64(int dirfd, const char *path, struct stat *buf, int flags)   327,300,293
 | 
			
		||||
int         mkdirat(int dirfd, const char *pathname, mode_t mode)  323,296,289
 | 
			
		||||
int         fchownat(int dirfd, const char *path, uid_t owner, gid_t group, int flags)  325,298,291
 | 
			
		||||
int         fchmodat(int dirfd, const char *path, mode_t mode, int flags)  333,306,299
 | 
			
		||||
int         renameat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath)  329,302,295
 | 
			
		||||
int         fsetxattr(int, const char *, const void *, size_t, int) 228,228,226
 | 
			
		||||
ssize_t     fgetxattr(int, const char *, void *, size_t) 231,231,229
 | 
			
		||||
ssize_t     flistxattr(int, char *, size_t) 234,234,232
 | 
			
		||||
int         fremovexattr(int, const char *) 237,237,235
 | 
			
		||||
int         __fcntl64:fcntl64(int, int, void *)  221
 | 
			
		||||
int         __fstatfs64:fstatfs64(int, size_t, struct statfs *)  267,269
 | 
			
		||||
ssize_t     sendfile(int out_fd, int in_fd, off_t *offset, size_t count)  187
 | 
			
		||||
int         fstatat:fstatat64(int dirfd, const char *path, struct stat *buf, int flags)   327,300
 | 
			
		||||
int         mkdirat(int dirfd, const char *pathname, mode_t mode)  323,296
 | 
			
		||||
int         fchownat(int dirfd, const char *path, uid_t owner, gid_t group, int flags)  325,298
 | 
			
		||||
int         fchmodat(int dirfd, const char *path, mode_t mode, int flags)  333,306
 | 
			
		||||
int         renameat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath)  329,302
 | 
			
		||||
 | 
			
		||||
# file system
 | 
			
		||||
int     link (const char*, const char*)  9
 | 
			
		||||
int     unlink (const char*)             10
 | 
			
		||||
int     unlinkat (int, const char *, int)   328,301,294
 | 
			
		||||
int     unlinkat (int, const char *, int)   328,301
 | 
			
		||||
int     chdir (const char*)              12
 | 
			
		||||
int     mknod (const char*, mode_t, dev_t)  14
 | 
			
		||||
int     chmod (const char*,mode_t)          15
 | 
			
		||||
int     chown:chown32(const char *, uid_t, gid_t)  212,212,-1
 | 
			
		||||
int     chown:chown(const char *, uid_t, gid_t)    -1,-1,202
 | 
			
		||||
int     lchown:lchown32 (const char*, uid_t, gid_t)  198,198,-1
 | 
			
		||||
int     lchown:lchown (const char*, uid_t, gid_t)  -1,-1,16
 | 
			
		||||
int     chown:chown32(const char *, uid_t, gid_t)  212
 | 
			
		||||
int     lchown:lchown32 (const char*, uid_t, gid_t)  198
 | 
			
		||||
int     mount (const char*, const char*, const char*, unsigned long, const void*)  21
 | 
			
		||||
int     umount(const char*)  stub
 | 
			
		||||
int     umount2 (const char*, int)  52
 | 
			
		||||
int     fstat:fstat64(int, struct stat*)    197,197,215
 | 
			
		||||
int     stat:stat64(const char *, struct stat *)  195,195,213
 | 
			
		||||
int     lstat:lstat64(const char *, struct stat *)  196,196,214
 | 
			
		||||
int     fstat:fstat64(int, struct stat*)    197
 | 
			
		||||
int     stat:stat64(const char *, struct stat *)  195
 | 
			
		||||
int     lstat:lstat64(const char *, struct stat *)  196
 | 
			
		||||
int     mkdir(const char *, mode_t) 39
 | 
			
		||||
int     readlink(const char *, char *, size_t)  85
 | 
			
		||||
int     rmdir(const char *)  40
 | 
			
		||||
int     rename(const char *, const char *)  38
 | 
			
		||||
int     __getcwd:getcwd(char * buf, size_t size)  183,183,203
 | 
			
		||||
int     __getcwd:getcwd(char * buf, size_t size)  183
 | 
			
		||||
int     access(const char *, int)  33
 | 
			
		||||
int     faccessat(int, const char *, int, int)  334,307,300
 | 
			
		||||
int     symlink(const char *, const char *)  83
 | 
			
		||||
int     fchdir(int)    133
 | 
			
		||||
int     truncate(const char*, off_t)    92
 | 
			
		||||
int     setxattr(const char *, const char *, const void *, size_t, int) 226,226,224
 | 
			
		||||
int     lsetxattr(const char *, const char *, const void *, size_t, int) 227,227,225
 | 
			
		||||
ssize_t getxattr(const char *, const char *, void *, size_t) 229,229,227
 | 
			
		||||
ssize_t lgetxattr(const char *, const char *, void *, size_t) 230,230,228
 | 
			
		||||
ssize_t listxattr(const char *, char *, size_t) 232,232,230
 | 
			
		||||
ssize_t llistxattr(const char *, char *, size_t) 233,233,231
 | 
			
		||||
int     removexattr(const char *, const char *) 235,235,233
 | 
			
		||||
int     lremovexattr(const char *, const char *) 236,236,234
 | 
			
		||||
int     __statfs64:statfs64(const char *, size_t, struct statfs *)  266,268,255
 | 
			
		||||
long    unshare(unsigned long)  337,310,303
 | 
			
		||||
 | 
			
		||||
int     __statfs64:statfs64(const char *, size_t, struct statfs *)  266,268
 | 
			
		||||
# time
 | 
			
		||||
int           pause ()                       29
 | 
			
		||||
int           gettimeofday(struct timeval*, struct timezone*)       78
 | 
			
		||||
int           settimeofday(const struct timeval*, const struct timezone*)   79
 | 
			
		||||
clock_t       times(struct tms *)       43
 | 
			
		||||
int           nanosleep(const struct timespec *, struct timespec *)   162,162,166
 | 
			
		||||
int           clock_gettime(clockid_t clk_id, struct timespec *tp)    263,265,263
 | 
			
		||||
int           clock_settime(clockid_t clk_id, const struct timespec *tp)  262,264,262
 | 
			
		||||
int           clock_getres(clockid_t clk_id, struct timespec *res)   264,266,264
 | 
			
		||||
int           clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *req, struct timespec *rem)  265,267,265
 | 
			
		||||
int           nanosleep(const struct timespec *, struct timespec *)   162
 | 
			
		||||
int           clock_gettime(clockid_t clk_id, struct timespec *tp)    263,265
 | 
			
		||||
int           clock_settime(clockid_t clk_id, const struct timespec *tp)  262,264
 | 
			
		||||
int           clock_getres(clockid_t clk_id, struct timespec *res)   264,266
 | 
			
		||||
int           clock_nanosleep(const struct timespec *req, struct timespec *rem)  265,267
 | 
			
		||||
int           getitimer(int, const struct itimerval *)   105
 | 
			
		||||
int           setitimer(int, const struct itimerval *, struct itimerval *)  104
 | 
			
		||||
int           __timer_create:timer_create(clockid_t clockid, struct sigevent *evp, timer_t *timerid)    257,259,257
 | 
			
		||||
int           __timer_settime:timer_settime(timer_t, int, const struct itimerspec*, struct itimerspec*) 258,260,258
 | 
			
		||||
int           __timer_gettime:timer_gettime(timer_t, struct itimerspec*)                                259,261,259
 | 
			
		||||
int           __timer_getoverrun:timer_getoverrun(timer_t)                                              260,262,260
 | 
			
		||||
int           __timer_delete:timer_delete(timer_t)                                                      261,263,261
 | 
			
		||||
int           utimes(const char*, const struct timeval tvp[2])                          269,271,267
 | 
			
		||||
int           utimensat(int, const char *, const struct timespec times[2], int)         348,320,316
 | 
			
		||||
int           __timer_create:timer_create(clockid_t clockid, struct sigevent *evp, timer_t *timerid)    257,259
 | 
			
		||||
int           __timer_settime:timer_settime(timer_t, int, const struct itimerspec*, struct itimerspec*) 258,260
 | 
			
		||||
int           __timer_gettime:timer_gettime(timer_t, struct itimerspec*)                                259,261
 | 
			
		||||
int           __timer_getoverrun:timer_getoverrun(timer_t)                                              260,262
 | 
			
		||||
int           __timer_delete:timer_delete(timer_t)                                                      261,263
 | 
			
		||||
int           utimes(const char*, const struct timeval tvp[2])                          269, 271
 | 
			
		||||
int           utimensat(int, const char *, const struct timespec times[2], int)         348, 320, 320
 | 
			
		||||
 | 
			
		||||
# signals
 | 
			
		||||
int     sigaction(int, const struct sigaction *, struct sigaction *)  67
 | 
			
		||||
int     sigprocmask(int, const sigset_t *, sigset_t *)  126
 | 
			
		||||
int     __sigsuspend:sigsuspend(int unused1, int unused2, unsigned mask)  72,72,-1
 | 
			
		||||
int     __sigsuspend:sigsuspend(const sigset_t *mask)  -1,-1,72
 | 
			
		||||
int     __rt_sigaction:rt_sigaction (int sig, const struct sigaction *act, struct sigaction *oact, size_t sigsetsize)  174,174,194
 | 
			
		||||
int     __rt_sigprocmask:rt_sigprocmask (int  how, const sigset_t *set, sigset_t *oset, size_t sigsetsize)  175,175,195
 | 
			
		||||
int     __rt_sigtimedwait:rt_sigtimedwait(const sigset_t *set, struct siginfo_t  *info, struct timespec_t  *timeout, size_t  sigset_size)  177,177,197
 | 
			
		||||
int     __sigsuspend:sigsuspend(int unused1, int unused2, unsigned mask)  72
 | 
			
		||||
int     __rt_sigaction:rt_sigaction (int sig, const struct sigaction *act, struct sigaction *oact, size_t sigsetsize)  174
 | 
			
		||||
int     __rt_sigprocmask:rt_sigprocmask (int  how, const sigset_t *set, sigset_t *oset, size_t sigsetsize)  175
 | 
			
		||||
int     __rt_sigtimedwait:rt_sigtimedwait(const sigset_t *set, struct siginfo_t  *info, struct timespec_t  *timeout, size_t  sigset_size)  177
 | 
			
		||||
int     sigpending(sigset_t *)  73
 | 
			
		||||
int     signalfd4(int fd, const sigset_t *mask, size_t sizemask, int flags)  355,327,324
 | 
			
		||||
 | 
			
		||||
# sockets
 | 
			
		||||
int           socket(int, int, int)              281,-1,183
 | 
			
		||||
int           socketpair(int, int, int, int*)    288,-1,184
 | 
			
		||||
int           bind(int, struct sockaddr *, int)  282,-1,169
 | 
			
		||||
int           connect(int, struct sockaddr *, socklen_t)   283,-1,170
 | 
			
		||||
int           listen(int, int)                   284,-1,174
 | 
			
		||||
int           accept(int, struct sockaddr *, socklen_t *)  285,-1,168
 | 
			
		||||
int           getsockname(int, struct sockaddr *, socklen_t *)  286,-1,172
 | 
			
		||||
int           getpeername(int, struct sockaddr *, socklen_t *)  287,-1,171
 | 
			
		||||
int           sendto(int, const void *, size_t, int, const struct sockaddr *, socklen_t)  290,-1,180
 | 
			
		||||
int           recvfrom(int, void *, size_t, unsigned int, struct sockaddr *, socklen_t *)  292,-1,176
 | 
			
		||||
int           shutdown(int, int)  293,-1,182
 | 
			
		||||
int           setsockopt(int, int, int, const void *, socklen_t)  294,-1,181
 | 
			
		||||
int           getsockopt(int, int, int, void *, socklen_t *)    295,-1,173
 | 
			
		||||
int           sendmsg(int, const struct msghdr *, unsigned int)  296,-1,179
 | 
			
		||||
int           recvmsg(int, struct msghdr *, unsigned int)   297,-1,177
 | 
			
		||||
int           socket(int, int, int)              281,-1
 | 
			
		||||
int           socketpair(int, int, int, int*)    288,-1
 | 
			
		||||
int           bind(int, struct sockaddr *, int)  282,-1
 | 
			
		||||
int           connect(int, struct sockaddr *, socklen_t)   283,-1
 | 
			
		||||
int           listen(int, int)                   284,-1
 | 
			
		||||
int           accept(int, struct sockaddr *, socklen_t *)  285,-1
 | 
			
		||||
int           getsockname(int, struct sockaddr *, socklen_t *)  286,-1
 | 
			
		||||
int           getpeername(int, struct sockaddr *, socklen_t *)  287,-1
 | 
			
		||||
int           sendto(int, const void *, size_t, int, const struct sockaddr *, socklen_t)  290,-1
 | 
			
		||||
int           recvfrom(int, void *, size_t, unsigned int, struct sockaddr *, socklen_t *)  292,-1
 | 
			
		||||
int           shutdown(int, int)  293,-1
 | 
			
		||||
int           setsockopt(int, int, int, const void *, socklen_t)  294,-1
 | 
			
		||||
int           getsockopt(int, int, int, void *, socklen_t *)    295,-1
 | 
			
		||||
int           sendmsg(int, const struct msghdr *, unsigned int)  296,-1
 | 
			
		||||
int           recvmsg(int, struct msghdr *, unsigned int)   297,-1
 | 
			
		||||
 | 
			
		||||
# sockets for x86. These are done as an "indexed" call to socketcall syscall.
 | 
			
		||||
int           socket:socketcall:1 (int, int, int) -1,102,-1
 | 
			
		||||
@@ -261,22 +221,25 @@ int           getsockopt:socketcall:15(int, int, int, void *, socklen_t *)    -1
 | 
			
		||||
int           sendmsg:socketcall:16(int, const struct msghdr *, unsigned int)  -1,102,-1
 | 
			
		||||
int           recvmsg:socketcall:17(int, struct msghdr *, unsigned int)   -1,102,-1
 | 
			
		||||
 | 
			
		||||
# sockets for sh.
 | 
			
		||||
int           __socketcall:socketcall(int, unsigned long*) -1,-1,102
 | 
			
		||||
 | 
			
		||||
# scheduler & real-time
 | 
			
		||||
int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param)  156,156,160
 | 
			
		||||
int sched_getscheduler(pid_t pid)  157,157,161
 | 
			
		||||
int sched_yield(void)  158,158,162
 | 
			
		||||
int sched_setparam(pid_t pid, const struct sched_param *param)  154,154,158
 | 
			
		||||
int sched_getparam(pid_t pid, struct sched_param *param)  155,155,159
 | 
			
		||||
int sched_get_priority_max(int policy)  159,159,163
 | 
			
		||||
int sched_get_priority_min(int policy)  160,160,164
 | 
			
		||||
int sched_rr_get_interval(pid_t pid, struct timespec *interval)  161,161,165
 | 
			
		||||
int sched_setaffinity(pid_t pid, size_t setsize, const cpu_set_t* set) 241,241,239
 | 
			
		||||
int __sched_getaffinity:sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set)  242,242,240
 | 
			
		||||
int __getcpu:getcpu(unsigned *cpu, unsigned *node, void *unused) 345,318,312
 | 
			
		||||
int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param)  156
 | 
			
		||||
int sched_getscheduler(pid_t pid)  157
 | 
			
		||||
int sched_yield(void)  158
 | 
			
		||||
int sched_setparam(pid_t pid, const struct sched_param *param)  154
 | 
			
		||||
int sched_getparam(pid_t pid, struct sched_param *param)  155
 | 
			
		||||
int sched_get_priority_max(int policy)  159
 | 
			
		||||
int sched_get_priority_min(int policy)  160
 | 
			
		||||
int sched_rr_get_interval(pid_t pid, struct timespec *interval)  161
 | 
			
		||||
int sched_setaffinity(pid_t pid, size_t setsize, const cpu_set_t* set) 241
 | 
			
		||||
int __sched_getaffinity:sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set)  242
 | 
			
		||||
int __getcpu:getcpu(unsigned *cpu, unsigned *node, void *unused) 345,318,318
 | 
			
		||||
 | 
			
		||||
# io priorities
 | 
			
		||||
int ioprio_set(int which, int who, int ioprio) 314,289,314
 | 
			
		||||
int ioprio_get(int which, int who) 315,290,315
 | 
			
		||||
int ioprio_set(int which, int who, int ioprio) 314,289,288
 | 
			
		||||
int ioprio_get(int which, int who) 315,290,289
 | 
			
		||||
 | 
			
		||||
# other
 | 
			
		||||
int     uname(struct utsname *)  122
 | 
			
		||||
@@ -289,28 +252,23 @@ int     delete_module(const char*, unsigned int)   129
 | 
			
		||||
int     klogctl:syslog(int, char *, int)   103
 | 
			
		||||
int     sysinfo(struct sysinfo *)  116
 | 
			
		||||
int     personality(unsigned long)  136
 | 
			
		||||
long    perf_event_open(struct perf_event_attr *attr_uptr, pid_t pid, int cpu, int group_fd, unsigned long flags) 364,336,333
 | 
			
		||||
 | 
			
		||||
# futex
 | 
			
		||||
int	futex(void *, int, int, void *, void *, int) 240,240,238
 | 
			
		||||
int	futex(void *, int, int, void *, void *, int) 240
 | 
			
		||||
 | 
			
		||||
# epoll
 | 
			
		||||
int     epoll_create(int size)     250,254,248
 | 
			
		||||
int     epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)    251,255,249
 | 
			
		||||
int     epoll_wait(int epfd, struct epoll_event *events, int max, int timeout)   252,256,250
 | 
			
		||||
int     epoll_create(int size)     250,254
 | 
			
		||||
int     epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)    251,255
 | 
			
		||||
int     epoll_wait(int epfd, struct epoll_event *events, int max, int timeout)   252,256
 | 
			
		||||
 | 
			
		||||
int     inotify_init(void)      316,291,284
 | 
			
		||||
int     inotify_add_watch(int, const char *, unsigned int)  317,292,285
 | 
			
		||||
int     inotify_rm_watch(int, unsigned int)  318,293,286
 | 
			
		||||
int     inotify_init(void)      316,291,290
 | 
			
		||||
int     inotify_add_watch(int, const char *, unsigned int)  317,292,291
 | 
			
		||||
int     inotify_rm_watch(int, unsigned int)  318,293,292
 | 
			
		||||
 | 
			
		||||
int     poll(struct pollfd *, unsigned int, long)  168,168,188
 | 
			
		||||
int     poll(struct pollfd *, unsigned int, long)  168
 | 
			
		||||
 | 
			
		||||
int     eventfd:eventfd2(unsigned int, int)  356,328,325
 | 
			
		||||
int     eventfd:eventfd2(unsigned int, int)  356,328
 | 
			
		||||
 | 
			
		||||
# ARM-specific ARM_NR_BASE == 0x0f0000 == 983040
 | 
			
		||||
int     __set_tls:ARM_set_tls(void*)                                 983045,-1,-1
 | 
			
		||||
int     cacheflush:ARM_cacheflush(long start, long end, long flags)  983042,-1,-1
 | 
			
		||||
 | 
			
		||||
# MIPS-specific
 | 
			
		||||
int	_flush_cache:cacheflush(char *addr, const int nbytes, const int op)	-1,-1,147
 | 
			
		||||
int	syscall(int number,...) -1,-1,0
 | 
			
		||||
int     __set_tls:ARM_set_tls(void*)                                 983045,-1
 | 
			
		||||
int     cacheflush:ARM_cacheflush(long start, long end, long flags)  983042,-1
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2012 The Android Open Source Project
 | 
			
		||||
 * Copyright (C) 2008 The Android Open Source Project
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
@@ -25,8 +25,10 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
.global __get_pc
 | 
			
		||||
.type __get_pc, %function
 | 
			
		||||
 | 
			
		||||
__get_pc:
 | 
			
		||||
	mov r0, pc
 | 
			
		||||
	bx lr
 | 
			
		||||
 | 
			
		||||
__attribute__ ((visibility ("hidden")))
 | 
			
		||||
__attribute__ ((section (".data")))
 | 
			
		||||
void *__dso_handle = &__dso_handle;
 | 
			
		||||
@@ -25,10 +25,10 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
.global __get_sp
 | 
			
		||||
.type __get_sp, %function
 | 
			
		||||
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
__get_sp:
 | 
			
		||||
	mov r0, sp
 | 
			
		||||
	bx lr
 | 
			
		||||
 | 
			
		||||
ENTRY(__get_sp)
 | 
			
		||||
  mov r0, sp
 | 
			
		||||
  bx lr
 | 
			
		||||
END(__get_sp)
 | 
			
		||||
 
 | 
			
		||||
@@ -25,20 +25,27 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <asm/unistd.h>
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
// void _exit_with_stack_teardown(void* stackBase, int stackSize, int retCode)
 | 
			
		||||
@ void _exit_with_stack_teardown(void * stackBase, int stackSize, int retCode)
 | 
			
		||||
ENTRY(_exit_with_stack_teardown)
 | 
			
		||||
 | 
			
		||||
#if __ARM_EABI__
 | 
			
		||||
    mov     lr, r2
 | 
			
		||||
    ldr     r7, =__NR_munmap
 | 
			
		||||
    swi     #0              // the stack is destroyed by this call
 | 
			
		||||
    swi     #0              @ the stack is destroyed by this call
 | 
			
		||||
    mov     r0, lr
 | 
			
		||||
    ldr     r7, =__NR_exit
 | 
			
		||||
    swi     #0
 | 
			
		||||
#else
 | 
			
		||||
    mov     lr, r2
 | 
			
		||||
    swi     # __NR_munmap   @ the stack is destroyed by this call
 | 
			
		||||
    mov     r0, lr
 | 
			
		||||
    swi     # __NR_exit
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    // exit() should never return, cause a crash if it does
 | 
			
		||||
    mov     r0, #0
 | 
			
		||||
    ldr     r0, [r0]
 | 
			
		||||
    @ exit() should never return, cause a crash if it does
 | 
			
		||||
    mov		r0, #0
 | 
			
		||||
    ldr		r0, [r0]
 | 
			
		||||
END(_exit_with_stack_teardown)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,42 +0,0 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2012 The Android Open Source Project
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 *  * Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer.
 | 
			
		||||
 *  * Redistributions in binary form must reproduce the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer in
 | 
			
		||||
 *    the documentation and/or other materials provided with the
 | 
			
		||||
 *    distribution.
 | 
			
		||||
 *
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 | 
			
		||||
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 | 
			
		||||
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 | 
			
		||||
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 | 
			
		||||
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 | 
			
		||||
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 | 
			
		||||
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 | 
			
		||||
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Coding the abort function in assembly so that registers are guaranteed to
 | 
			
		||||
 * be preserved properly regardless of GCC's assumption on the "noreturn"
 | 
			
		||||
 * attribute. When the registers are not properly preserved we won't be able
 | 
			
		||||
 * to unwind the stack all the way to the bottom to fully reveal the call
 | 
			
		||||
 * sequence when the crash happens.
 | 
			
		||||
 */
 | 
			
		||||
ENTRY(abort)
 | 
			
		||||
    .save   {r3, r14}
 | 
			
		||||
    stmfd   sp!, {r3, r14}
 | 
			
		||||
    blx     PIC_SYM(_C_LABEL(__libc_android_abort), PLT)
 | 
			
		||||
END(abort)
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2012 The Android Open Source Project
 | 
			
		||||
 * Copyright (C) 2011 The Android Open Source Project
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
@@ -26,17 +26,37 @@
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef _PRIVATE_SSP_H
 | 
			
		||||
#define _PRIVATE_SSP_H
 | 
			
		||||
 | 
			
		||||
__BEGIN_DECLS
 | 
			
		||||
 | 
			
		||||
/* GCC uses this on ARM and MIPS; we use it on x86 to set the guard in TLS. */
 | 
			
		||||
extern uintptr_t __stack_chk_guard;
 | 
			
		||||
 | 
			
		||||
/* GCC calls this if a stack guard check fails. */
 | 
			
		||||
extern void __stack_chk_fail();
 | 
			
		||||
 | 
			
		||||
__END_DECLS
 | 
			
		||||
 | 
			
		||||
#ifndef CRT_LEGACY_WORKAROUND
 | 
			
		||||
	.arch armv5te
 | 
			
		||||
	.fpu softvfp
 | 
			
		||||
	.eabi_attribute 20, 1
 | 
			
		||||
	.eabi_attribute 21, 1
 | 
			
		||||
	.eabi_attribute 23, 3
 | 
			
		||||
	.eabi_attribute 24, 1
 | 
			
		||||
	.eabi_attribute 25, 1
 | 
			
		||||
	.eabi_attribute 26, 2
 | 
			
		||||
	.eabi_attribute 30, 4
 | 
			
		||||
	.eabi_attribute 18, 4
 | 
			
		||||
	.hidden	atexit
 | 
			
		||||
	.code	16
 | 
			
		||||
	.thumb_func
 | 
			
		||||
ENTRY(atexit)
 | 
			
		||||
.LFB0:
 | 
			
		||||
	.save	{r4, lr}
 | 
			
		||||
	push	{r4, lr}
 | 
			
		||||
.LCFI0:
 | 
			
		||||
	ldr	r3, .L3
 | 
			
		||||
	mov	r1, #0
 | 
			
		||||
	@ sp needed for prologue
 | 
			
		||||
.LPIC0:
 | 
			
		||||
	add	r3, pc
 | 
			
		||||
	ldr	r2, [r3]
 | 
			
		||||
	bl	__cxa_atexit
 | 
			
		||||
	pop	{r4, pc}
 | 
			
		||||
.L4:
 | 
			
		||||
	.align	2
 | 
			
		||||
.L3:
 | 
			
		||||
	.word	__dso_handle-(.LPIC0+4)
 | 
			
		||||
.LFE0:
 | 
			
		||||
END(atexit)
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										236
									
								
								libc/arch-arm/bionic/atomics_arm.S
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										236
									
								
								libc/arch-arm/bionic/atomics_arm.S
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,236 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2008 The Android Open Source Project
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 *  * Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer.
 | 
			
		||||
 *  * Redistributions in binary form must reproduce the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer in
 | 
			
		||||
 *    the documentation and/or other materials provided with the
 | 
			
		||||
 *    distribution.
 | 
			
		||||
 *
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 | 
			
		||||
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 | 
			
		||||
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 | 
			
		||||
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 | 
			
		||||
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 | 
			
		||||
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 | 
			
		||||
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 | 
			
		||||
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
#include <machine/cpu-features.h>
 | 
			
		||||
 | 
			
		||||
#define FUTEX_WAIT 0
 | 
			
		||||
#define FUTEX_WAKE 1
 | 
			
		||||
 | 
			
		||||
#if defined(__ARM_HAVE_LDREX_STREX)
 | 
			
		||||
/*
 | 
			
		||||
 * ===========================================================================
 | 
			
		||||
 *      ARMv6+ implementation
 | 
			
		||||
 * ===========================================================================
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/* r0(addr) -> r0(old) */
 | 
			
		||||
ENTRY(__atomic_dec)
 | 
			
		||||
    mov     r1, r0                      @ copy addr so we don't clobber it
 | 
			
		||||
1:  ldrex   r0, [r1]                    @ load current value into r0
 | 
			
		||||
    sub     r2, r0, #1                  @ generate new value into r2
 | 
			
		||||
    strex   r3, r2, [r1]                @ try to store new value; result in r3
 | 
			
		||||
    cmp     r3, #0                      @ success?
 | 
			
		||||
    bxeq    lr                          @ yes, return
 | 
			
		||||
    b       1b                          @ no, retry
 | 
			
		||||
END(__atomic_dec)
 | 
			
		||||
 | 
			
		||||
/* r0(addr) -> r0(old) */
 | 
			
		||||
ENTRY(__atomic_inc)
 | 
			
		||||
    mov     r1, r0
 | 
			
		||||
1:  ldrex   r0, [r1]
 | 
			
		||||
    add     r2, r0, #1
 | 
			
		||||
    strex   r3, r2, [r1]
 | 
			
		||||
    cmp     r3, #0
 | 
			
		||||
    bxeq    lr
 | 
			
		||||
    b       1b
 | 
			
		||||
END(__atomic_inc)
 | 
			
		||||
 | 
			
		||||
/* r0(old) r1(new) r2(addr) -> r0(zero_if_succeeded) */
 | 
			
		||||
ENTRY(__atomic_cmpxchg)
 | 
			
		||||
1:  mov     ip, #2                      @ ip=2 means "new != old"
 | 
			
		||||
    ldrex   r3, [r2]                    @ load current value into r3
 | 
			
		||||
    teq     r0, r3                      @ new == old?
 | 
			
		||||
    strexeq ip, r1, [r2]                @ yes, try store, set ip to 0 or 1
 | 
			
		||||
    teq     ip, #1                      @ strex failure?
 | 
			
		||||
    beq     1b                          @ yes, retry
 | 
			
		||||
    mov     r0, ip                      @ return 0 on success, 2 on failure
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__atomic_cmpxchg)
 | 
			
		||||
 | 
			
		||||
/* r0(new) r1(addr) -> r0(old) */
 | 
			
		||||
ENTRY(__atomic_swap)
 | 
			
		||||
1:  ldrex   r2, [r1]
 | 
			
		||||
    strex   r3, r0, [r1]
 | 
			
		||||
    teq     r3, #0
 | 
			
		||||
    bne     1b
 | 
			
		||||
    mov     r0, r2
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__atomic_swap)
 | 
			
		||||
 | 
			
		||||
#else /*not defined __ARM_HAVE_LDREX_STREX*/
 | 
			
		||||
/*
 | 
			
		||||
 * ===========================================================================
 | 
			
		||||
 *      Pre-ARMv6 implementation
 | 
			
		||||
 * ===========================================================================
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
    /* int __kernel_cmpxchg(int oldval, int newval, int* ptr) */
 | 
			
		||||
    .equ    kernel_cmpxchg, 0xFFFF0FC0
 | 
			
		||||
    .equ    kernel_atomic_base, 0xFFFF0FFF
 | 
			
		||||
 | 
			
		||||
/* r0(addr) -> r0(old) */
 | 
			
		||||
ENTRY(__atomic_dec)
 | 
			
		||||
    .save {r4, lr}
 | 
			
		||||
    stmdb   sp!, {r4, lr}
 | 
			
		||||
    mov     r2, r0
 | 
			
		||||
1: @ atomic_dec
 | 
			
		||||
    ldr     r0, [r2]
 | 
			
		||||
    mov     r3, #kernel_atomic_base
 | 
			
		||||
    add     lr, pc, #4
 | 
			
		||||
    sub     r1, r0, #1
 | 
			
		||||
    add     pc, r3, #(kernel_cmpxchg - kernel_atomic_base)
 | 
			
		||||
    bcc     1b
 | 
			
		||||
    add     r0, r1, #1
 | 
			
		||||
    ldmia   sp!, {r4, lr}
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__atomic_dec)
 | 
			
		||||
 | 
			
		||||
/* r0(addr) -> r0(old) */
 | 
			
		||||
ENTRY(__atomic_inc)
 | 
			
		||||
    .save {r4, lr}
 | 
			
		||||
    stmdb   sp!, {r4, lr}
 | 
			
		||||
    mov     r2, r0
 | 
			
		||||
1: @ atomic_inc
 | 
			
		||||
    ldr     r0, [r2]
 | 
			
		||||
    mov     r3, #kernel_atomic_base
 | 
			
		||||
    add     lr, pc, #4
 | 
			
		||||
    add     r1, r0, #1
 | 
			
		||||
    add     pc, r3, #(kernel_cmpxchg - kernel_atomic_base)
 | 
			
		||||
    bcc     1b
 | 
			
		||||
    sub     r0, r1, #1
 | 
			
		||||
    ldmia   sp!, {r4, lr}
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__atomic_inc)
 | 
			
		||||
 | 
			
		||||
/* r0(old) r1(new) r2(addr) -> r0(zero_if_succeeded) */
 | 
			
		||||
ENTRY(__atomic_cmpxchg)
 | 
			
		||||
    .save {r4, lr}
 | 
			
		||||
    stmdb   sp!, {r4, lr}
 | 
			
		||||
    mov     r4, r0          /* r4 = save oldvalue */
 | 
			
		||||
1: @ atomic_cmpxchg
 | 
			
		||||
    mov     r3, #kernel_atomic_base
 | 
			
		||||
    add     lr, pc, #4
 | 
			
		||||
    mov     r0, r4          /* r0 = oldvalue */
 | 
			
		||||
    add     pc, r3, #(kernel_cmpxchg - kernel_atomic_base)
 | 
			
		||||
    bcs     2f              /* swap was made. we're good, return. */
 | 
			
		||||
    ldr     r3, [r2]        /* swap not made, see if it's because *ptr!=oldvalue */
 | 
			
		||||
    cmp     r3, r4
 | 
			
		||||
    beq     1b
 | 
			
		||||
2: @ atomic_cmpxchg
 | 
			
		||||
    ldmia   sp!, {r4, lr}
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__atomic_cmpxchg)
 | 
			
		||||
 | 
			
		||||
/* r0(new) r1(addr) -> r0(old) */
 | 
			
		||||
ENTRY(__atomic_swap)
 | 
			
		||||
    swp     r0, r0, [r1]
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__atomic_swap)
 | 
			
		||||
 | 
			
		||||
#endif /*not defined __ARM_HAVE_LDREX_STREX*/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/* __futex_wait(*ftx, val, *timespec) */
 | 
			
		||||
/* __futex_wake(*ftx, counter) */
 | 
			
		||||
/* __futex_syscall3(*ftx, op, val) */
 | 
			
		||||
/* __futex_syscall4(*ftx, op, val, *timespec) */
 | 
			
		||||
 | 
			
		||||
.global __futex_wait
 | 
			
		||||
.type __futex_wait, %function
 | 
			
		||||
 | 
			
		||||
.global __futex_wake
 | 
			
		||||
.type __futex_wake, %function
 | 
			
		||||
 | 
			
		||||
.global __futex_syscall3
 | 
			
		||||
.type __futex_syscall3, %function
 | 
			
		||||
 | 
			
		||||
.global __futex_syscall4
 | 
			
		||||
.type __futex_syscall4, %function
 | 
			
		||||
 | 
			
		||||
#if __ARM_EABI__
 | 
			
		||||
 | 
			
		||||
ENTRY(__futex_syscall3)
 | 
			
		||||
    stmdb   sp!, {r4, r7}
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_futex
 | 
			
		||||
    swi     #0
 | 
			
		||||
    ldmia   sp!, {r4, r7}
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__futex_syscall3)
 | 
			
		||||
 | 
			
		||||
ENTRY(__futex_wait)
 | 
			
		||||
    stmdb   sp!, {r4, r7}
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    mov     r3, r2
 | 
			
		||||
    mov     r2, r1
 | 
			
		||||
    mov     r1, #FUTEX_WAIT
 | 
			
		||||
    ldr     r7, =__NR_futex
 | 
			
		||||
    swi     #0
 | 
			
		||||
    ldmia   sp!, {r4, r7}
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__futex_wait)
 | 
			
		||||
 | 
			
		||||
ENTRY(__futex_wake)
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmdb   sp!, {r4, r7}
 | 
			
		||||
    mov     r2, r1
 | 
			
		||||
    mov     r1, #FUTEX_WAKE
 | 
			
		||||
    ldr     r7, =__NR_futex
 | 
			
		||||
    swi     #0
 | 
			
		||||
    ldmia   sp!, {r4, r7}
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__futex_wake)
 | 
			
		||||
 | 
			
		||||
#else
 | 
			
		||||
 | 
			
		||||
ENTRY(__futex_syscall3)
 | 
			
		||||
    swi     #__NR_futex
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__futex_syscall3)
 | 
			
		||||
 | 
			
		||||
ENTRY(__futex_wait)
 | 
			
		||||
    mov     r3, r2
 | 
			
		||||
    mov     r2, r1
 | 
			
		||||
    mov     r1, #FUTEX_WAIT
 | 
			
		||||
    swi     #__NR_futex
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__futex_wait)
 | 
			
		||||
 | 
			
		||||
ENTRY(__futex_wake)
 | 
			
		||||
    mov     r2, r1
 | 
			
		||||
    mov     r1, #FUTEX_WAKE
 | 
			
		||||
    swi     #__NR_futex
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__futex_wake)
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
ENTRY(__futex_syscall4)
 | 
			
		||||
    b __futex_syscall3
 | 
			
		||||
END(__futex_syscall4)
 | 
			
		||||
@@ -1,87 +0,0 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2011 The Android Open Source Project
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 *  * Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer.
 | 
			
		||||
 *  * Redistributions in binary form must reproduce the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer in
 | 
			
		||||
 *    the documentation and/or other materials provided with the
 | 
			
		||||
 *    distribution.
 | 
			
		||||
 *
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 | 
			
		||||
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 | 
			
		||||
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 | 
			
		||||
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 | 
			
		||||
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 | 
			
		||||
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 | 
			
		||||
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 | 
			
		||||
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/* The purpose of this file is to export a small set of atomic-related
 | 
			
		||||
 * functions from the C library, to ensure binary ABI compatibility for
 | 
			
		||||
 * the NDK.
 | 
			
		||||
 *
 | 
			
		||||
 * These functions were initially exposed by the NDK through <sys/atomics.h>,
 | 
			
		||||
 * which was unfortunate because their implementation didn't provide any
 | 
			
		||||
 * memory barriers at all.
 | 
			
		||||
 *
 | 
			
		||||
 * This wasn't a problem for the platform code that used them, because it
 | 
			
		||||
 * used explicit barrier instructions around them. On the other hand, it means
 | 
			
		||||
 * that any NDK-generated machine code that linked against them would not
 | 
			
		||||
 * perform correctly when running on multi-core devices.
 | 
			
		||||
 *
 | 
			
		||||
 * To fix this, the platform code was first modified to not use any of these
 | 
			
		||||
 * functions (everything is now inlined through assembly statements, see
 | 
			
		||||
 * libc/private/bionic_arm_inline.h and the headers it includes.
 | 
			
		||||
 *
 | 
			
		||||
 * The functions here are thus only for the benefit of NDK applications,
 | 
			
		||||
 * and now includes full memory barriers to prevent any random memory ordering
 | 
			
		||||
 * issue from cropping.
 | 
			
		||||
 *
 | 
			
		||||
 * Note that we also provide an updated <sys/atomics.h> header that defines
 | 
			
		||||
 * always_inlined versions of the functions that use the GCC builtin
 | 
			
		||||
 * intrinsics to perform the same thing.
 | 
			
		||||
 *
 | 
			
		||||
 * NOTE: There is no need for a similar file for non-ARM platforms.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/* DO NOT INCLUDE <sys/atomics.h> HERE ! */
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
__atomic_cmpxchg(int old, int _new, volatile int *ptr)
 | 
			
		||||
{
 | 
			
		||||
    /* We must return 0 on success */
 | 
			
		||||
    return __sync_val_compare_and_swap(ptr, old, _new) != old;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
__atomic_swap(int _new, volatile int *ptr)
 | 
			
		||||
{
 | 
			
		||||
    int prev;
 | 
			
		||||
    do {
 | 
			
		||||
        prev = *ptr;
 | 
			
		||||
    } while (__sync_val_compare_and_swap(ptr, prev, _new) != prev);
 | 
			
		||||
    return prev;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
__atomic_dec(volatile int *ptr)
 | 
			
		||||
{
 | 
			
		||||
  return __sync_fetch_and_sub (ptr, 1);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
__atomic_inc(volatile int *ptr)
 | 
			
		||||
{
 | 
			
		||||
  return __sync_fetch_and_add (ptr, 1);
 | 
			
		||||
}
 | 
			
		||||
@@ -25,39 +25,49 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
 | 
			
		||||
// int  __pthread_clone(int (*fn)(void*), void* child_stack, int flags, void* arg);
 | 
			
		||||
ENTRY(__pthread_clone)
 | 
			
		||||
    # Copy the args onto the new stack.
 | 
			
		||||
    stmdb r1!, {r0, r3}
 | 
			
		||||
    @ insert the args onto the new stack
 | 
			
		||||
    str     r0, [r1, #-4]
 | 
			
		||||
    str     r3, [r1, #-8]
 | 
			
		||||
 | 
			
		||||
    @ do the system call
 | 
			
		||||
    @ get flags
 | 
			
		||||
 | 
			
		||||
    # The sys_clone system call only takes two arguments: 'flags' and 'child_stack'.
 | 
			
		||||
    # 'child_stack' is already in r1, but we need to move 'flags' into position.
 | 
			
		||||
    mov     r0, r2
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
 | 
			
		||||
    # System call.
 | 
			
		||||
    @ new sp is already in r1
 | 
			
		||||
 | 
			
		||||
#if __ARM_EABI__
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_clone
 | 
			
		||||
    swi     #0
 | 
			
		||||
#else
 | 
			
		||||
    swi     #__NR_clone
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    beq     1f
 | 
			
		||||
 | 
			
		||||
    # In parent, reload saved registers then either exit or set errno.
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
#if __ARM_EABI__
 | 
			
		||||
    ldmnefd sp!, {r4, r7}
 | 
			
		||||
#endif
 | 
			
		||||
    blt     __error
 | 
			
		||||
    bxne    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 | 
			
		||||
1:  # The child.
 | 
			
		||||
    # pick the function arg and call address off the stack and jump
 | 
			
		||||
    # to the C __thread_entry function which does some setup and then
 | 
			
		||||
    # calls the thread's start function
 | 
			
		||||
    pop     {r0, r1}
 | 
			
		||||
    # __thread_entry needs the TLS pointer
 | 
			
		||||
    mov     r2, sp
 | 
			
		||||
 | 
			
		||||
    @ pick the function arg and call address off the stack and jump
 | 
			
		||||
    @ to the C __thread_entry function which does some setup and then
 | 
			
		||||
    @ calls the thread's start function
 | 
			
		||||
 | 
			
		||||
    ldr     r0, [sp, #-4]
 | 
			
		||||
    ldr     r1, [sp, #-8]
 | 
			
		||||
    mov     r2, sp			@ __thread_entry needs the TLS pointer
 | 
			
		||||
    b       __thread_entry
 | 
			
		||||
 | 
			
		||||
__error:
 | 
			
		||||
    mov     r0, #-1
 | 
			
		||||
    bx      lr
 | 
			
		||||
END(__pthread_clone)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -68,8 +78,8 @@ END(__pthread_clone)
 | 
			
		||||
    #                          pid_t *pid, void *tls, pid_t *ctid,
 | 
			
		||||
    #                          int  (*fn)(void *), void* arg );
 | 
			
		||||
    #
 | 
			
		||||
    # NOTE: This is not the same signature as the glibc
 | 
			
		||||
    #       __clone function. Placing 'fn' and 'arg'
 | 
			
		||||
    # NOTE: This is not the same signature than the GLibc
 | 
			
		||||
    #       __clone function here !! Placing 'fn' and 'arg'
 | 
			
		||||
    #       at the end of the parameter list makes the
 | 
			
		||||
    #       implementation much simpler.
 | 
			
		||||
    #
 | 
			
		||||
@@ -88,18 +98,20 @@ ENTRY(__bionic_clone)
 | 
			
		||||
    str     r5, [r1, #-4]
 | 
			
		||||
    str     r6, [r1, #-8]
 | 
			
		||||
 | 
			
		||||
    # System call
 | 
			
		||||
    # system call
 | 
			
		||||
    ldr     r7, =__NR_clone
 | 
			
		||||
    swi     #0
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    beq     1f
 | 
			
		||||
 | 
			
		||||
    # In the parent, reload saved registers then either exit or set errno.
 | 
			
		||||
    # in parent, reload saved registers
 | 
			
		||||
    # then either exit or error
 | 
			
		||||
    #
 | 
			
		||||
    ldmfd   sp!, {r4, r5, r6, r7}
 | 
			
		||||
    bxne    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 | 
			
		||||
1:  # The child.
 | 
			
		||||
1:  # in the child - pick arguments
 | 
			
		||||
    ldr    r0, [sp, #-4]
 | 
			
		||||
    ldr    r1, [sp, #-8]
 | 
			
		||||
    b      __bionic_clone_entry
 | 
			
		||||
 
 | 
			
		||||
@@ -1,53 +0,0 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2012 The Android Open Source Project
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 *  * Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer.
 | 
			
		||||
 *  * Redistributions in binary form must reproduce the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer in
 | 
			
		||||
 *    the documentation and/or other materials provided with the
 | 
			
		||||
 *    distribution.
 | 
			
		||||
 *
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 | 
			
		||||
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 | 
			
		||||
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 | 
			
		||||
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 | 
			
		||||
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 | 
			
		||||
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 | 
			
		||||
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 | 
			
		||||
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include "../../bionic/libc_init_common.h"
 | 
			
		||||
#include <stddef.h>
 | 
			
		||||
#include <stdint.h>
 | 
			
		||||
 | 
			
		||||
__attribute__ ((section (".preinit_array")))
 | 
			
		||||
void (*__PREINIT_ARRAY__)(void) = (void (*)(void)) -1;
 | 
			
		||||
 | 
			
		||||
__attribute__ ((section (".init_array")))
 | 
			
		||||
void (*__INIT_ARRAY__)(void) = (void (*)(void)) -1;
 | 
			
		||||
 | 
			
		||||
__attribute__ ((section (".fini_array")))
 | 
			
		||||
void (*__FINI_ARRAY__)(void) = (void (*)(void)) -1;
 | 
			
		||||
 | 
			
		||||
__LIBC_HIDDEN__ void _start() {
 | 
			
		||||
  structors_array_t array;
 | 
			
		||||
  array.preinit_array = &__PREINIT_ARRAY__;
 | 
			
		||||
  array.init_array = &__INIT_ARRAY__;
 | 
			
		||||
  array.fini_array = &__FINI_ARRAY__;
 | 
			
		||||
 | 
			
		||||
  void* raw_args = (void*) ((uintptr_t) __builtin_frame_address(0) + sizeof(void*));
 | 
			
		||||
  __libc_init(raw_args, NULL, &main, &array);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#include "__dso_handle.h"
 | 
			
		||||
#include "atexit.h"
 | 
			
		||||
@@ -25,70 +25,64 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
	.text
 | 
			
		||||
	.align 4
 | 
			
		||||
	.type _start,#function
 | 
			
		||||
	.globl _start
 | 
			
		||||
 | 
			
		||||
# this is the small startup code that is first run when
 | 
			
		||||
# any executable that is dynamically-linked with Bionic
 | 
			
		||||
# runs.
 | 
			
		||||
#
 | 
			
		||||
# it's purpose is to call __libc_init with appropriate
 | 
			
		||||
# arguments, which are:
 | 
			
		||||
#
 | 
			
		||||
#    - the address of the raw data block setup by the Linux
 | 
			
		||||
#      kernel ELF loader
 | 
			
		||||
#
 | 
			
		||||
#    - address of an "onexit" function, not used on any
 | 
			
		||||
#      platform supported by Bionic
 | 
			
		||||
#
 | 
			
		||||
#    - address of the "main" function of the program. We
 | 
			
		||||
#      can't hard-code it in the adr pseudo instruction
 | 
			
		||||
#      so we use a tiny trampoline that will get relocated
 | 
			
		||||
#      by the dynamic linker before this code runs
 | 
			
		||||
#
 | 
			
		||||
#    - address of the constructor list
 | 
			
		||||
#
 | 
			
		||||
_start:	
 | 
			
		||||
	mov	r0, sp
 | 
			
		||||
	mov	r1, #0
 | 
			
		||||
	adr r2, 0f
 | 
			
		||||
	adr r3, 1f
 | 
			
		||||
	b	__libc_init
 | 
			
		||||
 | 
			
		||||
0:  b   main
 | 
			
		||||
 | 
			
		||||
1:  .long   __PREINIT_ARRAY__
 | 
			
		||||
    .long   __INIT_ARRAY__
 | 
			
		||||
    .long   __FINI_ARRAY__
 | 
			
		||||
    .long   __CTOR_LIST__
 | 
			
		||||
 | 
			
		||||
	.section .preinit_array, "aw"
 | 
			
		||||
	.globl __PREINIT_ARRAY__
 | 
			
		||||
__PREINIT_ARRAY__:
 | 
			
		||||
	.long -1
 | 
			
		||||
 | 
			
		||||
	.section .init_array, "aw"
 | 
			
		||||
	.type __INIT_ARRAY__, @object
 | 
			
		||||
	.globl __INIT_ARRAY__
 | 
			
		||||
__INIT_ARRAY__:
 | 
			
		||||
	.long -1
 | 
			
		||||
 | 
			
		||||
	.section .fini_array, "aw"
 | 
			
		||||
	.type __FINI_ARRAY__, @object
 | 
			
		||||
	.globl __FINI_ARRAY__
 | 
			
		||||
__FINI_ARRAY__:
 | 
			
		||||
	.long -1
 | 
			
		||||
	.long __do_global_dtors_aux
 | 
			
		||||
 | 
			
		||||
	.abicalls
 | 
			
		||||
	.text
 | 
			
		||||
	.align	2
 | 
			
		||||
	.set	nomips16
 | 
			
		||||
	.ent	__do_global_dtors_aux
 | 
			
		||||
	.type	__do_global_dtors_aux, @function
 | 
			
		||||
__do_global_dtors_aux:
 | 
			
		||||
	.frame	$sp,32,$31		# vars= 0, regs= 1/0, args= 16, gp= 8
 | 
			
		||||
	.mask	0x80000000,-4
 | 
			
		||||
	.fmask	0x00000000,0
 | 
			
		||||
	.set	noreorder
 | 
			
		||||
	.cpload	$25
 | 
			
		||||
	.set	nomacro
 | 
			
		||||
	addiu	$sp,$sp,-32
 | 
			
		||||
	sw	$31,28($sp)
 | 
			
		||||
	.cprestore	16
 | 
			
		||||
	lw	$2,%got(completed.1269)($28)
 | 
			
		||||
	lbu	$2,%lo(completed.1269)($2)
 | 
			
		||||
	bne	$2,$0,$L8
 | 
			
		||||
	nop
 | 
			
		||||
	.section .ctors, "aw"
 | 
			
		||||
	.globl __CTOR_LIST__
 | 
			
		||||
__CTOR_LIST__:
 | 
			
		||||
	.long -1
 | 
			
		||||
 | 
			
		||||
$L4:
 | 
			
		||||
	lw	$2,%got(__cxa_finalize)($28)
 | 
			
		||||
	beq	$2,$0,$L6
 | 
			
		||||
	nop
 | 
			
		||||
 | 
			
		||||
	lw	$2,%got(__dso_handle)($28)
 | 
			
		||||
	lw	$4,0($2)
 | 
			
		||||
	lw	$25,%call16(__cxa_finalize)($28)
 | 
			
		||||
	.reloc	1f,R_MIPS_JALR,__cxa_finalize
 | 
			
		||||
1:	jalr	$25
 | 
			
		||||
	nop
 | 
			
		||||
 | 
			
		||||
	lw	$28,16($sp)
 | 
			
		||||
$L6:
 | 
			
		||||
	lw	$2,%got(completed.1269)($28)
 | 
			
		||||
	li	$3,1			# 0x1
 | 
			
		||||
	sb	$3,%lo(completed.1269)($2)
 | 
			
		||||
$L8:
 | 
			
		||||
	lw	$31,28($sp)
 | 
			
		||||
	addiu	$sp,$sp,32
 | 
			
		||||
	j	$31
 | 
			
		||||
	nop
 | 
			
		||||
 | 
			
		||||
	.set	macro
 | 
			
		||||
	.set	reorder
 | 
			
		||||
	.end	__do_global_dtors_aux
 | 
			
		||||
	.size	__do_global_dtors_aux, .-__do_global_dtors_aux
 | 
			
		||||
	.local	completed.1269
 | 
			
		||||
	.comm	completed.1269,1,1
 | 
			
		||||
	.weak	__cxa_finalize
 | 
			
		||||
 | 
			
		||||
#include "__dso_handle_so.S"
 | 
			
		||||
#include "__dso_handle.S"
 | 
			
		||||
#include "atexit.S"
 | 
			
		||||
@@ -25,27 +25,37 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
/* unlike our auto-generated syscall stubs, this code saves lr
 | 
			
		||||
   on the stack, as well as a few other registers. this makes
 | 
			
		||||
   our stack unwinder happy, when we generate debug stack
 | 
			
		||||
   traces after the C library or other parts of the system
 | 
			
		||||
   abort due to a fatal runtime error (e.g. detection
 | 
			
		||||
   of a corrupted malloc heap).
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
# Implement static C++ destructors when the shared
 | 
			
		||||
# library is unloaded through dlclose().
 | 
			
		||||
#
 | 
			
		||||
# A call to this function must be the first entry
 | 
			
		||||
# in the .fini_array. See 3.3.5.3.C of C++ ABI
 | 
			
		||||
# standard.
 | 
			
		||||
#
 | 
			
		||||
__on_dlclose:
 | 
			
		||||
        adr     r0, 0f
 | 
			
		||||
        ldr     r0, [r0]
 | 
			
		||||
        b       __cxa_finalize
 | 
			
		||||
 | 
			
		||||
#ifndef __NR_tgkill
 | 
			
		||||
#define __NR_tgkill  268
 | 
			
		||||
0:
 | 
			
		||||
        .long   __dso_handle
 | 
			
		||||
 | 
			
		||||
	.section .init_array, "aw"
 | 
			
		||||
	.globl __INIT_ARRAY__
 | 
			
		||||
__INIT_ARRAY__:
 | 
			
		||||
	.long -1
 | 
			
		||||
 | 
			
		||||
        .section .fini_array, "aw"
 | 
			
		||||
        .globl __FINI_ARRAY__
 | 
			
		||||
__FINI_ARRAY__:
 | 
			
		||||
        .long -1
 | 
			
		||||
        .long __on_dlclose
 | 
			
		||||
 | 
			
		||||
#ifdef CRT_LEGACY_WORKAROUND
 | 
			
		||||
#include "__dso_handle.S"
 | 
			
		||||
#else
 | 
			
		||||
#include "__dso_handle_so.S"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
ENTRY(tgkill)
 | 
			
		||||
    stmfd   sp!, {r4-r7, ip, lr}
 | 
			
		||||
    ldr     r7, =__NR_tgkill
 | 
			
		||||
    swi     #0
 | 
			
		||||
    ldmfd   sp!, {r4-r7, ip, lr}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
END(tgkill)
 | 
			
		||||
#include "atexit.S"
 | 
			
		||||
@@ -1,58 +0,0 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2012 The Android Open Source Project
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 *  * Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer.
 | 
			
		||||
 *  * Redistributions in binary form must reproduce the above copyright
 | 
			
		||||
 *    notice, this list of conditions and the following disclaimer in
 | 
			
		||||
 *    the documentation and/or other materials provided with the
 | 
			
		||||
 *    distribution.
 | 
			
		||||
 *
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 | 
			
		||||
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 | 
			
		||||
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 | 
			
		||||
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 | 
			
		||||
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 | 
			
		||||
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 | 
			
		||||
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 | 
			
		||||
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
extern void __cxa_finalize(void *);
 | 
			
		||||
extern void *__dso_handle;
 | 
			
		||||
 | 
			
		||||
__attribute__((visibility("hidden"),destructor))
 | 
			
		||||
void __on_dlclose() {
 | 
			
		||||
  __cxa_finalize(&__dso_handle);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* CRT_LEGACY_WORKAROUND should only be defined when building
 | 
			
		||||
 * this file as part of the platform's C library.
 | 
			
		||||
 *
 | 
			
		||||
 * The C library already defines a function named 'atexit()'
 | 
			
		||||
 * for backwards compatibility with older NDK-generated binaries.
 | 
			
		||||
 *
 | 
			
		||||
 * For newer ones, 'atexit' is actually embedded in the C
 | 
			
		||||
 * runtime objects that are linked into the final ELF
 | 
			
		||||
 * binary (shared library or executable), and will call
 | 
			
		||||
 * __cxa_atexit() in order to un-register any atexit()
 | 
			
		||||
 * handler when a library is unloaded.
 | 
			
		||||
 *
 | 
			
		||||
 * This function must be global *and* hidden. Only the
 | 
			
		||||
 * code inside the same ELF binary should be able to access it.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifdef CRT_LEGACY_WORKAROUND
 | 
			
		||||
#include "__dso_handle.h"
 | 
			
		||||
#else
 | 
			
		||||
#include "__dso_handle_so.h"
 | 
			
		||||
#include "atexit.h"
 | 
			
		||||
#endif
 | 
			
		||||
@@ -27,8 +27,7 @@
 | 
			
		||||
 */
 | 
			
		||||
	.text
 | 
			
		||||
	.align 4
 | 
			
		||||
	.type __start,@function
 | 
			
		||||
	.globl __start
 | 
			
		||||
	.type _start,#function
 | 
			
		||||
	.globl _start
 | 
			
		||||
 | 
			
		||||
# this is the small startup code that is first run when
 | 
			
		||||
@@ -44,103 +43,47 @@
 | 
			
		||||
#    - address of an "onexit" function, not used on any
 | 
			
		||||
#      platform supported by Bionic
 | 
			
		||||
#
 | 
			
		||||
#    - address of the "main" function of the program.
 | 
			
		||||
#    - address of the "main" function of the program. We
 | 
			
		||||
#      can't hard-code it in the adr pseudo instruction
 | 
			
		||||
#      so we use a tiny trampoline that will get relocated
 | 
			
		||||
#      by the dynamic linker before this code runs
 | 
			
		||||
#
 | 
			
		||||
#    - address of the constructor list
 | 
			
		||||
#
 | 
			
		||||
_start:	
 | 
			
		||||
	mov	r0, sp
 | 
			
		||||
	mov	r1, #0
 | 
			
		||||
	adr r2, 0f
 | 
			
		||||
	adr r3, 1f
 | 
			
		||||
	b	__libc_init
 | 
			
		||||
 | 
			
		||||
	.ent	__start
 | 
			
		||||
__start:	
 | 
			
		||||
_start:
 | 
			
		||||
	bal	1f
 | 
			
		||||
1:
 | 
			
		||||
	.set	noreorder
 | 
			
		||||
	.cpload	$ra
 | 
			
		||||
	.set	reorder
 | 
			
		||||
0:  b   main
 | 
			
		||||
 | 
			
		||||
	move	$a0, $sp
 | 
			
		||||
	move	$a1, $0
 | 
			
		||||
	la	$a2, main
 | 
			
		||||
	la	$a3, 1f
 | 
			
		||||
	subu	$sp, 32
 | 
			
		||||
	la	$t9, __libc_init
 | 
			
		||||
	j	$t9
 | 
			
		||||
	.end	__start
 | 
			
		||||
 | 
			
		||||
1:	.long	__PREINIT_ARRAY__
 | 
			
		||||
	.long	__INIT_ARRAY__
 | 
			
		||||
	.long	__FINI_ARRAY__
 | 
			
		||||
1:  .long   __PREINIT_ARRAY__
 | 
			
		||||
    .long   __INIT_ARRAY__
 | 
			
		||||
    .long   __FINI_ARRAY__
 | 
			
		||||
    .long   __CTOR_LIST__
 | 
			
		||||
 | 
			
		||||
	.section .preinit_array, "aw"
 | 
			
		||||
	.type __PREINIT_ARRAY__, @object
 | 
			
		||||
	.globl __PREINIT_ARRAY__
 | 
			
		||||
__PREINIT_ARRAY__:
 | 
			
		||||
	.long -1
 | 
			
		||||
 | 
			
		||||
	.section .init_array, "aw"
 | 
			
		||||
	.type __INIT_ARRAY__, @object
 | 
			
		||||
	.globl __INIT_ARRAY__
 | 
			
		||||
__INIT_ARRAY__:
 | 
			
		||||
	.long -1
 | 
			
		||||
 | 
			
		||||
	.section .fini_array, "aw"
 | 
			
		||||
	.type __FINI_ARRAY__, @object
 | 
			
		||||
	.globl __FINI_ARRAY__
 | 
			
		||||
__FINI_ARRAY__:
 | 
			
		||||
	.long -1
 | 
			
		||||
	.long __do_global_dtors_aux
 | 
			
		||||
 | 
			
		||||
	.abicalls
 | 
			
		||||
	.text
 | 
			
		||||
	.align	2
 | 
			
		||||
	.set	nomips16
 | 
			
		||||
	.ent	__do_global_dtors_aux
 | 
			
		||||
	.type	__do_global_dtors_aux, @function
 | 
			
		||||
__do_global_dtors_aux:
 | 
			
		||||
	.frame	$sp,32,$31		# vars= 0, regs= 1/0, args= 16, gp= 8
 | 
			
		||||
	.mask	0x80000000,-4
 | 
			
		||||
	.fmask	0x00000000,0
 | 
			
		||||
	.set	noreorder
 | 
			
		||||
	.cpload	$25
 | 
			
		||||
	.set	nomacro
 | 
			
		||||
	addiu	$sp,$sp,-32
 | 
			
		||||
	sw	$31,28($sp)
 | 
			
		||||
	.cprestore	16
 | 
			
		||||
	lw	$2,%got(completed.1269)($28)
 | 
			
		||||
	lbu	$2,%lo(completed.1269)($2)
 | 
			
		||||
	bne	$2,$0,$L8
 | 
			
		||||
	nop
 | 
			
		||||
	.section .ctors, "aw"
 | 
			
		||||
	.globl __CTOR_LIST__
 | 
			
		||||
__CTOR_LIST__:
 | 
			
		||||
	.long -1
 | 
			
		||||
 | 
			
		||||
$L4:
 | 
			
		||||
	lw	$2,%got(__cxa_finalize)($28)
 | 
			
		||||
	beq	$2,$0,$L6
 | 
			
		||||
	nop
 | 
			
		||||
 | 
			
		||||
	lw	$2,%got(__dso_handle)($28)
 | 
			
		||||
	lw	$4,0($2)
 | 
			
		||||
	lw	$25,%call16(__cxa_finalize)($28)
 | 
			
		||||
	.reloc	1f,R_MIPS_JALR,__cxa_finalize
 | 
			
		||||
1:	jalr	$25
 | 
			
		||||
	nop
 | 
			
		||||
 | 
			
		||||
	lw	$28,16($sp)
 | 
			
		||||
$L6:
 | 
			
		||||
	lw	$2,%got(completed.1269)($28)
 | 
			
		||||
	li	$3,1			# 0x1
 | 
			
		||||
	sb	$3,%lo(completed.1269)($2)
 | 
			
		||||
$L8:
 | 
			
		||||
	lw	$31,28($sp)
 | 
			
		||||
	addiu	$sp,$sp,32
 | 
			
		||||
	j	$31
 | 
			
		||||
	nop
 | 
			
		||||
 | 
			
		||||
	.set	macro
 | 
			
		||||
	.set	reorder
 | 
			
		||||
	.end	__do_global_dtors_aux
 | 
			
		||||
	.size	__do_global_dtors_aux, .-__do_global_dtors_aux
 | 
			
		||||
	.local	completed.1269
 | 
			
		||||
	.comm	completed.1269,1,1
 | 
			
		||||
	.weak	__cxa_finalize
 | 
			
		||||
 | 
			
		||||
#include "__dso_handle.S"
 | 
			
		||||
#include "atexit.S"
 | 
			
		||||
@@ -35,6 +35,6 @@
 | 
			
		||||
	.section .fini_array, "aw"
 | 
			
		||||
	.long 0
 | 
			
		||||
 | 
			
		||||
#if defined(__linux__) && defined(__ELF__)
 | 
			
		||||
	.section .note.GNU-stack,"",%progbits
 | 
			
		||||
#endif
 | 
			
		||||
	.section .ctors, "aw"
 | 
			
		||||
	.long 0
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -26,6 +26,13 @@
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#if defined(__linux__) && defined(__ELF__)
 | 
			
		||||
	.section .note.GNU-stack,"",%progbits
 | 
			
		||||
#endif
 | 
			
		||||
/* This is the same than crtend.S except that a shared library
 | 
			
		||||
 * cannot have a .preinit_array
 | 
			
		||||
 */
 | 
			
		||||
	
 | 
			
		||||
	.section .init_array, "aw"
 | 
			
		||||
	.long 0
 | 
			
		||||
 | 
			
		||||
	.section .fini_array, "aw"
 | 
			
		||||
	.long 0
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -30,6 +30,22 @@
 | 
			
		||||
 | 
			
		||||
extern int  __cxa_atexit(void (*)(void*), void*, void* );
 | 
			
		||||
 | 
			
		||||
/* Temporary hack: this variable should not be part of the C library
 | 
			
		||||
 * itself, but placed in the .bss section of each executable or
 | 
			
		||||
 * shared library instead.
 | 
			
		||||
 *
 | 
			
		||||
 * We keep it here temporarily until the build system has been
 | 
			
		||||
 * modified properly to use crtbegin_so.S and crtend_so.S when
 | 
			
		||||
 * generating shared libraries.
 | 
			
		||||
 *
 | 
			
		||||
 * It must be a 'weak' symbol to avoid conflicts with the definitions
 | 
			
		||||
 * that have been moved to crtbegin_static.S and crtbegin_dynamic.S
 | 
			
		||||
 *
 | 
			
		||||
 * For the record, it is used for static C++ object construction
 | 
			
		||||
 * and destruction. See http://www.codesourcery.com/public/cxx-abi/abi.html#dso-dtor
 | 
			
		||||
 */
 | 
			
		||||
void* __attribute__((weak)) __dso_handle;
 | 
			
		||||
 | 
			
		||||
/* The "C++ ABI for ARM" document states that static C++ constructors,
 | 
			
		||||
 * which are called from the .init_array, should manually call
 | 
			
		||||
 * __aeabi_atexit() to register static destructors explicitely.
 | 
			
		||||
 
 | 
			
		||||
@@ -25,8 +25,12 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
typedef long unsigned int *_Unwind_Ptr;
 | 
			
		||||
 | 
			
		||||
#include <link.h>
 | 
			
		||||
/* Stubbed out in libdl and defined in the dynamic linker.
 | 
			
		||||
 * Same semantics as __gnu_Unwind_Find_exidx().
 | 
			
		||||
 */
 | 
			
		||||
extern _Unwind_Ptr dl_unwind_find_exidx(_Unwind_Ptr pc, int *pcount);
 | 
			
		||||
 | 
			
		||||
/* For a given PC, find the .so that it belongs to.
 | 
			
		||||
 * Returns the base address of the .ARM.exidx section
 | 
			
		||||
 
 | 
			
		||||
@@ -25,8 +25,7 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <link.h>
 | 
			
		||||
typedef long unsigned int *_Unwind_Ptr;
 | 
			
		||||
 | 
			
		||||
/* Find the .ARM.exidx section (which in the case of a static executable
 | 
			
		||||
 * can be identified through its start and end symbols), and return its
 | 
			
		||||
 
 | 
			
		||||
@@ -66,7 +66,7 @@
 | 
			
		||||
 * any native shared library generated with it should now be safe from that
 | 
			
		||||
 * problem. On the other hand, existing shared libraries distributed with
 | 
			
		||||
 * applications that were generated with a previous version of the NDK
 | 
			
		||||
 * still need all 1.5/1.6 helper functions in libc.so and libm.so
 | 
			
		||||
 * still need all 1.5/1.6 helper functions in libc.so and libn.so
 | 
			
		||||
 *
 | 
			
		||||
 * After 3.2, the toolchain was updated again, adding __aeabi_f2uiz to the
 | 
			
		||||
 * list of requirements. Technically, this is due to mis-linked NDK libraries
 | 
			
		||||
@@ -110,12 +110,9 @@
 | 
			
		||||
    XX(__aeabi_fsub)         \
 | 
			
		||||
    XX(__aeabi_i2d)          \
 | 
			
		||||
    XX(__aeabi_i2f)          \
 | 
			
		||||
    XX(__aeabi_idiv)         \
 | 
			
		||||
    XX(__aeabi_l2d)          \
 | 
			
		||||
    XX(__aeabi_l2f)          \
 | 
			
		||||
    XX(__aeabi_lmul)         \
 | 
			
		||||
    XX(__aeabi_llsl)         \
 | 
			
		||||
    XX(__aeabi_llsr)         \
 | 
			
		||||
    XX(__aeabi_ui2d)         \
 | 
			
		||||
    XX(__aeabi_ui2f)         \
 | 
			
		||||
    XX(__aeabi_ul2d)         \
 | 
			
		||||
 
 | 
			
		||||
@@ -29,92 +29,43 @@
 | 
			
		||||
#include <machine/cpu-features.h>
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#ifdef HAVE_32_BYTE_CACHE_LINE
 | 
			
		||||
#define CACHE_LINE_SIZE     32
 | 
			
		||||
#else
 | 
			
		||||
#define CACHE_LINE_SIZE     64
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Optimized memcmp() for Cortex-A9.
 | 
			
		||||
 * Optimized memcmp() for ARM9.
 | 
			
		||||
 * This would not be optimal on XScale or ARM11, where more prefetching
 | 
			
		||||
 * and use of PLD will be needed.
 | 
			
		||||
 * The 2 major optimzations here are
 | 
			
		||||
 * (1) The main loop compares 16 bytes at a time
 | 
			
		||||
 * (2) The loads are scheduled in a way they won't stall
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
ENTRY(memcmp)
 | 
			
		||||
        pld         [r0, #(CACHE_LINE_SIZE * 0)]
 | 
			
		||||
        pld         [r0, #(CACHE_LINE_SIZE * 1)]
 | 
			
		||||
        PLD         (r0, #0)
 | 
			
		||||
        PLD         (r1, #0)
 | 
			
		||||
 | 
			
		||||
        /* take of the case where length is 0 or the buffers are the same */
 | 
			
		||||
        cmp         r0, r1
 | 
			
		||||
        cmpne       r2, #0
 | 
			
		||||
        moveq       r0, #0
 | 
			
		||||
        bxeq        lr
 | 
			
		||||
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 0)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 1)]
 | 
			
		||||
 | 
			
		||||
        /* make sure we have at least 8+4 bytes, this simplify things below
 | 
			
		||||
         * and avoid some overhead for small blocks
 | 
			
		||||
         */
 | 
			
		||||
        cmp        r2, #(8+4)
 | 
			
		||||
        bmi        10f
 | 
			
		||||
/*
 | 
			
		||||
 * Neon optimization
 | 
			
		||||
 * Comparing 32 bytes at a time
 | 
			
		||||
 */
 | 
			
		||||
#if defined(__ARM_NEON__) && defined(NEON_UNALIGNED_ACCESS)
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        blo         3f
 | 
			
		||||
 | 
			
		||||
        /* preload all the cache lines we need. */
 | 
			
		||||
        pld         [r0, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
 | 
			
		||||
1:      /* The main loop compares 32 bytes at a time */
 | 
			
		||||
        vld1.8      {d0 - d3}, [r0]!
 | 
			
		||||
        pld         [r0, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        vld1.8      {d4 - d7}, [r1]!
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
 | 
			
		||||
        /* Start subtracting the values and merge results */
 | 
			
		||||
        vsub.i8     q0, q2
 | 
			
		||||
        vsub.i8     q1, q3
 | 
			
		||||
        vorr        q2, q0, q1
 | 
			
		||||
        vorr        d4, d5
 | 
			
		||||
        vmov        r3, ip, d4
 | 
			
		||||
        /* Check if there are any differences among the 32 bytes */
 | 
			
		||||
        orrs        r3, ip
 | 
			
		||||
        bne         2f
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        bhs         1b
 | 
			
		||||
        b           3f
 | 
			
		||||
2:
 | 
			
		||||
        /* Check if the difference was in the first or last 16 bytes */
 | 
			
		||||
        sub         r0, #32
 | 
			
		||||
        vorr        d0, d1
 | 
			
		||||
        sub         r1, #32
 | 
			
		||||
        vmov        r3, ip, d0
 | 
			
		||||
        orrs        r3, ip
 | 
			
		||||
        /* if the first 16 bytes are equal, we only have to rewind 16 bytes */
 | 
			
		||||
        ittt        eq
 | 
			
		||||
        subeq       r2, #16
 | 
			
		||||
        addeq       r0, #16
 | 
			
		||||
        addeq       r1, #16
 | 
			
		||||
 | 
			
		||||
3:      /* fix-up the remaining count */
 | 
			
		||||
        add         r2, r2, #32
 | 
			
		||||
 | 
			
		||||
        cmp        r2, #(8+4)
 | 
			
		||||
        bmi        10f
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
        .save {r4, lr}
 | 
			
		||||
        /* save registers */
 | 
			
		||||
        stmfd       sp!, {r4, lr}
 | 
			
		||||
        
 | 
			
		||||
        PLD         (r0, #32)
 | 
			
		||||
        PLD         (r1, #32)
 | 
			
		||||
 | 
			
		||||
        /* since r0 hold the result, move the first source
 | 
			
		||||
         * pointer somewhere else
 | 
			
		||||
         */
 | 
			
		||||
         
 | 
			
		||||
         mov        r4, r0
 | 
			
		||||
         
 | 
			
		||||
         /* make sure we have at least 8+4 bytes, this simplify things below
 | 
			
		||||
          * and avoid some overhead for small blocks
 | 
			
		||||
          */
 | 
			
		||||
         cmp        r2, #(8+4)
 | 
			
		||||
         bmi        8f
 | 
			
		||||
        
 | 
			
		||||
        /* align first pointer to word boundary
 | 
			
		||||
         * offset = -src & 3
 | 
			
		||||
@@ -152,8 +103,8 @@ ENTRY(memcmp)
 | 
			
		||||
        subs        r2, r2, #(32 + 4)
 | 
			
		||||
        bmi         1f
 | 
			
		||||
        
 | 
			
		||||
0:      pld         [r4, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
0:      PLD         (r4, #64)
 | 
			
		||||
        PLD         (r1, #64)
 | 
			
		||||
        ldr         r0, [r4], #4
 | 
			
		||||
        ldr         lr, [r1, #4]!
 | 
			
		||||
        eors        r0, r0, ip
 | 
			
		||||
@@ -219,24 +170,12 @@ ENTRY(memcmp)
 | 
			
		||||
9:      /* restore registers and return */
 | 
			
		||||
        ldmfd       sp!, {r4, lr}
 | 
			
		||||
        bx          lr
 | 
			
		||||
 | 
			
		||||
10:     /* process less than 12 bytes */
 | 
			
		||||
        cmp         r2, #0
 | 
			
		||||
        moveq       r0, #0
 | 
			
		||||
        bxeq        lr
 | 
			
		||||
        mov         r3, r0
 | 
			
		||||
11:
 | 
			
		||||
        ldrb        r0, [r3], #1
 | 
			
		||||
        ldrb        ip, [r1], #1
 | 
			
		||||
        subs        r0, ip
 | 
			
		||||
        bxne        lr
 | 
			
		||||
        subs        r2, r2, #1
 | 
			
		||||
        bne         11b
 | 
			
		||||
        bx          lr
 | 
			
		||||
END(memcmp)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
5:      /*************** non-congruent case ***************/
 | 
			
		||||
        and         r0, r1, #3      
 | 
			
		||||
        cmp         r0, #2
 | 
			
		||||
@@ -253,8 +192,8 @@ END(memcmp)
 | 
			
		||||
        bic         r1, r1, #3
 | 
			
		||||
        ldr         lr, [r1], #4
 | 
			
		||||
 | 
			
		||||
6:      pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        pld         [r4, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
6:      PLD         (r1, #64)
 | 
			
		||||
        PLD         (r4, #64)
 | 
			
		||||
        mov         ip, lr, lsr #16
 | 
			
		||||
        ldr         lr, [r1], #4
 | 
			
		||||
        ldr         r0, [r4], #4
 | 
			
		||||
 
 | 
			
		||||
@@ -29,43 +29,31 @@
 | 
			
		||||
#include <machine/cpu-features.h>
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
 | 
			
		||||
#if defined(__ARM_NEON__) && !defined(ARCH_ARM_USE_NON_NEON_MEMCPY)
 | 
			
		||||
#if defined(__ARM_NEON__)
 | 
			
		||||
 | 
			
		||||
        .text
 | 
			
		||||
        .fpu    neon
 | 
			
		||||
 | 
			
		||||
#ifdef HAVE_32_BYTE_CACHE_LINE
 | 
			
		||||
/* a prefetch distance of 2 cache-lines */
 | 
			
		||||
#define CACHE_LINE_SIZE     32
 | 
			
		||||
#else
 | 
			
		||||
/* a prefetch distance of 4 cache-lines works best experimentally */
 | 
			
		||||
#define CACHE_LINE_SIZE     64
 | 
			
		||||
#endif
 | 
			
		||||
#define PREFETCH_DISTANCE   (CACHE_LINE_SIZE*4)
 | 
			
		||||
 | 
			
		||||
ENTRY(memcpy)
 | 
			
		||||
        .save       {r0, lr}
 | 
			
		||||
        /* start preloading as early as possible */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 0)]
 | 
			
		||||
        stmfd       sp!, {r0, lr}
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 1)]
 | 
			
		||||
 | 
			
		||||
/* If Neon supports unaligned access then remove the align code,
 | 
			
		||||
 * unless a size limit has been specified.
 | 
			
		||||
 */
 | 
			
		||||
#ifndef NEON_UNALIGNED_ACCESS
 | 
			
		||||
        /* start preloading as early as possible */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE*0)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE*1)]
 | 
			
		||||
 | 
			
		||||
        /* do we have at least 16-bytes to copy (needed for alignment below) */
 | 
			
		||||
        cmp         r2, #16
 | 
			
		||||
        blo         5f
 | 
			
		||||
 | 
			
		||||
        /* check if buffers are aligned. If so, run arm-only version */
 | 
			
		||||
        eor         r3, r0, r1
 | 
			
		||||
        ands        r3, r3, #0x3
 | 
			
		||||
        beq         11f
 | 
			
		||||
 | 
			
		||||
        /* align destination to cache-line for the write-buffer */
 | 
			
		||||
        /* align destination to half cache-line for the write-buffer */
 | 
			
		||||
        rsb         r3, r0, #0
 | 
			
		||||
        ands        r3, r3, #0xF
 | 
			
		||||
        beq         2f
 | 
			
		||||
        beq         0f
 | 
			
		||||
 | 
			
		||||
        /* copy up to 15-bytes (count in r3) */
 | 
			
		||||
        sub         r2, r2, r3
 | 
			
		||||
@@ -86,14 +74,14 @@ ENTRY(memcpy)
 | 
			
		||||
        vld1.8      {d0}, [r1]!
 | 
			
		||||
        vst1.8      {d0}, [r0, :64]!
 | 
			
		||||
2:
 | 
			
		||||
        /* preload immediately the next cache line, which we may need */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 0)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 1)]
 | 
			
		||||
 | 
			
		||||
#ifdef HAVE_32_BYTE_CACHE_LINE
 | 
			
		||||
        /* make sure we have at least 32 bytes to copy */
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        blo         4f
 | 
			
		||||
0:      /* preload immediately the next cache line, which we may need */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE*0)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE*1)]
 | 
			
		||||
 | 
			
		||||
        /* make sure we have at least 64 bytes to copy */
 | 
			
		||||
        subs        r2, r2, #64
 | 
			
		||||
        blo         2f
 | 
			
		||||
 | 
			
		||||
        /* preload all the cache lines we need.
 | 
			
		||||
         * NOTE: the number of pld below depends on PREFETCH_DISTANCE,
 | 
			
		||||
@@ -101,35 +89,17 @@ ENTRY(memcpy)
 | 
			
		||||
         * avoid the goofy code below. In practice this doesn't seem to make
 | 
			
		||||
         * a big difference.
 | 
			
		||||
         */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE*2)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE*3)]
 | 
			
		||||
        pld         [r1, #(PREFETCH_DISTANCE)]
 | 
			
		||||
 | 
			
		||||
1:      /* The main loop copies 32 bytes at a time */
 | 
			
		||||
        vld1.8      {d0  - d3},   [r1]!
 | 
			
		||||
        pld         [r1, #(PREFETCH_DISTANCE)]
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        vst1.8      {d0  - d3},   [r0, :128]!
 | 
			
		||||
        bhs         1b
 | 
			
		||||
#else
 | 
			
		||||
        /* make sure we have at least 64 bytes to copy */
 | 
			
		||||
        subs        r2, r2, #64
 | 
			
		||||
        blo         2f
 | 
			
		||||
 | 
			
		||||
        /* preload all the cache lines we need. */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 3)]
 | 
			
		||||
 | 
			
		||||
1:      /* The main loop copies 64 bytes at a time */
 | 
			
		||||
        vld1.8      {d0 - d3}, [r1]!
 | 
			
		||||
        vld1.8      {d4 - d7}, [r1]!
 | 
			
		||||
#ifdef  HAVE_32_BYTE_CACHE_LINE
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 3)]
 | 
			
		||||
#else
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 3)]
 | 
			
		||||
#endif
 | 
			
		||||
        vld1.8      {d0  - d3},   [r1]!
 | 
			
		||||
        vld1.8      {d4  - d7},   [r1]!
 | 
			
		||||
        pld         [r1, #(PREFETCH_DISTANCE)]
 | 
			
		||||
        subs        r2, r2, #64
 | 
			
		||||
        vst1.8      {d0 - d3}, [r0, :128]!
 | 
			
		||||
        vst1.8      {d4 - d7}, [r0, :128]!
 | 
			
		||||
        vst1.8      {d0  - d3},   [r0, :128]!
 | 
			
		||||
        vst1.8      {d4  - d7},   [r0, :128]!
 | 
			
		||||
        bhs         1b
 | 
			
		||||
 | 
			
		||||
2:      /* fix-up the remaining count and make sure we have >= 32 bytes left */
 | 
			
		||||
@@ -138,11 +108,11 @@ ENTRY(memcpy)
 | 
			
		||||
        blo         4f
 | 
			
		||||
 | 
			
		||||
3:      /* 32 bytes at a time. These cache lines were already preloaded */
 | 
			
		||||
        vld1.8      {d0 - d3}, [r1]!
 | 
			
		||||
        vld1.8      {d0 - d3},  [r1]!
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        vst1.8      {d0 - d3}, [r0, :128]!
 | 
			
		||||
        vst1.8      {d0 - d3},  [r0, :128]!
 | 
			
		||||
        bhs         3b
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
4:      /* less than 32 left */
 | 
			
		||||
        add         r2, r2, #32
 | 
			
		||||
        tst         r2, #0x10
 | 
			
		||||
@@ -150,6 +120,7 @@ ENTRY(memcpy)
 | 
			
		||||
        // copies 16 bytes, 128-bits aligned
 | 
			
		||||
        vld1.8      {d0, d1}, [r1]!
 | 
			
		||||
        vst1.8      {d0, d1}, [r0, :128]!
 | 
			
		||||
 | 
			
		||||
5:      /* copy up to 15-bytes (count in r2) */
 | 
			
		||||
        movs        ip, r2, lsl #29
 | 
			
		||||
        bcc         1f
 | 
			
		||||
@@ -168,164 +139,6 @@ ENTRY(memcpy)
 | 
			
		||||
 | 
			
		||||
        ldmfd       sp!, {r0, lr}
 | 
			
		||||
        bx          lr
 | 
			
		||||
 | 
			
		||||
#else   /* NEON_UNALIGNED_ACCESS */
 | 
			
		||||
 | 
			
		||||
        // Check so divider is at least 16 bytes, needed for alignment code.
 | 
			
		||||
        cmp         r2, #16
 | 
			
		||||
        blo         5f
 | 
			
		||||
 | 
			
		||||
#ifdef NEON_MEMCPY_ALIGNMENT_DIVIDER
 | 
			
		||||
        /* Check the upper size limit for Neon unaligned memory access in memcpy */
 | 
			
		||||
#if NEON_MEMCPY_ALIGNMENT_DIVIDER >= 16
 | 
			
		||||
        cmp         r2, #NEON_MEMCPY_ALIGNMENT_DIVIDER
 | 
			
		||||
        blo         3f
 | 
			
		||||
#endif
 | 
			
		||||
        /* check if buffers are aligned. If so, run arm-only version */
 | 
			
		||||
        eor         r3, r0, r1
 | 
			
		||||
        ands        r3, r3, #0x3
 | 
			
		||||
        beq         11f
 | 
			
		||||
 | 
			
		||||
        /* align destination to 16 bytes for the write-buffer */
 | 
			
		||||
        rsb         r3, r0, #0
 | 
			
		||||
        ands        r3, r3, #0xF
 | 
			
		||||
        beq         3f
 | 
			
		||||
 | 
			
		||||
        /* copy up to 15-bytes (count in r3) */
 | 
			
		||||
        sub         r2, r2, r3
 | 
			
		||||
        movs        ip, r3, lsl #31
 | 
			
		||||
        ldrmib      lr, [r1], #1
 | 
			
		||||
        strmib      lr, [r0], #1
 | 
			
		||||
        ldrcsb      ip, [r1], #1
 | 
			
		||||
        ldrcsb      lr, [r1], #1
 | 
			
		||||
        strcsb      ip, [r0], #1
 | 
			
		||||
        strcsb      lr, [r0], #1
 | 
			
		||||
        movs        ip, r3, lsl #29
 | 
			
		||||
        bge         1f
 | 
			
		||||
        // copies 4 bytes, destination 32-bits aligned
 | 
			
		||||
        vld1.32     {d0[0]}, [r1]!
 | 
			
		||||
        vst1.32     {d0[0]}, [r0, :32]!
 | 
			
		||||
1:      bcc         2f
 | 
			
		||||
        // copies 8 bytes, destination 64-bits aligned
 | 
			
		||||
        vld1.8      {d0}, [r1]!
 | 
			
		||||
        vst1.8      {d0}, [r0, :64]!
 | 
			
		||||
2:
 | 
			
		||||
        /* preload immediately the next cache line, which we may need */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 0)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 1)]
 | 
			
		||||
3:
 | 
			
		||||
#endif
 | 
			
		||||
        /* make sure we have at least 64 bytes to copy */
 | 
			
		||||
        subs        r2, r2, #64
 | 
			
		||||
        blo         2f
 | 
			
		||||
 | 
			
		||||
        /* preload all the cache lines we need */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 3)]
 | 
			
		||||
 | 
			
		||||
1:      /* The main loop copies 64 bytes at a time */
 | 
			
		||||
        vld1.8      {d0 - d3}, [r1]!
 | 
			
		||||
        vld1.8      {d4 - d7}, [r1]!
 | 
			
		||||
#ifdef  HAVE_32_BYTE_CACHE_LINE
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 3)]
 | 
			
		||||
#else
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 3)]
 | 
			
		||||
#endif
 | 
			
		||||
        subs        r2, r2, #64
 | 
			
		||||
        vst1.8      {d0 - d3}, [r0]!
 | 
			
		||||
        vst1.8      {d4 - d7}, [r0]!
 | 
			
		||||
        bhs         1b
 | 
			
		||||
 | 
			
		||||
2:      /* fix-up the remaining count and make sure we have >= 32 bytes left */
 | 
			
		||||
        add         r2, r2, #64
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        blo         4f
 | 
			
		||||
 | 
			
		||||
3:      /* 32 bytes at a time. These cache lines were already preloaded */
 | 
			
		||||
        vld1.8      {d0 - d3}, [r1]!
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        vst1.8      {d0 - d3}, [r0]!
 | 
			
		||||
        bhs         3b
 | 
			
		||||
 | 
			
		||||
4:      /* less than 32 left */
 | 
			
		||||
        add         r2, r2, #32
 | 
			
		||||
        tst         r2, #0x10
 | 
			
		||||
        beq         5f
 | 
			
		||||
        // copies 16 bytes, 128-bits aligned
 | 
			
		||||
        vld1.8      {d0, d1}, [r1]!
 | 
			
		||||
        vst1.8      {d0, d1}, [r0]!
 | 
			
		||||
5:      /* copy up to 15-bytes (count in r2) */
 | 
			
		||||
        movs        ip, r2, lsl #29
 | 
			
		||||
        bcc         1f
 | 
			
		||||
        vld1.8      {d0}, [r1]!
 | 
			
		||||
        vst1.8      {d0}, [r0]!
 | 
			
		||||
1:      bge         2f
 | 
			
		||||
        vld1.32     {d0[0]}, [r1]!
 | 
			
		||||
        vst1.32     {d0[0]}, [r0]!
 | 
			
		||||
2:      movs        ip, r2, lsl #31
 | 
			
		||||
        ldrmib      r3, [r1], #1
 | 
			
		||||
        ldrcsb      ip, [r1], #1
 | 
			
		||||
        ldrcsb      lr, [r1], #1
 | 
			
		||||
        strmib      r3, [r0], #1
 | 
			
		||||
        strcsb      ip, [r0], #1
 | 
			
		||||
        strcsb      lr, [r0], #1
 | 
			
		||||
 | 
			
		||||
        ldmfd       sp!, {r0, lr}
 | 
			
		||||
        bx          lr
 | 
			
		||||
#endif  /* NEON_UNALIGNED_ACCESS */
 | 
			
		||||
11:
 | 
			
		||||
        /* Simple arm-only copy loop to handle aligned copy operations */
 | 
			
		||||
        stmfd       sp!, {r4, r5, r6, r7, r8}
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 2)]
 | 
			
		||||
 | 
			
		||||
        /* Check alignment */
 | 
			
		||||
        rsb         r3, r1, #0
 | 
			
		||||
        ands        r3, #3
 | 
			
		||||
        beq         2f
 | 
			
		||||
 | 
			
		||||
        /* align source to 32 bits. We need to insert 2 instructions between
 | 
			
		||||
         * a ldr[b|h] and str[b|h] because byte and half-word instructions
 | 
			
		||||
         * stall 2 cycles.
 | 
			
		||||
         */
 | 
			
		||||
        movs        r12, r3, lsl #31
 | 
			
		||||
        sub         r2, r2, r3      /* we know that r3 <= r2 because r2 >= 4 */
 | 
			
		||||
        ldrmib      r3, [r1], #1
 | 
			
		||||
        ldrcsb      r4, [r1], #1
 | 
			
		||||
        ldrcsb      r5, [r1], #1
 | 
			
		||||
        strmib      r3, [r0], #1
 | 
			
		||||
        strcsb      r4, [r0], #1
 | 
			
		||||
        strcsb      r5, [r0], #1
 | 
			
		||||
2:
 | 
			
		||||
        subs        r2, #32
 | 
			
		||||
        blt         5f
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 3)]
 | 
			
		||||
3:      /* Main copy loop, copying 32 bytes at a time */
 | 
			
		||||
        pld         [r1, #(CACHE_LINE_SIZE * 4)]
 | 
			
		||||
        ldmia       r1!, {r3, r4, r5, r6, r7, r8, r12, lr}
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        stmia       r0!, {r3, r4, r5, r6, r7, r8, r12, lr}
 | 
			
		||||
        bge         3b
 | 
			
		||||
5:      /* Handle any remaining bytes */
 | 
			
		||||
        adds        r2, #32
 | 
			
		||||
        beq         6f
 | 
			
		||||
 | 
			
		||||
        movs        r12, r2, lsl #28
 | 
			
		||||
        ldmcsia     r1!, {r3, r4, r5, r6}   /* 16 bytes */
 | 
			
		||||
        ldmmiia     r1!, {r7, r8}           /*  8 bytes */
 | 
			
		||||
        stmcsia     r0!, {r3, r4, r5, r6}
 | 
			
		||||
        stmmiia     r0!, {r7, r8}
 | 
			
		||||
        movs        r12, r2, lsl #30
 | 
			
		||||
        ldrcs       r3, [r1], #4            /*  4 bytes */
 | 
			
		||||
        ldrmih      r4, [r1], #2            /*  2 bytes */
 | 
			
		||||
        strcs       r3, [r0], #4
 | 
			
		||||
        strmih      r4, [r0], #2
 | 
			
		||||
        tst         r2, #0x1
 | 
			
		||||
        ldrneb      r3, [r1]                /*  last byte  */
 | 
			
		||||
        strneb      r3, [r0]
 | 
			
		||||
6:
 | 
			
		||||
        ldmfd       sp!, {r4, r5, r6, r7, r8}
 | 
			
		||||
        ldmfd       sp!, {r0, pc}
 | 
			
		||||
END(memcpy)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -26,113 +26,23 @@
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <machine/cpu-features.h>
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
 | 
			
		||||
	
 | 
			
		||||
		/*
 | 
			
		||||
		 * Optimized memset() for ARM.
 | 
			
		||||
         *
 | 
			
		||||
         * memset() returns its first argument.
 | 
			
		||||
		 */
 | 
			
		||||
 | 
			
		||||
#if defined(__ARM_NEON__)
 | 
			
		||||
    .fpu    neon
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
	
 | 
			
		||||
ENTRY(bzero)
 | 
			
		||||
        mov     r2, r1
 | 
			
		||||
        mov     r1, #0
 | 
			
		||||
END(bzero)
 | 
			
		||||
 | 
			
		||||
ENTRY(memset)
 | 
			
		||||
#if defined(__ARM_NEON__)
 | 
			
		||||
 | 
			
		||||
#ifdef  NEON_MEMSET_DIVIDER
 | 
			
		||||
        cmp         r2, #NEON_MEMSET_DIVIDER
 | 
			
		||||
        bhi         11f
 | 
			
		||||
#endif
 | 
			
		||||
        .save       {r0}
 | 
			
		||||
        stmfd       sp!, {r0}
 | 
			
		||||
 | 
			
		||||
        vdup.8      q0, r1
 | 
			
		||||
 | 
			
		||||
#ifndef NEON_UNALIGNED_ACCESS
 | 
			
		||||
        /* do we have at least 16-bytes to write (needed for alignment below) */
 | 
			
		||||
        cmp         r2, #16
 | 
			
		||||
        blo         3f
 | 
			
		||||
 | 
			
		||||
        /* align destination to 16 bytes for the write-buffer */
 | 
			
		||||
        rsb         r3, r0, #0
 | 
			
		||||
        ands        r3, r3, #0xF
 | 
			
		||||
        beq         2f
 | 
			
		||||
 | 
			
		||||
        /* write up to 15-bytes (count in r3) */
 | 
			
		||||
        sub         r2, r2, r3
 | 
			
		||||
        movs        ip, r3, lsl #31
 | 
			
		||||
        strmib      r1, [r0], #1
 | 
			
		||||
        strcsb      r1, [r0], #1
 | 
			
		||||
        strcsb      r1, [r0], #1
 | 
			
		||||
        movs        ip, r3, lsl #29
 | 
			
		||||
        bge         1f
 | 
			
		||||
 | 
			
		||||
        // writes 4 bytes, 32-bits aligned
 | 
			
		||||
        vst1.32     {d0[0]}, [r0, :32]!
 | 
			
		||||
1:      bcc         2f
 | 
			
		||||
 | 
			
		||||
        // writes 8 bytes, 64-bits aligned
 | 
			
		||||
        vst1.8      {d0}, [r0, :64]!
 | 
			
		||||
2:
 | 
			
		||||
#endif
 | 
			
		||||
        /* make sure we have at least 32 bytes to write */
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
        blo         2f
 | 
			
		||||
        vmov        q1, q0
 | 
			
		||||
 | 
			
		||||
1:      /* The main loop writes 32 bytes at a time */
 | 
			
		||||
        subs        r2, r2, #32
 | 
			
		||||
#ifndef NEON_UNALIGNED_ACCESS
 | 
			
		||||
        vst1.8      {d0 - d3}, [r0, :128]!
 | 
			
		||||
#else
 | 
			
		||||
        vst1.8      {d0 - d3}, [r0]!
 | 
			
		||||
#endif
 | 
			
		||||
        bhs         1b
 | 
			
		||||
 | 
			
		||||
2:      /* less than 32 left */
 | 
			
		||||
        add         r2, r2, #32
 | 
			
		||||
        tst         r2, #0x10
 | 
			
		||||
        beq         3f
 | 
			
		||||
 | 
			
		||||
        // writes 16 bytes, 128-bits aligned
 | 
			
		||||
#ifndef NEON_UNALIGNED_ACCESS
 | 
			
		||||
        vst1.8      {d0, d1}, [r0, :128]!
 | 
			
		||||
#else
 | 
			
		||||
        vst1.8      {d0, d1}, [r0]!
 | 
			
		||||
#endif
 | 
			
		||||
3:      /* write up to 15-bytes (count in r2) */
 | 
			
		||||
        movs        ip, r2, lsl #29
 | 
			
		||||
        bcc         1f
 | 
			
		||||
        vst1.8      {d0}, [r0]!
 | 
			
		||||
1:      bge         2f
 | 
			
		||||
        vst1.32     {d0[0]}, [r0]!
 | 
			
		||||
2:      movs        ip, r2, lsl #31
 | 
			
		||||
        strmib      r1, [r0], #1
 | 
			
		||||
        strcsb      r1, [r0], #1
 | 
			
		||||
        strcsb      r1, [r0], #1
 | 
			
		||||
        ldmfd       sp!, {r0}
 | 
			
		||||
        bx          lr
 | 
			
		||||
11:
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
        /*
 | 
			
		||||
         * Optimized memset() for ARM.
 | 
			
		||||
         *
 | 
			
		||||
         * memset() returns its first argument.
 | 
			
		||||
         */
 | 
			
		||||
 | 
			
		||||
		/* compute the offset to align the destination
 | 
			
		||||
		 * offset = (4-(src&3))&3 = -src & 3
 | 
			
		||||
		 */
 | 
			
		||||
 | 
			
		||||
        .save       {r0, r4-r7, lr}
 | 
			
		||||
		stmfd		sp!, {r0, r4-r7, lr}
 | 
			
		||||
		rsb			r3, r0, #0
 | 
			
		||||
@@ -160,7 +70,7 @@ ENTRY(memset)
 | 
			
		||||
        mov         r5, r1
 | 
			
		||||
        mov         r6, r1
 | 
			
		||||
        mov         r7, r1
 | 
			
		||||
 | 
			
		||||
        
 | 
			
		||||
		rsb         r3, r0, #0
 | 
			
		||||
		ands		r3, r3, #0x1C
 | 
			
		||||
		beq         3f
 | 
			
		||||
@@ -168,7 +78,7 @@ ENTRY(memset)
 | 
			
		||||
		andhi		r3, r2, #0x1C
 | 
			
		||||
		sub         r2, r2, r3
 | 
			
		||||
 | 
			
		||||
		/* conditionally writes 0 to 7 words (length in r3) */
 | 
			
		||||
		/* conditionnaly writes 0 to 7 words (length in r3) */
 | 
			
		||||
		movs		r3, r3, lsl #28
 | 
			
		||||
		stmcsia		r0!, {r1, lr}
 | 
			
		||||
		stmcsia		r0!, {r1, lr}
 | 
			
		||||
@@ -185,7 +95,7 @@ ENTRY(memset)
 | 
			
		||||
        bhs         1b
 | 
			
		||||
2:      add         r2, r2, #32
 | 
			
		||||
 | 
			
		||||
		/* conditionally stores 0 to 31 bytes */
 | 
			
		||||
		/* conditionnaly stores 0 to 31 bytes */
 | 
			
		||||
		movs		r2, r2, lsl #28
 | 
			
		||||
		stmcsia		r0!, {r1,r3,r12,lr}
 | 
			
		||||
		stmmiia		r0!, {r1, lr}
 | 
			
		||||
 
 | 
			
		||||
@@ -25,21 +25,47 @@
 | 
			
		||||
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
 * SUCH DAMAGE.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(syscall)
 | 
			
		||||
 | 
			
		||||
	.text
 | 
			
		||||
	.align 4
 | 
			
		||||
	.type syscall,#function
 | 
			
		||||
	.globl syscall
 | 
			
		||||
 
 | 
			
		||||
	.text
 | 
			
		||||
	.align
 | 
			
		||||
 | 
			
		||||
#if __ARM_EABI__
 | 
			
		||||
 | 
			
		||||
syscall:
 | 
			
		||||
    mov     ip, sp
 | 
			
		||||
    stmfd   sp!, {r4, r5, r6, r7}
 | 
			
		||||
    stmfd	sp!, {r4, r5, r6, r7}
 | 
			
		||||
    mov     r7, r0
 | 
			
		||||
    mov     r0, r1
 | 
			
		||||
    mov     r1, r2
 | 
			
		||||
    mov     r2, r3
 | 
			
		||||
    ldmfd   ip, {r3, r4, r5, r6}
 | 
			
		||||
    ldmfd	ip, {r3, r4, r5, r6}
 | 
			
		||||
    swi     #0
 | 
			
		||||
    ldmfd   sp!, {r4, r5, r6, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
END(syscall)
 | 
			
		||||
 | 
			
		||||
#else
 | 
			
		||||
 | 
			
		||||
#ifndef __NR_syscall
 | 
			
		||||
#define __NR_syscall    113
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
syscall:
 | 
			
		||||
    stmfd   sp!, {r4, r5, lr}
 | 
			
		||||
    ldr     r4, [sp, #12]
 | 
			
		||||
    ldr     r5, [sp, #16]
 | 
			
		||||
    swi     __NR_syscall
 | 
			
		||||
    ldmfd   sp!, {r4, r5, lr}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -77,7 +77,7 @@
 | 
			
		||||
#endif  /* __ARM_ARCH__ */
 | 
			
		||||
#endif  /* __GNUC__ */
 | 
			
		||||
 | 
			
		||||
#if defined(__ARMEB__)
 | 
			
		||||
#ifdef __ARMEB__
 | 
			
		||||
#define _BYTE_ORDER _BIG_ENDIAN
 | 
			
		||||
#else
 | 
			
		||||
#define _BYTE_ORDER _LITTLE_ENDIAN
 | 
			
		||||
@@ -35,6 +35,17 @@
 | 
			
		||||
#ifndef _ARM__TYPES_H_
 | 
			
		||||
#define _ARM__TYPES_H_
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#if !defined(__ARM_EABI__)
 | 
			
		||||
/* the kernel defines size_t as unsigned int, but g++ wants it to be unsigned long */
 | 
			
		||||
#define _SIZE_T
 | 
			
		||||
#define _SSIZE_T
 | 
			
		||||
#define _PTRDIFF_T
 | 
			
		||||
typedef unsigned long  size_t;
 | 
			
		||||
typedef long           ssize_t;
 | 
			
		||||
typedef long           ptrdiff_t;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* 7.18.1.1 Exact-width integer types */
 | 
			
		||||
typedef	__signed char		__int8_t;
 | 
			
		||||
typedef	unsigned char		__uint8_t;
 | 
			
		||||
@@ -87,8 +98,6 @@ typedef unsigned long		__psize_t;
 | 
			
		||||
/* Standard system types */
 | 
			
		||||
typedef int			__clock_t;
 | 
			
		||||
typedef int			__clockid_t;
 | 
			
		||||
typedef double			__double_t;
 | 
			
		||||
typedef float			__float_t;
 | 
			
		||||
typedef long			__ptrdiff_t;
 | 
			
		||||
typedef	int			__time_t;
 | 
			
		||||
typedef int			__timer_t;
 | 
			
		||||
@@ -107,4 +116,10 @@ typedef	int			__rune_t;
 | 
			
		||||
typedef	void *			__wctrans_t;
 | 
			
		||||
typedef	void *			__wctype_t;
 | 
			
		||||
 | 
			
		||||
#ifdef __ARMEB__
 | 
			
		||||
#define _BYTE_ORDER _BIG_ENDIAN
 | 
			
		||||
#else
 | 
			
		||||
#define _BYTE_ORDER _LITTLE_ENDIAN
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#endif	/* _ARM__TYPES_H_ */
 | 
			
		||||
 
 | 
			
		||||
@@ -97,12 +97,6 @@
 | 
			
		||||
#define	ASENTRY_NP(y)	_ENTRY(_ASM_LABEL(y))
 | 
			
		||||
#define	ASEND(y)	_END(_ASM_LABEL(y))
 | 
			
		||||
 | 
			
		||||
#ifdef __ELF__
 | 
			
		||||
#define ENTRY_PRIVATE(y)  ENTRY(y); .hidden _C_LABEL(y)
 | 
			
		||||
#else
 | 
			
		||||
#define ENTRY_PRIVATE(y)  ENTRY(y)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define	ASMSTR		.asciz
 | 
			
		||||
 | 
			
		||||
#if defined(__ELF__) && defined(PIC)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,138 +0,0 @@
 | 
			
		||||
/*	$NetBSD: elf_machdep.h,v 1.10 2012/08/05 04:12:46 matt Exp $	*/
 | 
			
		||||
 | 
			
		||||
#ifndef _ARM_ELF_MACHDEP_H_
 | 
			
		||||
#define _ARM_ELF_MACHDEP_H_
 | 
			
		||||
 | 
			
		||||
#if defined(__ARMEB__)
 | 
			
		||||
#define ELF32_MACHDEP_ENDIANNESS	ELFDATA2MSB
 | 
			
		||||
#else
 | 
			
		||||
#define ELF32_MACHDEP_ENDIANNESS	ELFDATA2LSB
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define ELF64_MACHDEP_ENDIANNESS	XXX	/* break compilation */
 | 
			
		||||
#define ELF64_MACHDEP_ID_CASES                                          \
 | 
			
		||||
		/* no 64-bit ELF machine types supported */
 | 
			
		||||
 | 
			
		||||
/* Processor specific flags for the ELF header e_flags field.  */
 | 
			
		||||
#define EF_ARM_RELEXEC		0x00000001
 | 
			
		||||
#define EF_ARM_HASENTRY		0x00000002
 | 
			
		||||
#define EF_ARM_INTERWORK	0x00000004 /* GNU binutils 000413 */
 | 
			
		||||
#define EF_ARM_SYMSARESORTED	0x00000004 /* ARM ELF A08 */
 | 
			
		||||
#define EF_ARM_APCS_26		0x00000008 /* GNU binutils 000413 */
 | 
			
		||||
#define EF_ARM_DYNSYMSUSESEGIDX	0x00000008 /* ARM ELF B01 */
 | 
			
		||||
#define EF_ARM_APCS_FLOAT	0x00000010 /* GNU binutils 000413 */
 | 
			
		||||
#define EF_ARM_MAPSYMSFIRST	0x00000010 /* ARM ELF B01 */
 | 
			
		||||
#define EF_ARM_PIC		0x00000020
 | 
			
		||||
#define EF_ARM_ALIGN8		0x00000040 /* 8-bit structure alignment.  */
 | 
			
		||||
#define EF_ARM_NEW_ABI		0x00000080
 | 
			
		||||
#define EF_ARM_OLD_ABI		0x00000100
 | 
			
		||||
#define EF_ARM_SOFT_FLOAT	0x00000200
 | 
			
		||||
#define EF_ARM_EABIMASK		0xff000000
 | 
			
		||||
#define	EF_ARM_EABI_VER1	0x01000000
 | 
			
		||||
#define	EF_ARM_EABI_VER2	0x02000000
 | 
			
		||||
#define	EF_ARM_EABI_VER3	0x03000000
 | 
			
		||||
#define	EF_ARM_EABI_VER4	0x04000000
 | 
			
		||||
#define	EF_ARM_EABI_VER5	0x05000000
 | 
			
		||||
 | 
			
		||||
#define	ELF32_MACHDEP_ID_CASES						\
 | 
			
		||||
		case EM_ARM:						\
 | 
			
		||||
			break;
 | 
			
		||||
 | 
			
		||||
#define	ELF32_MACHDEP_ID	EM_ARM
 | 
			
		||||
 | 
			
		||||
#define ARCH_ELFSIZE		32	/* MD native binary size */
 | 
			
		||||
 | 
			
		||||
/* Processor specific relocation types */
 | 
			
		||||
 | 
			
		||||
#define R_ARM_NONE		0
 | 
			
		||||
#define R_ARM_PC24		1
 | 
			
		||||
#define R_ARM_ABS32		2
 | 
			
		||||
#define R_ARM_REL32		3
 | 
			
		||||
#define R_ARM_PC13		4
 | 
			
		||||
#define R_ARM_ABS16		5
 | 
			
		||||
#define R_ARM_ABS12		6
 | 
			
		||||
#define R_ARM_THM_ABS5		7
 | 
			
		||||
#define R_ARM_ABS8		8
 | 
			
		||||
#define R_ARM_SBREL32		9
 | 
			
		||||
#define R_ARM_THM_PC22		10
 | 
			
		||||
#define R_ARM_THM_PC8		11
 | 
			
		||||
#define R_ARM_AMP_VCALL9	12
 | 
			
		||||
#define R_ARM_SWI24		13
 | 
			
		||||
#define R_ARM_THM_SWI8		14
 | 
			
		||||
#define R_ARM_XPC25		15
 | 
			
		||||
#define R_ARM_THM_XPC22		16
 | 
			
		||||
 | 
			
		||||
/* TLS relocations */
 | 
			
		||||
#define R_ARM_TLS_DTPMOD32	17	/* ID of module containing symbol */
 | 
			
		||||
#define R_ARM_TLS_DTPOFF32	18	/* Offset in TLS block */
 | 
			
		||||
#define R_ARM_TLS_TPOFF32	19	/* Offset in static TLS block */
 | 
			
		||||
 | 
			
		||||
/* 20-31 are reserved for ARM Linux. */
 | 
			
		||||
#define R_ARM_COPY		20
 | 
			
		||||
#define R_ARM_GLOB_DAT		21
 | 
			
		||||
#define	R_ARM_JUMP_SLOT		22
 | 
			
		||||
#define R_ARM_RELATIVE		23
 | 
			
		||||
#define	R_ARM_GOTOFF		24
 | 
			
		||||
#define R_ARM_GOTPC		25
 | 
			
		||||
#define R_ARM_GOT32		26
 | 
			
		||||
#define R_ARM_PLT32		27
 | 
			
		||||
 | 
			
		||||
#define R_ARM_ALU_PCREL_7_0	32
 | 
			
		||||
#define R_ARM_ALU_PCREL_15_8	33
 | 
			
		||||
#define R_ARM_ALU_PCREL_23_15	34
 | 
			
		||||
#define R_ARM_ALU_SBREL_11_0	35
 | 
			
		||||
#define R_ARM_ALU_SBREL_19_12	36
 | 
			
		||||
#define R_ARM_ALU_SBREL_27_20	37
 | 
			
		||||
 | 
			
		||||
/* 96-111 are reserved to G++. */
 | 
			
		||||
#define R_ARM_GNU_VTENTRY	100
 | 
			
		||||
#define R_ARM_GNU_VTINHERIT	101
 | 
			
		||||
#define R_ARM_THM_PC11		102
 | 
			
		||||
#define R_ARM_THM_PC9		103
 | 
			
		||||
 | 
			
		||||
/* More TLS relocations */
 | 
			
		||||
#define R_ARM_TLS_GD32		104	/* PC-rel 32 bit for global dynamic */
 | 
			
		||||
#define R_ARM_TLS_LDM32		105	/* PC-rel 32 bit for local dynamic */
 | 
			
		||||
#define R_ARM_TLS_LDO32		106	/* 32 bit offset relative to TLS */
 | 
			
		||||
#define R_ARM_TLS_IE32		107	/* PC-rel 32 bit for GOT entry of */
 | 
			
		||||
#define R_ARM_TLS_LE32		108
 | 
			
		||||
#define R_ARM_TLS_LDO12		109
 | 
			
		||||
#define R_ARM_TLS_LE12		110
 | 
			
		||||
#define R_ARM_TLS_IE12GP	111
 | 
			
		||||
 | 
			
		||||
/* 112-127 are reserved for private experiments. */
 | 
			
		||||
 | 
			
		||||
#define R_ARM_RXPC25		249
 | 
			
		||||
#define R_ARM_RSBREL32		250
 | 
			
		||||
#define R_ARM_THM_RPC22		251
 | 
			
		||||
#define R_ARM_RREL32		252
 | 
			
		||||
#define R_ARM_RABS32		253
 | 
			
		||||
#define R_ARM_RPC24		254
 | 
			
		||||
#define R_ARM_RBASE		255
 | 
			
		||||
 | 
			
		||||
#define R_TYPE(name)		__CONCAT(R_ARM_,name)
 | 
			
		||||
 | 
			
		||||
/* Processor specific program header flags */
 | 
			
		||||
#define PF_ARM_SB		0x10000000
 | 
			
		||||
#define PF_ARM_PI		0x20000000
 | 
			
		||||
#define PF_ARM_ENTRY		0x80000000
 | 
			
		||||
 | 
			
		||||
/* Processor specific section header flags */
 | 
			
		||||
#define SHF_ENTRYSECT		0x10000000
 | 
			
		||||
#define SHF_COMDEF		0x80000000
 | 
			
		||||
 | 
			
		||||
/* Processor specific symbol types */
 | 
			
		||||
#define STT_ARM_TFUNC		STT_LOPROC
 | 
			
		||||
 | 
			
		||||
#ifdef _KERNEL
 | 
			
		||||
#ifdef ELFSIZE
 | 
			
		||||
#define	ELF_MD_PROBE_FUNC	ELFNAME2(arm_netbsd,probe)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
struct exec_package;
 | 
			
		||||
 | 
			
		||||
int arm_netbsd_elf32_probe(struct lwp *, struct exec_package *, void *, char *,
 | 
			
		||||
	vaddr_t *);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#endif /* _ARM_ELF_MACHDEP_H_ */
 | 
			
		||||
@@ -14,11 +14,9 @@ syscall_src += arch-arm/syscalls/getegid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/getresuid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/getresgid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/gettid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/readahead.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/getgroups.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/getpgid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/getppid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/getsid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/setsid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/setgid.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/__setreuid.S
 | 
			
		||||
@@ -59,8 +57,6 @@ syscall_src += arch-arm/syscalls/mprotect.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/madvise.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/mlock.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/munlock.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/mlockall.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/munlockall.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/mincore.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/__ioctl.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/readv.S
 | 
			
		||||
@@ -88,10 +84,6 @@ syscall_src += arch-arm/syscalls/mkdirat.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/fchownat.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/fchmodat.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/renameat.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/fsetxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/fgetxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/flistxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/fremovexattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/link.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/unlink.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/unlinkat.S
 | 
			
		||||
@@ -111,20 +103,10 @@ syscall_src += arch-arm/syscalls/rmdir.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/rename.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/__getcwd.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/access.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/faccessat.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/symlink.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/fchdir.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/truncate.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/setxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/lsetxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/getxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/lgetxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/listxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/llistxattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/removexattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/lremovexattr.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/__statfs64.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/unshare.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/pause.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/gettimeofday.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/settimeofday.S
 | 
			
		||||
@@ -150,7 +132,6 @@ syscall_src += arch-arm/syscalls/__rt_sigaction.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/__rt_sigprocmask.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/__rt_sigtimedwait.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/sigpending.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/signalfd4.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/socket.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/socketpair.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/bind.S
 | 
			
		||||
@@ -189,7 +170,6 @@ syscall_src += arch-arm/syscalls/delete_module.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/klogctl.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/sysinfo.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/personality.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/perf_event_open.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/futex.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/epoll_create.S
 | 
			
		||||
syscall_src += arch-arm/syscalls/epoll_ctl.S
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__brk)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_brk
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__fcntl)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fcntl
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__fcntl64)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fcntl64
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__fork)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fork
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__fstatfs64)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fstatfs64
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__getcpu)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_getcpu
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__getcwd)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_getcwd
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__getpriority)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_getpriority
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__ioctl)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_ioctl
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__open)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_open
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__openat)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_openat
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__ptrace)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_ptrace
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__reboot)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_reboot
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__rt_sigaction)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_rt_sigaction
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__rt_sigprocmask)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_rt_sigprocmask
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__rt_sigtimedwait)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_rt_sigtimedwait
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__sched_getaffinity)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_sched_getaffinity
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__set_tls)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_ARM_set_tls
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__setresuid)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_setresuid32
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__setreuid)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_setreuid32
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__setuid)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_setuid32
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__sigsuspend)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_sigsuspend
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__statfs64)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_statfs64
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__syslog)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_syslog
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__timer_create)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_timer_create
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__timer_delete)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_timer_delete
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__timer_getoverrun)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_timer_getoverrun
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__timer_gettime)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_timer_gettime
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__timer_settime)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_timer_settime
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(__wait4)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_wait4
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(_exit)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_exit_group
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(_exit_thread)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_exit
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(accept)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_accept
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(access)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_access
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(acct)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_acct
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(bind)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_bind
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(cacheflush)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_ARM_cacheflush
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(capget)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_capget
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(capset)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_capset
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(chdir)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_chdir
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(chmod)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_chmod
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(chown)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_chown32
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(chroot)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_chroot
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(clock_getres)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_clock_getres
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(clock_gettime)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_clock_gettime
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(clock_nanosleep)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_clock_nanosleep
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(clock_settime)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_clock_settime
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(close)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_close
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(connect)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_connect
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(delete_module)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_delete_module
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(dup)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_dup
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(dup2)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_dup2
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(epoll_create)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_epoll_create
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(epoll_ctl)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_epoll_ctl
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(epoll_wait)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_epoll_wait
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(eventfd)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_eventfd2
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(execve)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_execve
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
/* autogenerated by gensyscalls.py */
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(faccessat)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    ldr     r7, =__NR_faccessat
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
END(faccessat)
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(fchdir)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fchdir
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(fchmod)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fchmod
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(fchmodat)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fchmodat
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(fchown)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fchown32
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(fdatasync)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_fdatasync
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
/* autogenerated by gensyscalls.py */
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(fgetxattr)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    ldr     r7, =__NR_fgetxattr
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
END(fgetxattr)
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
/* autogenerated by gensyscalls.py */
 | 
			
		||||
#include <machine/asm.h>
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(flistxattr)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    ldr     r7, =__NR_flistxattr
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
END(flistxattr)
 | 
			
		||||
@@ -3,10 +3,11 @@
 | 
			
		||||
#include <sys/linux-syscalls.h>
 | 
			
		||||
 | 
			
		||||
ENTRY(flock)
 | 
			
		||||
    mov     ip, r7
 | 
			
		||||
    .save   {r4, r7}
 | 
			
		||||
    stmfd   sp!, {r4, r7}
 | 
			
		||||
    ldr     r7, =__NR_flock
 | 
			
		||||
    swi     #0
 | 
			
		||||
    mov     r7, ip
 | 
			
		||||
    ldmfd   sp!, {r4, r7}
 | 
			
		||||
    movs    r0, r0
 | 
			
		||||
    bxpl    lr
 | 
			
		||||
    b       __set_syscall_errno
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user