summaryrefslogtreecommitdiffstats
path: root/bridges
Commit message (Collapse)AuthorAgeFilesLines
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-0/+0
| | | | | | | | this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
* WaE: Clang unused variableCatalin Iacob2012-04-251-4/+5
|
* Port gcc3_linux_powerpc fix to gcc3_macosx_powerpcStephan Bergmann2012-04-231-3/+13
| | | | | | | This ports 84dbc4fe2547f8fc341a46d7f000e721c81e63ee "do not let gcc use registers we are setting ourselves," in the hope that it is also an improvement for Mac OS X PPC. (But the patch was applied blindly, so please revert if it makes things worse instead.)
* do not let gcc use registers we are setting ourselvesDavid Tardon2012-04-231-3/+13
| | | | gcc uses a register for the function call--and it tried r9 here...
* save register arguments firstDavid Tardon2012-04-231-8/+8
| | | | | | | | | | The "mr" stores r11 to indeterminate register (r9 in my case) before storing it into the output variable, thus overwriting one of our input arguments... This later leads to nice segfault in testtools/source/bridgetest ... I suppose there is a better way to get the variable, but I do not know it .-)
* WaE: variable 'stackptr' is uninitialized when usedTor Lillqvist2012-04-221-1/+1
|
* Fix crasher and generate PIC for iOS simulatorTor Lillqvist2012-04-155-17/+23
| | | | | | | | Had an embarrassing thinko in the assembler generation for the iOS simulator, had forgotten the $ for a literal number. While at it, make also the simulator read-only code snippet data structures position-independent. Some minor comment improvements. Bridge seems to work now on simulator.
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-065-22/+9
|
* adjust gcc3_linux_intel bridge to work with clangLuboš Luňák2012-04-043-1/+11
| | | | | Otherwise exception throwing seems to be broken. This is a partial revert of b0515ea5fa6c29faebed616ae3e0213c72d24904.
* Fixed include guard copy/paste errorStephan Bergmann2012-04-041-2/+2
|
* Adapt cpp_uno/gcc3_linux_intel to GCC 4.7Stephan Bergmann2012-04-046-135/+233
| | | | ...the same way cpp_uno/gcc3_linux_x86-64 was already adapted.
* Hack around different __cxa_* declarations in different GCC versionsStephan Bergmann2012-03-302-8/+16
|
* Missing includesStephan Bergmann2012-03-302-0/+2
|
* Adapt cpp_uno/gcc3_linux_x86-64 to GCC 4.7 cxxabi.hStephan Bergmann2012-03-303-8/+24
| | | | ...the same way cpp_uno/mingw_intel was already adapted.
* MinGW: callVirtualMethod needs same treatment as on gcc3_linux_x86_64Stephan Bergmann2012-03-305-115/+203
| | | | ...for reasons that are yet unclear to me.
* iOS simulator fix and some cosmeticsTor Lillqvist2012-03-301-8/+8
|
* alloca(3) needs stdlib.h on *BSD because there is no alloca.hRobert Nagy2012-03-291-0/+4
|
* Mark all registered as clobbered that are not saved across callStephan Bergmann2012-03-291-1/+3
|
* Make cpp_uno/gcc3_linux_x86-64 bridge work with GCC 4.7Stephan Bergmann2012-03-298-168/+233
| | | | See comment in callvirtualmethod.cxx for details.
* 2nd param of __cxa_throw is void* in GCC <= 4.6Stephan Bergmann2012-03-271-1/+1
|
* MinGW: Adapted cpp_uno bridge to GCC 4.7Stephan Bergmann2012-03-273-7/+23
| | | | | ...which incompatibly changed the calling convention of the third (dest) function pointer parameter of __cxa_throw to __thiscall.
* Revert "Field IDs on Dalvik are more unique than in JVMs"Stephan Bergmann2012-03-263-27/+1
| | | | | | | This reverts commit b5ca34fa409bc4cbeb41a84b900612e302f5b0fb. 829a9b9c1041626efb688157658c1e0e2f6e8414 "In Java, css.uno.RuntimeException is not derived from css.uno.Exception" is a better fix.
* In Java, css.uno.RuntimeException is not derived from css.uno.ExceptionStephan Bergmann2012-03-261-1/+5
| | | | | which lead to Bridge::map_to_java (jni_data.cxx) copying the Context member of RuntimeException twice, once with a fieldID for Exception, which fails on Dalvik.
* Field IDs on Dalvik are more unique than in JVMsTor Lillqvist2012-03-263-1/+27
|
* .java files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* Uniquify uno_initEnvironment and uno_ext_getMapping in the static linking caseTor Lillqvist2012-03-211-3/+7
|
* solaris/gcc: add missing standard includesJonathan Adams2012-03-162-0/+2
|
* WaE: 'exec' may be used uninitialized in this functionDavid Tardon2012-03-121-1/+1
|
* Fix compilation for simulatorTor Lillqvist2012-03-071-3/+3
|
* Make the iOS ARM code position-independentTor Lillqvist2012-03-054-33/+23
|
* Make the iOS device (ARM) stuff at least link, surely does not work yetTor Lillqvist2012-03-052-3/+120
|
* ARM bridge: fixes for passing double arguments on the stackJani Monoses2012-02-212-1/+8
|
* fix armel/armv4t buildRene Engelhard2012-02-171-0/+4
|
* ARM bridge: VFP ABI (armhf) supportJani Monoses2012-02-164-17/+142
|
* Remove unnecessary variableJani Monoses2012-02-151-29/+20
|
* Simplify code and use proper register names for linux armhfJani Monoses2012-02-151-5/+2
|
* Added READMEs for modules related to URE, with content from the wikiJosh Heidenreich2012-02-061-0/+4
|
* Some cppcheck cleaningJulien Nabet2012-02-0517-34/+0
|
* Code cleanup: ( () ) replaced by (())Alexander Bergmann2012-01-2627-183/+183
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-218-25/+29
| | | | | | | | | SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
* Use cacheflush() on AndroidTor Lillqvist2012-01-131-0/+7
|
* fix for gcc 4.7/C++11: these are not string literal operatorsDavid Tardon2012-01-111-2/+2
|
* WaE and build errors with OSL_DEBUG_LEVEL == 2Caolán McNamara2012-01-051-1/+1
|
* function component_canUnload is exportedDavid Tardon2011-12-272-2/+2
|
* only use posix_fallocate() if it's actually availableRobert Nagy2011-12-212-0/+12
|
* fix armhf build in bridgesMatthias Klose2011-12-191-2/+2
| | | | | Signed-off-by: Bjoern Michaelsen <bjoern.michaelsen@canonical.com> Signed-off-by: Caolán McNamara <caolanm@redhat.com>
* Resolves: rhbz#767708 avoid SIGBUS writing to overcommitted mmaped diskspaceStephan Bergmann2011-12-151-2/+8
|
* Fix for fdo43460 Part IV getLength to isEmptyOlivier Hallot2011-12-132-3/+3
| | | | | | | | Part IV Module basic (small fix per demand from Ivan Timofeev) binaryurp bridges
* I don't see NO_BSYMBOLIC being used anywhereTor Lillqvist2011-12-114-4/+0
|
* catch by constant referenceTakeshi Abe2011-11-307-17/+17
|