Overview
Comment: | Add ASM for AMD64/Mach-O. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | runtime |
Files: | files | file ages | folders |
SHA3-256: |
965b8afeefa6355cb9ceb38bf0df3e63 |
User & Date: | js on 2012-05-12 10:22:47 |
Other Links: | branch diff | manifest | tags |
Context
2012-05-12
| ||
14:14 | Use -Wno-deprecated-objc-isa-usage if available. check-in: 482c103268 user: js tags: runtime | |
10:22 | Add ASM for AMD64/Mach-O. check-in: 965b8afeef user: js tags: runtime | |
2012-05-10
| ||
18:38 | Sequential selectors to reduce fragmentation. check-in: 3f0b9df793 user: js tags: runtime | |
Changes
Modified configure.ac from [a12f19a3e6] to [6d931bb351].
︙ | |||
213 214 215 216 217 218 219 220 221 222 223 224 225 226 | 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | + + + + + + + + + + | #endif ], [ AC_SUBST(LOOKUP_S, lookup-x86-elf.S) AC_DEFINE(OF_ASM_LOOKUP, 1, [Whether to use lookup in assembly]) ]) ]) AC_EGREP_CPP(yes, [ #if defined(__amd64__) && defined(__MACH__) yes #endif ], [ AC_SUBST(LOOKUP_S, lookup-amd64-macho.S) AC_DEFINE(OF_ASM_LOOKUP, 1, [Whether to use lookup in assembly]) ]) AS_IF([test x"$enable_seluid16" = x"yes"], [ AC_DEFINE(OF_SELUID16, 1, [Whether to use 16 bit selector UIDs]) ]) ;; "Apple runtime") |
︙ |
Added src/runtime/lookup-amd64-macho.S version [09cb0dc88d].
|