📄 readme-interworking
字号:
Arm / Thumb Interworking ========================The Cygnus GNU Pro Toolkit for the ARM7T processor supports functioncalls between code compiled for the ARM instruction set and codecompiled for the Thumb instruction set and vice versa. This documentdescribes how that interworking support operates and explains thecommand line switches that should be used in order to produce workingprograms.Note: The Cygnus GNU Pro Toolkit does not support switching betweencompiling for the ARM instruction set and the Thumb instruction seton anything other than a per file basis. There are in fact twocompletely separate compilers, one that produces ARM assemblerinstructions and one that produces Thumb assembler instructions. Thetwo compilers share the same assembler, linker and so on.1. Explicit interworking support for C and C++ files====================================================By default if a file is compiled without any special command lineswitches then the code produced will not support interworking.Provided that a program is made up entirely from object files andlibraries produced in this way and which contain either exclusivelyARM instructions or exclusively Thumb instructions then this will notmatter and a working executable will be created. If an attempt ismade to link together mixed ARM and Thumb object files and libraries,then warning messages will be produced by the linker and a non-workingexecutable will be created.In order to produce code which does support interworking it should becompiled with the -mthumb-interworkcommand line option. Provided that a program is made up entirely fromobject files and libraries built with this command line switch aworking executable will be produced, even if both ARM and Thumbinstructions are used by the various components of the program. (Nowarning messages will be produced by the linker either).Note that specifying -mthumb-interwork does result in slightly larger,slower code being produced. This is why interworking support must bespecifically enabled by a switch.2. Explicit interworking support for assembler files====================================================If assembler files are to be included into an interworking programthen the following rules must be obeyed: * Any externally visible functions must return by using the BX instruction. * Normal function calls can just use the BL instruction. The linker will automatically insert code to switch between ARM and Thumb modes as necessary. * Calls via function pointers should use the BX instruction if the call is made in ARM mode: .code 32 mov lr, pc bx rX This code sequence will not work in Thumb mode however, since the mov instruction will not set the bottom bit of the lr register. Instead a branch-and-link to the _call_via_rX functions should be used instead: .code 16 bl _call_via_rX where rX is replaced by the name of the register containing the function address. * All externally visible functions which should be entered in Thumb mode must have the .thumb_func pseudo op specified just before their entry point. eg: .code 16 .global function .thumb_func function: ...start of function.... * All assembler files must be assembled with the switch -mthumb-interwork specified on the command line. (If the file is assembled by calling gcc it will automatically pass on the -mthumb-interwork switch to the assembler, provided that it was specified on the gcc command line in the first place.) 3. Support for old, non-interworking aware code.================================================If it is necessary to link together code produced by an older,non-interworking aware compiler, or code produced by the new compilerbut without the -mthumb-interwork command line switch specified, thenthere are two command line switches that can be used to support this.The switch -mcaller-super-interworkingwill allow calls via function pointers in Thumb mode to work,regardless of whether the function pointer points to old,non-interworking aware code or not. Specifying this switch doesproduce slightly slower code however.Note: There is no switch to allow calls via function pointers in ARMmode to be handled specially. Calls via function pointers frominterworking aware ARM code to non-interworking aware ARM code workwithout any special considerations by the compiler. Calls viafunction pointers from interworking aware ARM code to non-interworkingaware Thumb code however will not work. (Actually under somecircumstances they may work, but there are no guarantees). This isbecause only the new compiler is able to produce Thumb code, and thiscompiler already has a command line switch to produce interworkingaware code.The switch -mcallee-super-interworkingwill allow non-interworking aware ARM or Thumb code to call Thumbfunctions, either directly or via function pointers. Specifying thisswitch does produce slightly larger, slower code however.Note: There is no switch to allow non-interworking aware ARM or Thumbcode to call ARM functions. There is no need for any special handlingof calls from non-interworking aware ARM code to interworking awareARM functions, they just work normally. Calls from non-interworkingaware Thumb functions to ARM code however, will not work. There is nooption to support this, since it is always possible to recompile theThumb code to be interworking aware.As an alternative to the command line switch-mcallee-super-interworking, which affects all externally visiblefunctions in a file, it is possible to specify an attribute ordeclspec for individual functions, indicating that that particularfunction should support being called by non-interworking aware code.The function should be defined like this: int __attribute__((interfacearm)) function { ... body of function ... }or int __declspec(interfacearm) function { ... body of function ... }4. Interworking support in dlltool==================================It is possible to create DLLs containing mixed ARM and Thumb code. Itis also possible to call Thumb code in a DLL from an ARM program andvice versa. It is even possible to call ARM DLLs that have been compiledwithout interworking support (say by an older version of the compiler),from Thumb programs and still have things work properly. A version of the `dlltool' program which supports the `--interwork'command line switch is needed, as well as the following specialconsiderations when building programs and DLLs:*Use `-mthumb-interwork'* When compiling files for a DLL or a program the `-mthumb-interwork' command line switch should be specified if calling between ARM and Thumb code can happen. If a program is being compiled and the mode of the DLLs that it uses is not known, then it should be assumed that interworking might occur and the switch used.*Use `-m thumb'* If the exported functions from a DLL are all Thumb encoded then the `-m thumb' command line switch should be given to dlltool when building the stubs. This will make dlltool create Thumb encoded stubs, rather than its default of ARM encoded stubs. If the DLL consists of both exported Thumb functions and exported ARM functions then the `-m thumb' switch should not be used. Instead the Thumb functions in the DLL should be compiled with the `-mcallee-super-interworking' switch, or with the `interfacearm' attribute specified on their prototypes. In this way they will be given ARM encoded prologues, which will work with the ARM encoded stubs produced by dlltool.*Use `-mcaller-super-interworking'* If it is possible for Thumb functions in a DLL to call non-interworking aware code via a function pointer, then the Thumb code must be compiled with the `-mcaller-super-interworking' command line switch. This will force the function pointer calls to use the _interwork_call_via_rX stub functions which will correctly restore Thumb mode upon return from the called function.*Link with `libgcc.a'* When the dll is built it may have to be linked with the GCC library (`libgcc.a') in order to extract the _call_via_rX functions or the _interwork_call_via_rX functions. This represents a partial redundancy since the same functions *may* be present in the application itself, but since they only take up 372 bytes this should not be too much of a consideration.*Use `--support-old-code'* When linking a program with an old DLL which does not support interworking, the `--support-old-code' command line switch to the linker should be used. This causes the linker to generate special interworking stubs which can cope with old, non-interworking aware ARM code, at the cost of generating bulkier code. The linker will still generate a warning message along the lines of: "Warning: input file XXX does not support interworking, whereas YYY does." but this can now be ignored because the --support-old-code switch has been used.5. How interworking support works=================================Switching between the ARM and Thumb instruction sets is accomplishedvia the BX instruction which takes as an argument a register name.Control is transfered to the address held in this register (with thebottom bit masked out), and if the bottom bit is set, then Thumbinstruction processing is enabled, otherwise ARM instructionprocessing is enabled.When the -mthumb-interwork command line switch is specified, gccarranges for all functions to return to their caller by using the BXinstruction. Thus provided that the return address has the bottom bitcorrectly initialized to indicate the instruction set of the caller,correct operation will ensue.When a function is called explicitly (rather than via a functionpointer), the compiler generates a BL instruction to do this. TheThumb version of the BL instruction has the special property ofsetting the bottom bit of the LR register after it has stored thereturn address into it, so that a future BX instruction will correctlyreturn the instruction after the BL instruction, in Thumb mode.The BL instruction does not change modes itself however, so if an ARMfunction is calling a Thumb function, or vice versa, it is necessaryto generate some extra instructions to handle this. This is done inthe linker when it is storing the address of the referenced functioninto the BL instruction. If the BL instruction is an ARM style BLinstruction, but the referenced function is a Thumb function, then thelinker automatically generates a calling stub that converts from ARMmode to Thumb mode, puts the address of this stub into the BLinstruction, and puts the address of the referenced function into thestub. Similarly if the BL instruction is a Thumb BL instruction, andthe referenced function is an ARM function, the linker generates astub which converts from Thumb to ARM mode, puts the address of thisstub into the BL instruction, and the address of the referencedfunction into the stub.This is why it is necessary to mark Thumb functions with the.thumb_func pseudo op when creating assembler files. This pseudo opallows the assembler to distinguish between ARM functions and Thumbfunctions. (The Thumb version of GCC automatically generates thesepseudo ops for any Thumb functions that it generates).Calls via function pointers work differently. Whenever the address ofa function is taken, the linker examines the type of the functionbeing referenced. If the function is a Thumb function, then it setsthe bottom bit of the address. Technically this makes the addressincorrect, since it is now one byte into the start of the function,but this is never a problem because: a. with interworking enabled all calls via function pointer are done using the BX instruction and this ignores the bottom bit when computing where to go to. b. the linker will always set the bottom bit when the address of the function is taken, so it is never possible to take the address of the function in two different places and then compare them and find that they are not equal.As already mentioned any call via a function pointer will use the BXinstruction (provided that interworking is enabled). The only problemwith this is computing the return address for the return from thecalled function. For ARM code this can easily be done by the codesequence: mov lr, pc bx rX(where rX is the name of the register containing the functionpointer). This code does not work for the Thumb instruction set,since the MOV instruction will not set the bottom bit of the LRregister, so that when the called function returns, it will return inARM mode not Thumb mode. Instead the compiler generates thissequence: bl _call_via_rX(again where rX is the name if the register containing the functionpointer). The special call_via_rX functions look like this: .thumb_func_call_via_r0: bx r0 nopThe BL instruction ensures that the correct return address is storedin the LR register and then the BX instruction jumps to the addressstored in the function pointer, switch modes if necessary.6. How caller-super-interworking support works==============================================When the -mcaller-super-interworking command line switch is specifiedit changes the code produced by the Thumb compiler so that all callsvia function pointers (including virtual function calls) now go via adifferent stub function. The code to call via a function pointer nowlooks like this: bl _interwork_call_via_r0Note: The compiler does not insist that r0 be used to hold thefunction address. Any register will do, and there are a suite of stubfunctions, one for each possible register. The stub functions looklike this: .code 16 .thumb_func_interwork_call_via_r0 bx pc nop .code 32 tst r0, #1 stmeqdb r13!, {lr} adreq lr, _arm_return bx r0The stub first switches to ARM mode, since it is a lot easier toperform the necessary operations using ARM instructions. It thentests the bottom bit of the register containing the address of thefunction to be called. If this bottom bit is set then the functionbeing called uses Thumb instructions and the BX instruction to comewill switch back into Thumb mode before calling this function. (Notethat it does not matter how this called function chooses to return toits caller, since the both the caller and callee are Thumb functions,and mode switching is necessary). If the function being called is anARM mode function however, the stub pushes the return address (withits bottom bit set) onto the stack, replaces the return address withthe address of the a piece of code called '_arm_return' and thenperforms a BX instruction to call the function.The '_arm_return' code looks like this: .code 32_arm_return: ldmia r13!, {r12} bx r12 .code 16It simply retrieves the return address from the stack, and thenperforms a BX operation to return to the caller and switch back intoThumb mode.7. How callee-super-interworking support works
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -