Changeset 07b39338 in mainline for uspace/lib/c/arch
- Timestamp:
- 2011-08-20T18:21:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6ab014d
- Parents:
- 0cf27ee (diff), f00af83 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/lib/c/arch
- Files:
-
- 11 edited
- 1 moved
-
abs32le/include/types.h (modified) (1 diff)
-
amd64/include/types.h (modified) (1 diff)
-
arm32/include/types.h (modified) (1 diff)
-
ia32/Makefile.common (modified) (1 diff)
-
ia32/Makefile.inc (modified) (1 diff)
-
ia32/include/types.h (modified) (1 diff)
-
ia32/src/entry.S (moved) (moved from uspace/lib/c/arch/ia32/src/entry.s ) (2 diffs)
-
ia64/include/types.h (modified) (1 diff)
-
mips32/include/types.h (modified) (1 diff)
-
mips64/include/types.h (modified) (1 diff)
-
ppc32/include/types.h (modified) (1 diff)
-
sparc64/include/types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/types.h
r0cf27ee r07b39338 53 53 typedef int32_t intptr_t; 54 54 typedef uint32_t uintptr_t; 55 typedef int32_t intptr_t; 55 56 typedef uint32_t atomic_count_t; 56 57 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/amd64/include/types.h
r0cf27ee r07b39338 53 53 typedef int64_t intptr_t; 54 54 typedef uint64_t uintptr_t; 55 typedef int64_t intptr_t; 55 56 typedef uint64_t atomic_count_t; 56 57 typedef int64_t atomic_signed_t; -
uspace/lib/c/arch/arm32/include/types.h
r0cf27ee r07b39338 54 54 typedef int32_t intptr_t; 55 55 typedef uint32_t uintptr_t; 56 typedef int32_t intptr_t; 56 57 typedef uint32_t atomic_count_t; 57 58 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/ia32/Makefile.common
r0cf27ee r07b39338 28 28 29 29 CLANG_ARCH = i386 30 ifeq ($(PROCESSOR),i486) 31 GCC_CFLAGS += -march=i486 -fno-omit-frame-pointer 32 else 30 33 GCC_CFLAGS += -march=pentium -fno-omit-frame-pointer 34 endif 31 35 32 36 ENDIANESS = LE -
uspace/lib/c/arch/ia32/Makefile.inc
r0cf27ee r07b39338 28 28 29 29 ARCH_SOURCES = \ 30 arch/$(UARCH)/src/entry. s\30 arch/$(UARCH)/src/entry.S \ 31 31 arch/$(UARCH)/src/entryjmp.s \ 32 32 arch/$(UARCH)/src/thread_entry.s \ -
uspace/lib/c/arch/ia32/include/types.h
r0cf27ee r07b39338 53 53 typedef int32_t intptr_t; 54 54 typedef uint32_t uintptr_t; 55 typedef int32_t intptr_t; 55 56 typedef uint32_t atomic_count_t; 56 57 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/ia32/src/entry.S
r0cf27ee r07b39338 46 46 mov %ax, %fs 47 47 # Do not set %gs, it contains descriptor that can see TLS 48 48 49 #ifndef PROCESSOR_i486 49 50 # Detect the mechanism used for making syscalls 50 51 movl $(INTEL_CPUID_STANDARD), %eax … … 55 56 movl $__syscall_fast, (%eax) 56 57 0: 58 #endif 57 59 # 58 60 # Create the first stack frame. -
uspace/lib/c/arch/ia64/include/types.h
r0cf27ee r07b39338 63 63 typedef int64_t intptr_t; 64 64 typedef uint64_t uintptr_t; 65 typedef int64_t intptr_t; 65 66 typedef uint64_t atomic_count_t; 66 67 typedef int64_t atomic_signed_t; -
uspace/lib/c/arch/mips32/include/types.h
r0cf27ee r07b39338 54 54 typedef int32_t intptr_t; 55 55 typedef uint32_t uintptr_t; 56 typedef int32_t intptr_t; 56 57 typedef uint32_t atomic_count_t; 57 58 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/mips64/include/types.h
r0cf27ee r07b39338 53 53 54 54 typedef uint64_t uintptr_t; 55 typedef int64_t intptr_t; 55 56 typedef uint64_t atomic_count_t; 56 57 typedef int64_t atomic_signed_t; -
uspace/lib/c/arch/ppc32/include/types.h
r0cf27ee r07b39338 53 53 typedef int32_t intptr_t; 54 54 typedef uint32_t uintptr_t; 55 typedef int32_t intptr_t; 55 56 typedef uint32_t atomic_count_t; 56 57 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/sparc64/include/types.h
r0cf27ee r07b39338 53 53 typedef int64_t intptr_t; 54 54 typedef uint64_t uintptr_t; 55 typedef int64_t intptr_t; 55 56 typedef uint64_t atomic_count_t; 56 57 typedef int64_t atomic_signed_t;
Note:
See TracChangeset
for help on using the changeset viewer.
