1. c20f862 Change ARM vfp assembly functions to use unified syntax. by Bob Wilson · 13 years ago
  2. 41ae71d Refactor DEFINE_COMPILERRT_FUNCTION. by Bob Wilson · 13 years ago
  3. 4fcc9aa Don't redeclare sr. by Joerg Sonnenberger · 13 years ago
  4. d426091 Don't redeclare sr. by Joerg Sonnenberger · 13 years ago
  5. 1ace405 Implement mulo<mode>4 for use in signed overflow checking. by Eric Christopher · 13 years ago
  6. e294935 Add some macro magic: user __USER_LABEL_PREFIX__ instead of hardcoding it for each platform by Anton Korobeynikov · 13 years ago
  7. 2918947 More fixes for missed includes by Anton Korobeynikov · 13 years ago
  8. 7d34226 Add missed include by Anton Korobeynikov · 13 years ago
  9. 94d371c Add missed files from my last commit. by Anton Korobeynikov · 13 years ago
  10. 1c5f89b Move abi bits to separate header. Force AAPCS for EABI in accordance with ARM RTABI. by Anton Korobeynikov · 13 years ago
  11. 37b97d1 Add ARM EABI function aliases to routines by Anton Korobeynikov · 13 years ago
  12. e1f95ca Make use of LOCAL_LABEL macro by Anton Korobeynikov · 13 years ago
  13. 647fc73 Get rid of darwin'isms. Provide convenient macro for assembler local lables. by Anton Korobeynikov · 13 years ago
  14. 4a3467b don't add version info for static library by Nick Kledzik · 13 years ago
  15. 7e9cd71 fix typo by Nick Kledzik · 13 years ago
  16. bb301ce <rdar://problem/9185449> update version info for arm by Nick Kledzik · 13 years ago
  17. ce750fd Revert "Split single & double comparison routines into separate implementation by Daniel Dunbar · 13 years ago
  18. fb92f4b Split single & double comparison routines into separate implementation files, by Daniel Dunbar · 13 years ago
  19. 0868ca6 compiler-rt: Split subdf3 and subsf3 out of add implementations, for by Daniel Dunbar · 13 years ago
  20. 2caeeef slight re-arrangement to maybe pick up one cycle on dual-issue ARM cores by Stephen Canon · 13 years ago
  21. 6bbe0bb Carefully written implementations of the 32-bit integer divide and modulus functions for ARM. These are still using a naive digit-by-digit algorithm, but the core loop has been carefully written. by Stephen Canon · 14 years ago
  22. 5c08099 <rdar://problem/8914924> implement udivmodsi4 and divmodsi4 for ARM by Nick Kledzik · 14 years ago
  23. ee841f4 don't compile modsi3 into an infinite loop, patch by Matt Johnson! by Chris Lattner · 14 years ago
  24. 3d40740 <rdar://problem/9091300> update Apple packaging of compiler-rt by Nick Kledzik · 14 years ago
  25. c31717b Add missing <stdint.h> to build properly on Solaris. Patch by Joakim Johansson by Nick Kledzik · 14 years ago
  26. 9ad441f license change by Howard Hinnant · 14 years ago
  27. 4d055d5 Adds an extra explicit cast to fix Bug 7931 and removes codepaths that were never used by Stephen Canon · 14 years ago
  28. dada275 add assembly implementation of modsi3 so compiler does not have to special case a - (a / b) * b optimization by Nick Kledzik · 14 years ago
  29. c41370b Fix error in rep_clz on non-LP64 targets. Patch by Christoph Gerum by Stephen Canon · 14 years ago
  30. c8c6359 Hand-tuning of single-precision soft-float comparison routines for ARM by Stephen Canon · 14 years ago
  31. 3c2c684 fix arvm5 builds by Nick Kledzik · 14 years ago
  32. 12a7d09 Initial implementation of double-precision soft-float division, moved a couple utility functions from the multiplications into the utility header by Stephen Canon · 14 years ago
  33. c9d2b05 Single-precision soft-float division by Stephen Canon · 14 years ago
  34. e735b29 Further cleanup of ARM bswap implementations, thanks to John Tytgat by Stephen Canon · 14 years ago
  35. fe22a3f Marginally smaller implementations of bswap for ARMv4, ARMv5 that avoid the need to establish a frame by Stephen Canon · 14 years ago
  36. b6d4e2e Renamed unsigned->float routines to match GCC convention by Stephen Canon · 14 years ago
  37. 455c263 ARM before armv6 did not supprt 'rev' instruction by Nick Kledzik · 14 years ago
  38. 09009c5 [unsigned] int -> float soft-float conversions for single- and double-precision by Stephen Canon · 14 years ago
  39. 0ef6213 float- and double-to-integer soft-float conversions for compiler-rt by Stephen Canon · 14 years ago
  40. 4501379 ... and one more fix to remove some warnings in the new double -> float conversion by Stephen Canon · 14 years ago
  41. 5c6d2ec Correction to previous commit which mistakenly included older versions of some files; now includes the correct LLVM license header by Stephen Canon · 14 years ago
  42. e508632 Adding soft-float comparisons, addition, subtraction, multiplication and negation by Stephen Canon · 14 years ago
  43. 2579d72 sjlj based personality requires a different name by Nick Kledzik · 14 years ago
  44. d016b38 add explicit alignment directives to assure arm code is 4-byte aligned by Nick Kledzik · 14 years ago
  45. d0d9913 add include of int_lib.h to match change to use compilerrt_abort() by Nick Kledzik · 14 years ago
  46. e7d0a5c <rdar://problem/7813254> check enable_execute_stack implementation by Nick Kledzik · 14 years ago
  47. d3d2263 Add new build option KERNEL_USE, which compiles with -mkernel and gets propogated to CFLAGS. Use this to call panic() instead of abort() when enabled. by Daniel Dunbar · 14 years ago
  48. 48f46ac Use a private compilerrt_abort() define instead of calling abort directly. by Daniel Dunbar · 14 years ago
  49. 8ed1651 add __sync_synchronize. Needed by compiler when emitting thumb1 with -fno-builtin by Nick Kledzik · 15 years ago
  50. b04c2c4 fix return type of _Unwind_Exception.exception_cleanup by Nick Kledzik · 15 years ago
  51. d057f7d Split up switch.S and save_restore_d8_d15.S to follow one function per file convention. by Daniel Dunbar · 15 years ago
  52. 6a571fb Add a VISIBILITY_HIDDEN option, which can be used to make all compiler-rt function definitions hidden/private extern. by Daniel Dunbar · 15 years ago
  53. 4c01bb7 Unbreak symbol mangling in .s files, at least for Darwin/Linux. by Daniel Dunbar · 15 years ago
  54. e136da9 Add DEFINE_COMPILERRT_PRIVATE_FUNCTION_UNMANGLED for use in .S files -- restFP and saveFP don't get USER_LABEL_PREFIX prepended for some reason. by Daniel Dunbar · 15 years ago
  55. 6db90e6 Rename subdir 'Target' variable to 'Implementation' to be less overloaded. by Daniel Dunbar · 15 years ago
  56. faf0150 Simplify subdirectory makefiles, and be more robust by checking that they define the appropriate variables. by Daniel Dunbar · 15 years ago
  57. 1f1f71b Fix copy/paste error. http://llvm.org/bugs/show_bug.cgi?id=572 by Nick Kledzik · 15 years ago
  58. 6f608d5 Use __USER_LABEL_PREFIX__ so that we don't add a _ prefix on ELF. by Rafael Espindola · 15 years ago
  59. eed1300 Fix x86/x64 on Linux, Credit to Rafael Espindola. by Edward O'Callaghan · 15 years ago
  60. c8a260c Fix DragonFly BSD define in compiler-rt. by Edward O'Callaghan · 15 years ago
  61. 670d09f add __save_vfp_d8_d15_regs and __restore_vfp_d8_d15_regs for ARM by Nick Kledzik · 15 years ago
  62. e1fa0f3 Update CMake build system with target arch source file lists. by Edward O'Callaghan · 15 years ago
  63. b4b1e8c Switch to using DEFINE_COMPILERRT_[PRIVATE_]FUNCTION to define function symbols inside .S files. by Daniel Dunbar · 15 years ago
  64. 19336a2 Add assembly.h for use in .S files. by Daniel Dunbar · 15 years ago
  65. 51c80cc Update some .S file headers. by Daniel Dunbar · 15 years ago
  66. 4467b65 Remove duplicate copy of int_lib.h, and update test script to find copy inside lib/. by Daniel Dunbar · 15 years ago
  67. b4c3b6f 1) Remove cmake-specific #define usage from the exported by Shantonu Sen · 15 years ago
  68. 92a6cf5 update make rules so libcompiler-rt can be built for armv6 the Apple way by Nick Kledzik · 15 years ago
  69. 0c61055 add support for __switch* needed for switch statements in thumb codegen by Nick Kledzik · 15 years ago
  70. 0963c9e add conversion functions and test cases for ARM by Nick Kledzik · 15 years ago
  71. 7b268dc Update cmake files for arm support hooks. by Edward O'Callaghan · 15 years ago
  72. 6e8c3ac fix typo in comment by Nick Kledzik · 15 years ago
  73. e80e978 add comparison functions for ARM by Nick Kledzik · 15 years ago
  74. d47c2cf start adding implementation of arm *vfp routines with test cases by Nick Kledzik · 15 years ago
  75. 01f9de5 Stub out structure for building armv{6,7} libs. by Daniel Dunbar · 15 years ago
  76. dc114bf Unbreak building of assembly files (broken by my .s -> .S rename). by Daniel Dunbar · 15 years ago
  77. aabd961 Fix some files that got left behind in early changeset to unnamed unions fix. Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  78. e8178e2 Add support for ellcc, Credit to Richard Pennington. by Edward O'Callaghan · 15 years ago
  79. 4e19ff6 Fix pre-processor mistake for BSDs in endianness.h by Edward O'Callaghan · 15 years ago
  80. b72794d Temporary define HAVE_SYSCONF until cmake checks are done. by Edward O'Callaghan · 15 years ago
  81. de1c6cf Fix a FIXME for configure check for HAVE_SYSCONF. by Edward O'Callaghan · 15 years ago
  82. 166b783 fix build on linux by Nuno Lopes · 15 years ago
  83. 8bf1e09 Refactor to remove un-named struct gnu extension usage. Now ISO C89 and C99 compliant. Comment trailing endifs by Edward O'Callaghan · 15 years ago
  84. 33c1347 Optimized versions now buildable on Solaris. by Edward O'Callaghan · 15 years ago
  85. bb119a4 Fix signedness warning in mprotect call, Clean up and improve endianness.h header. by Edward O'Callaghan · 15 years ago
  86. 37a6a45 Code style and Readability fixes. Credit to Craig van Vliet. by Edward O'Callaghan · 15 years ago
  87. 0898ee9 Refactor test suit endianness pre-processor code. More style and readability fixes, start labling endif's by Edward O'Callaghan · 15 years ago
  88. 1fcb40b Next batch of C++ to C comment style changes. Also improve and factor out endianness pre-processor code. by Edward O'Callaghan · 15 years ago
  89. 2bf6272 Fixup C++ style comments are not allowed in ISO C90 to classic C style. by Edward O'Callaghan · 15 years ago
  90. 0e4ad9c Start porting compiler-rt testsuit to Solaris with new build system. Fix some C++ style comments which are not allowed in ISO C90. by Edward O'Callaghan · 15 years ago
  91. df479b6 Refactor out common pre-processor code. by Edward O'Callaghan · 15 years ago
  92. 6c307f0 Fix newlinew warning in floatundidf.c , Bulkout CMake system more, complete port to AuroraUX and Solaris. by Edward O'Callaghan · 15 years ago
  93. 880cafc A few CMake formating fixes for compiler-rt. by Edward O'Callaghan · 15 years ago
  94. d904635 Initial import of CMake type build system. Just like the rest of llvm.. by Edward O'Callaghan · 15 years ago
  95. d02ea67 Misc compiler-rt fixes. Clarify neg implementations to show what is by Eli Friedman · 15 years ago
  96. f639213 Add missing include for getpagesize, and fix a typo. by Daniel Dunbar · 15 years ago
  97. 940515a Fix a Darwinism, .s files meant to be preprocessed should be named .S. by Daniel Dunbar · 15 years ago
  98. 72b5907 Use getpagesize() on non-Darwin platforms. by Daniel Dunbar · 15 years ago
  99. b3a6901 Initial import of compiler-rt. - by Daniel Dunbar · 15 years ago