Changes in / [ac08cd9:6ab014d] in mainline
- Files:
-
- 10 added
- 21 deleted
- 35 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
rac08cd9 r6ab014d 70 70 @ "pentium4" Pentium 4 71 71 @ "pentium3" Pentium 3 72 @ "i486" i486 72 73 @ "core" Core Solo/Duo 73 74 @ "athlon_xp" Athlon XP 74 75 @ "athlon_mp" Athlon MP 75 @ "i486" i48676 76 ! [PLATFORM=ia32] PROCESSOR (choice) 77 77 … … 555 555 ! CONFIG_WRITE_CORE_FILES (n/y) 556 556 557 % Include development files (headers, libraries)558 ! [RDFMT=tmpfs|RDFMT=ext2fs] CONFIG_DEVEL_FILES (n/y)559 560 557 % Strip binaries 561 558 ! CONFIG_STRIP_BINARIES (n/y) … … 566 563 % Barebone build with essential binaries only 567 564 ! CONFIG_BAREBONE (n/y) 568 569 % Build pcc binaries570 ! CONFIG_PCC (n/y)571 572 % Build binutils binaries573 ! CONFIG_BINUTILS (n/y)574 565 575 566 % Line debugging information -
Makefile
rac08cd9 r6ab014d 26 26 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 # 28 29 # Just for this Makefile. Sub-makes will run in parallel if requested.30 .NOTPARALLEL:31 28 32 29 CSCOPE = cscope … … 69 66 # Autotool (detects compiler features) 70 67 71 autotool $(COMMON_MAKEFILE) $(COMMON_HEADER): $(CONFIG_MAKEFILE) 68 $(COMMON_MAKEFILE): autotool 69 $(COMMON_HEADER): autotool 70 71 autotool: $(CONFIG_MAKEFILE) 72 72 $(AUTOTOOL) 73 73 -[ -f $(COMMON_HEADER_PREV) ] && diff -q $(COMMON_HEADER_PREV) $(COMMON_HEADER) && mv -f $(COMMON_HEADER_PREV) $(COMMON_HEADER) … … 75 75 # Build-time configuration 76 76 77 config_default $(CONFIG_MAKEFILE) $(CONFIG_HEADER): $(CONFIG_RULES) 77 $(CONFIG_MAKEFILE): config_default 78 $(CONFIG_HEADER): config_default 79 80 config_default: $(CONFIG_RULES) 78 81 ifeq ($(HANDS_OFF),y) 79 82 $(CONFIG) $< hands-off $(PROFILE) … … 97 100 distclean: clean 98 101 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(COMMON_HEADER_PREV) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-* 99 cd ./uspace/app/binutils/; ./distclean.sh100 102 101 103 clean: -
abi/include/ipc/methods.h
rac08cd9 r6ab014d 96 96 * error is sent back to caller. Otherwise 97 97 * the call is accepted and the response is sent back. 98 * - the hash of the client task is passed to userspace 99 * (on the receiving side) as ARG4 of the call. 98 100 * - the hash of the allocated phone is passed to userspace 99 101 * (on the receiving side) as ARG5 of the call. -
boot/Makefile
rac08cd9 r6ab014d 61 61 cp "$$file" "$(DIST_PATH)/lib/" ; \ 62 62 done 63 ifeq ($(CONFIG_DEVEL_FILES), y)64 mkdir "$(DIST_PATH)/inc/c/"65 cp -r -L "$(USPACE_PATH)/lib/c/include/." "$(DIST_PATH)/inc/c/"66 cat "$(USPACE_PATH)/lib/c/arch/$(UARCH)/_link.ld" | sed 's/^STARTUP(.*)$$//g' > "$(DIST_PATH)/inc/_link.ld"67 endif68 63 for file in $(RD_APPS) ; do \ 69 64 cp "$$file" "$(DIST_PATH)/app/" ; \ … … 99 94 rm -rf $(USPACE_PATH)/dist/drv/* 100 95 rm -f $(USPACE_PATH)/dist/lib/* 101 rm -rf $(USPACE_PATH)/dist/inc/*102 96 rm -f $(USPACE_PATH)/dist/app/* 103 97 rm -f $(USPACE_PATH)/dist/cfg/net/* -
boot/Makefile.common
rac08cd9 r6ab014d 127 127 RD_LIBS = 128 128 129 ifeq ($(CONFIG_DEVEL_FILES), y)130 RD_LIBS += \131 $(USPACE_PATH)/lib/c/libc.a \132 $(USPACE_PATH)/lib/softint/libsoftint.a \133 $(USPACE_PATH)/lib/softfloat/libsoftfloat.a134 endif135 136 129 ifeq ($(CONFIG_BUILD_SHARED_LIBS), y) 137 130 RD_LIBS += \ … … 150 143 $(USPACE_PATH)/app/blkdump/blkdump \ 151 144 $(USPACE_PATH)/app/bnchmark/bnchmark \ 145 $(USPACE_PATH)/app/cc/cc \ 146 $(USPACE_PATH)/app/ccom/ccom \ 147 $(USPACE_PATH)/app/ccom/mkext/cc_mkext \ 148 $(USPACE_PATH)/app/cpp/cpp \ 152 149 $(USPACE_PATH)/app/devctl/devctl \ 153 150 $(USPACE_PATH)/app/dltest/dltest \ … … 180 177 $(USPACE_PATH)/app/websrv/websrv 181 178 182 ifeq ($(CONFIG_PCC),y)183 RD_APPS_NON_ESSENTIAL += \184 $(USPACE_PATH)/app/cc/cc \185 $(USPACE_PATH)/app/ccom/ccom \186 $(USPACE_PATH)/app/ccom/mkext/cc_mkext \187 $(USPACE_PATH)/app/cpp/cpp188 endif189 190 ifeq ($(CONFIG_BINUTILS),y)191 RD_APPS_NON_ESSENTIAL += \192 $(USPACE_PATH)/app/binutils/bin/as \193 $(USPACE_PATH)/app/binutils/bin/ld194 endif195 196 179 ifneq ($(CONFIG_BAREBONE),y) 197 180 NET_CFG = \ -
kernel/arch/amd64/include/asm.h
rac08cd9 r6ab014d 77 77 } 78 78 79 #define IO_SPACE_BOUNDARY ((void *) (64 * 1024))80 81 79 /** Byte from port 82 80 * … … 89 87 NO_TRACE static inline uint8_t pio_read_8(ioport8_t *port) 90 88 { 91 if (port < (ioport8_t *) IO_SPACE_BOUNDARY) { 92 uint8_t val; 93 asm volatile ( 94 "inb %w[port], %b[val]\n" 95 : [val] "=a" (val) 96 : [port] "d" (port) 97 ); 98 return val; 99 } else { 100 return (uint8_t) *port; 101 } 89 uint8_t val; 90 91 asm volatile ( 92 "inb %w[port], %b[val]\n" 93 : [val] "=a" (val) 94 : [port] "d" (port) 95 ); 96 97 return val; 102 98 } 103 99 … … 112 108 NO_TRACE static inline uint16_t pio_read_16(ioport16_t *port) 113 109 { 114 if (port < (ioport16_t *) IO_SPACE_BOUNDARY) { 115 uint16_t val; 116 asm volatile ( 117 "inw %w[port], %w[val]\n" 118 : [val] "=a" (val) 119 : [port] "d" (port) 120 ); 121 return val; 122 } else { 123 return (uint16_t) *port; 124 } 110 uint16_t val; 111 112 asm volatile ( 113 "inw %w[port], %w[val]\n" 114 : [val] "=a" (val) 115 : [port] "d" (port) 116 ); 117 118 return val; 125 119 } 126 120 … … 135 129 NO_TRACE static inline uint32_t pio_read_32(ioport32_t *port) 136 130 { 137 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 138 uint32_t val; 139 asm volatile ( 140 "inl %w[port], %[val]\n" 141 : [val] "=a" (val) 142 : [port] "d" (port) 143 ); 144 return val; 145 } else { 146 return (uint32_t) *port; 147 } 131 uint32_t val; 132 133 asm volatile ( 134 "inl %w[port], %[val]\n" 135 : [val] "=a" (val) 136 : [port] "d" (port) 137 ); 138 139 return val; 148 140 } 149 141 … … 158 150 NO_TRACE static inline void pio_write_8(ioport8_t *port, uint8_t val) 159 151 { 160 if (port < (ioport8_t *) IO_SPACE_BOUNDARY) { 161 asm volatile ( 162 "outb %b[val], %w[port]\n" 163 :: [val] "a" (val), [port] "d" (port) 164 ); 165 } else { 166 *port = val; 167 } 152 asm volatile ( 153 "outb %b[val], %w[port]\n" 154 :: [val] "a" (val), 155 [port] "d" (port) 156 ); 168 157 } 169 158 … … 178 167 NO_TRACE static inline void pio_write_16(ioport16_t *port, uint16_t val) 179 168 { 180 if (port < (ioport16_t *) IO_SPACE_BOUNDARY) { 181 asm volatile ( 182 "outw %w[val], %w[port]\n" 183 :: [val] "a" (val), [port] "d" (port) 184 ); 185 } else { 186 *port = val; 187 } 169 asm volatile ( 170 "outw %w[val], %w[port]\n" 171 :: [val] "a" (val), 172 [port] "d" (port) 173 ); 188 174 } 189 175 … … 198 184 NO_TRACE static inline void pio_write_32(ioport32_t *port, uint32_t val) 199 185 { 200 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 201 asm volatile ( 202 "outl %[val], %w[port]\n" 203 :: [val] "a" (val), [port] "d" (port) 204 ); 205 } else { 206 *port = val; 207 } 186 asm volatile ( 187 "outl %[val], %w[port]\n" 188 :: [val] "a" (val), 189 [port] "d" (port) 190 ); 208 191 } 209 192 -
kernel/arch/ia32/Makefile.inc
rac08cd9 r6ab014d 44 44 # 45 45 46 ifeq ($(PROCESSOR),i486)47 CMN2 = -march=i48648 endif49 50 46 ifeq ($(PROCESSOR),athlon_xp) 51 47 CMN2 = -march=athlon-xp … … 66 62 CMN2 = -march=pentium4 67 63 SUNCC_CFLAGS += -xarch=sse2 64 endif 65 66 ifeq ($(PROCESSOR),i486) 67 CMN2 = -march=i486 68 68 endif 69 69 -
kernel/arch/ia32/include/asm.h
rac08cd9 r6ab014d 101 101 GEN_WRITE_REG(dr7) 102 102 103 #define IO_SPACE_BOUNDARY ((void *) (64 * 1024))104 105 103 /** Byte to port 106 104 * … … 113 111 NO_TRACE static inline void pio_write_8(ioport8_t *port, uint8_t val) 114 112 { 115 if (port < (ioport8_t *) IO_SPACE_BOUNDARY) { 116 asm volatile ( 117 "outb %b[val], %w[port]\n" 118 :: [val] "a" (val), [port] "d" (port) 119 ); 120 } else { 121 *port = val; 122 } 113 asm volatile ( 114 "outb %b[val], %w[port]\n" 115 :: [val] "a" (val), 116 [port] "d" (port) 117 ); 123 118 } 124 119 … … 133 128 NO_TRACE static inline void pio_write_16(ioport16_t *port, uint16_t val) 134 129 { 135 if (port < (ioport16_t *) IO_SPACE_BOUNDARY) { 136 asm volatile ( 137 "outw %w[val], %w[port]\n" 138 :: [val] "a" (val), [port] "d" (port) 139 ); 140 } else { 141 *port = val; 142 } 130 asm volatile ( 131 "outw %w[val], %w[port]\n" 132 :: [val] "a" (val), 133 [port] "d" (port) 134 ); 143 135 } 144 136 … … 153 145 NO_TRACE static inline void pio_write_32(ioport32_t *port, uint32_t val) 154 146 { 155 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 156 asm volatile ( 157 "outl %[val], %w[port]\n" 158 :: [val] "a" (val), [port] "d" (port) 159 ); 160 } else { 161 *port = val; 162 } 147 asm volatile ( 148 "outl %[val], %w[port]\n" 149 :: [val] "a" (val), 150 [port] "d" (port) 151 ); 163 152 } 164 153 … … 173 162 NO_TRACE static inline uint8_t pio_read_8(ioport8_t *port) 174 163 { 175 if (((void *)port) < IO_SPACE_BOUNDARY) { 176 uint8_t val; 177 asm volatile ( 178 "inb %w[port], %b[val]\n" 179 : [val] "=a" (val) 180 : [port] "d" (port) 181 ); 182 return val; 183 } else { 184 return (uint8_t) *port; 185 } 164 uint8_t val; 165 166 asm volatile ( 167 "inb %w[port], %b[val]\n" 168 : [val] "=a" (val) 169 : [port] "d" (port) 170 ); 171 172 return val; 186 173 } 187 174 … … 196 183 NO_TRACE static inline uint16_t pio_read_16(ioport16_t *port) 197 184 { 198 if (((void *)port) < IO_SPACE_BOUNDARY) { 199 uint16_t val; 200 asm volatile ( 201 "inw %w[port], %w[val]\n" 202 : [val] "=a" (val) 203 : [port] "d" (port) 204 ); 205 return val; 206 } else { 207 return (uint16_t) *port; 208 } 185 uint16_t val; 186 187 asm volatile ( 188 "inw %w[port], %w[val]\n" 189 : [val] "=a" (val) 190 : [port] "d" (port) 191 ); 192 193 return val; 209 194 } 210 195 … … 219 204 NO_TRACE static inline uint32_t pio_read_32(ioport32_t *port) 220 205 { 221 if (((void *)port) < IO_SPACE_BOUNDARY) { 222 uint32_t val; 223 asm volatile ( 224 "inl %w[port], %[val]\n" 225 : [val] "=a" (val) 226 : [port] "d" (port) 227 ); 228 return val; 229 } else { 230 return (uint32_t) *port; 231 } 206 uint32_t val; 207 208 asm volatile ( 209 "inl %w[port], %[val]\n" 210 : [val] "=a" (val) 211 : [port] "d" (port) 212 ); 213 214 return val; 232 215 } 233 216 … … 329 312 330 313 #ifndef PROCESSOR_i486 331 332 314 /** Write to MSR */ 333 315 NO_TRACE static inline void write_msr(uint32_t msr, uint64_t value) … … 354 336 return ((uint64_t) dx << 32) | ax; 355 337 } 356 357 #endif /* PROCESSOR_i486 */ 338 #endif 358 339 359 340 -
kernel/arch/ia32/include/boot/boot.h
rac08cd9 r6ab014d 43 43 #define MULTIBOOT_HEADER_FLAGS 0x00010003 44 44 45 #define MULTIBOOT_LOADER_MAGIC 0x2BADB00246 47 45 #ifndef __ASM__ 48 46 -
kernel/arch/ia32/src/asm.S
rac08cd9 r6ab014d 407 407 #ifdef PROCESSOR_i486 408 408 jz 0f 409 410 409 movl %eax, %ebp 410 0: 411 411 #else 412 412 cmovnzl %eax, %ebp -
kernel/arch/ia32/src/boot/boot.S
rac08cd9 r6ab014d 99 99 #include "vesa_prot.inc" 100 100 101 #ifndef PROCESSOR_i486 102 103 pm_status $status_prot2 104 105 movl $(INTEL_CPUID_LEVEL), %eax 106 cpuid 107 cmp $0x0, %eax /* any function > 0? */ 108 jbe pse_unsupported 109 110 movl $(INTEL_CPUID_STANDARD), %eax 111 cpuid 112 bt $(INTEL_PSE), %edx 113 jnc pse_unsupported 114 115 /* Map kernel and turn paging on */ 116 pm_status $status_pse 117 call map_kernel_pse 118 jmp stack_init 119 120 #endif /* PROCESSOR_i486 */ 121 122 pse_unsupported: 123 124 /* Map kernel and turn paging on */ 125 pm_status $status_non_pse 126 call map_kernel 127 128 stack_init: 101 /* Map kernel and turn paging on */ 102 call map_kernel 129 103 130 104 /* Create the first stack frame */ … … 132 106 movl %esp, %ebp 133 107 134 pm2_status $status_prot 3108 pm2_status $status_prot2 135 109 136 110 /* Call arch_pre_main(grub_eax, grub_ebx) */ … … 150 124 jmp hlt0 151 125 152 /** Setup mapping for the kernel (PSE variant) 153 * 154 * Setup mapping for both the unmapped and mapped sections 155 * of the kernel. For simplicity, we map the entire 4G space. 156 * 157 */ 158 .global map_kernel_pse 159 map_kernel_pse: 160 /* Paging features */ 161 movl %cr4, %ecx 162 orl $(1 << 4), %ecx /* PSE on */ 163 andl $(~(1 << 5)), %ecx /* PAE off */ 164 movl %ecx, %cr4 165 166 movl $(page_directory + 0), %esi 167 movl $(page_directory + 2048), %edi 168 xorl %ecx, %ecx 169 xorl %ebx, %ebx 170 171 floop_pse: 172 movl $((1 << 7) | (1 << 1) | (1 << 0)), %eax 173 orl %ebx, %eax 174 /* Mapping 0x00000000 + %ecx * 4M => 0x00000000 + %ecx * 4M */ 175 movl %eax, (%esi, %ecx, 4) 176 /* Mapping 0x80000000 + %ecx * 4M => 0x00000000 + %ecx * 4M */ 177 movl %eax, (%edi, %ecx, 4) 178 addl $(4 * 1024 * 1024), %ebx 179 180 incl %ecx 181 cmpl $512, %ecx 182 jl floop_pse 183 184 movl %esi, %cr3 185 186 movl %cr0, %ebx 187 orl $(1 << 31), %ebx /* paging on */ 188 movl %ebx, %cr0 126 /** Calculate unmapped address of the end of the kernel. */ 127 calc_end_of_kernel: 128 movl $hardcoded_load_address, %edi 129 andl $0x7fffffff, %edi 130 movl (%edi), %esi 131 andl $0x7fffffff, %esi 132 133 movl $hardcoded_ktext_size, %edi 134 andl $0x7fffffff, %edi 135 addl (%edi), %esi 136 andl $0x7fffffff, %esi 137 138 movl $hardcoded_kdata_size, %edi 139 andl $0x7fffffff, %edi 140 addl (%edi), %esi 141 andl $0x7fffffff, %esi 142 movl %esi, end_of_kernel 189 143 ret 190 144 191 /** Setup mapping for the kernel (non-PSE variant). 145 /** Find free 2M (+4k for alignment) region where to store page tables */ 146 find_mem_for_pt: 147 /* Check if multiboot info is present */ 148 cmpl $0x2BADB002, grub_eax 149 je check_multiboot_map 150 ret 151 check_multiboot_map: 152 /* Copy address of the multiboot info to ebx */ 153 movl grub_ebx, %ebx 154 /* Check if memory map flag is present */ 155 movl (%ebx), %edx 156 andl $(1 << 6), %edx 157 jnz use_multiboot_map 158 ret 159 use_multiboot_map: 160 /* Copy address of the memory map to edx */ 161 movl 48(%ebx), %edx 162 movl %edx, %ecx 163 addl 44(%ebx), %ecx 164 /* Find a free region at least 2M in size */ 165 check_memmap_loop: 166 /* Is this a free region? */ 167 cmp $1, 20(%edx) 168 jnz next_region 169 /* Check size */ 170 cmp $0, 16(%edx) 171 jnz next_region 172 cmpl $(2 * 1024 * 1024 + 4 * 1024), 12(%edx) 173 jbe next_region 174 cmp $0, 8(%edx) 175 jz found_region 176 next_region: 177 cmp %ecx, %edx 178 jbe next_region_do 179 ret 180 next_region_do: 181 addl (%edx), %edx 182 addl $4, %edx 183 jmp check_memmap_loop 184 found_region: 185 /* Use end of the found region */ 186 mov 4(%edx), %ecx 187 add 12(%edx), %ecx 188 sub $(2 * 1024 * 1024), %ecx 189 mov %ecx, free_area 190 ret 191 192 193 /** Setup mapping for the kernel. 192 194 * 193 195 * Setup mapping for both the unmapped and mapped sections … … 202 204 movl %ecx, %cr4 203 205 204 call calc_ kernel_end206 call calc_end_of_kernel 205 207 call find_mem_for_pt 206 207 mov kernel_end, %esi 208 mov end_of_kernel, %esi 208 209 mov free_area, %ecx 209 210 210 cmpl %esi, %ecx 211 jbe use_kernel_end 212 213 mov %ecx, %esi 214 215 /* Align address down to 4k */ 216 andl $(~4095), %esi 217 218 use_kernel_end: 219 220 /* Align address to 4k */ 221 addl $4095, %esi 222 andl $(~4095), %esi 223 224 /* Allocate space for page tables */ 225 movl %esi, pt_loc 226 movl $ballocs, %edi 227 andl $0x7fffffff, %edi 228 229 movl %esi, (%edi) 230 addl $4, %edi 231 movl $(2 * 1024 * 1024), (%edi) 232 233 /* Fill page tables */ 234 xorl %ecx, %ecx 235 xorl %ebx, %ebx 236 237 floop_pt: 238 movl $((1 << 1) | (1 << 0)), %eax 239 orl %ebx, %eax 240 movl %eax, (%esi, %ecx, 4) 241 addl $(4 * 1024), %ebx 242 243 incl %ecx 244 cmpl $(512 * 1024), %ecx 245 246 jl floop_pt 247 248 /* Fill page directory */ 249 movl $(page_directory + 0), %esi 250 movl $(page_directory + 2048), %edi 251 xorl %ecx, %ecx 252 movl pt_loc, %ebx 253 254 floop: 255 movl $((1 << 1) | (1 << 0)), %eax 256 orl %ebx, %eax 257 258 /* Mapping 0x00000000 + %ecx * 4M => 0x00000000 + %ecx * 4M */ 259 movl %eax, (%esi, %ecx, 4) 260 261 /* Mapping 0x80000000 + %ecx * 4M => 0x00000000 + %ecx * 4M */ 262 movl %eax, (%edi, %ecx, 4) 263 addl $(4 * 1024), %ebx 264 265 incl %ecx 266 cmpl $512, %ecx 267 268 jl floop 269 270 movl %esi, %cr3 271 272 movl %cr0, %ebx 273 orl $(1 << 31), %ebx /* paging on */ 274 movl %ebx, %cr0 275 276 ret 277 278 /** Calculate unmapped address of the end of the kernel. */ 279 calc_kernel_end: 280 movl $hardcoded_load_address, %edi 211 jbe use_end_of_kernel 212 mov %ecx, %esi 213 /* Align address down to 4k */ 214 andl $(~4095), %esi 215 use_end_of_kernel: 216 217 /* Align address to 4k */ 218 addl $4095, %esi 219 andl $(~4095), %esi 220 221 /* Allocate space for page tables*/ 222 movl %esi, pt_loc 223 movl $ballocs, %edi 281 224 andl $0x7fffffff, %edi 282 movl (%edi), %esi 283 andl $0x7fffffff, %esi 284 285 movl $hardcoded_ktext_size, %edi 286 andl $0x7fffffff, %edi 287 addl (%edi), %esi 288 andl $0x7fffffff, %esi 289 290 movl $hardcoded_kdata_size, %edi 291 andl $0x7fffffff, %edi 292 addl (%edi), %esi 293 andl $0x7fffffff, %esi 294 movl %esi, kernel_end 295 225 movl %esi, (%edi) 226 addl $4, %edi 227 movl $(2*1024*1024), (%edi) 228 229 /* Fill page tables */ 230 xorl %ecx, %ecx 231 xorl %ebx, %ebx 232 233 floop_pt: 234 movl $((1 << 1) | (1 << 0)), %eax 235 orl %ebx, %eax 236 movl %eax, (%esi, %ecx, 4) 237 addl $(4 * 1024), %ebx 238 239 incl %ecx 240 cmpl $(512 * 1024), %ecx 241 jl floop_pt 242 243 /* Fill page directory */ 244 movl $(page_directory + 0), %esi 245 movl $(page_directory + 2048), %edi 246 xorl %ecx, %ecx 247 movl pt_loc, %ebx 248 249 floop: 250 movl $((1 << 1) | (1 << 0)), %eax 251 orl %ebx, %eax 252 /* Mapping 0x00000000 + %ecx * 4M => 0x00000000 + %ecx * 4M */ 253 movl %eax, (%esi, %ecx, 4) 254 /* Mapping 0x80000000 + %ecx * 4M => 0x00000000 + %ecx * 4M */ 255 movl %eax, (%edi, %ecx, 4) 256 addl $(4 * 1024), %ebx 257 258 incl %ecx 259 cmpl $512, %ecx 260 jl floop 261 262 movl %esi, %cr3 263 264 movl %cr0, %ebx 265 orl $(1 << 31), %ebx /* paging on */ 266 movl %ebx, %cr0 296 267 ret 297 298 /** Find free 2M (+4k for alignment) region where to store page tables */299 find_mem_for_pt:300 /* Check if multiboot info is present */301 cmpl $MULTIBOOT_LOADER_MAGIC, grub_eax302 je check_multiboot_map303 304 ret305 306 check_multiboot_map:307 308 /* Copy address of the multiboot info to ebx */309 movl grub_ebx, %ebx310 311 /* Check if memory map flag is present */312 movl (%ebx), %edx313 andl $(1 << 6), %edx314 jnz use_multiboot_map315 316 ret317 318 use_multiboot_map:319 320 /* Copy address of the memory map to edx */321 movl 48(%ebx), %edx322 movl %edx, %ecx323 324 addl 44(%ebx), %ecx325 326 /* Find a free region at least 2M in size */327 check_memmap_loop:328 329 /* Is this a free region? */330 cmp $1, 20(%edx)331 jnz next_region332 333 /* Check size */334 cmp $0, 16(%edx)335 jnz next_region336 337 cmpl $(2 * 1024 * 1024 + 4 * 1024), 12(%edx)338 jbe next_region339 340 cmp $0, 8(%edx)341 jz found_region342 343 next_region:344 345 cmp %ecx, %edx346 jbe next_region_do347 348 ret349 350 next_region_do:351 352 addl (%edx), %edx353 addl $4, %edx354 jmp check_memmap_loop355 356 found_region:357 358 /* Use end of the found region */359 mov 4(%edx), %ecx360 add 12(%edx), %ecx361 sub $(2 * 1024 * 1024), %ecx362 mov %ecx, free_area363 364 ret365 268 366 269 /** Print string to EGA display (in light red) and halt. … … 707 610 grub_eax: 708 611 .long 0 612 709 613 grub_ebx: 710 614 .long 0 … … 712 616 pt_loc: 713 617 .long 0 714 kernel_end:618 end_of_kernel: 715 619 .long 0 716 620 free_area: 717 621 .long 0 718 622 623 err_pse: 624 .asciz "Page Size Extension not supported. System halted." 625 719 626 status_prot: 720 627 .asciz "[prot] " 721 status_pse:722 .asciz "[pse] "723 status_non_pse:724 .asciz "[non_pse] "725 628 status_vesa_copy: 726 629 .asciz "[vesa_copy] " … … 731 634 status_prot2: 732 635 .asciz "[prot2] " 733 status_prot3:734 .asciz "[prot3] "735 636 status_main: 736 637 .asciz "[main] " -
kernel/arch/ia32/src/syscall.c
rac08cd9 r6ab014d 40 40 41 41 #ifndef PROCESSOR_i486 42 43 42 /** Enable & setup support for SYSENTER/SYSEXIT */ 44 43 void syscall_setup_cpu(void) … … 51 50 write_msr(IA32_MSR_SYSENTER_EIP, (uint32_t) sysenter_handler); 52 51 } 53 54 #endif /* PROCESSOR_i486 */ 52 #endif 55 53 56 54 /** @} -
kernel/generic/include/ipc/ipc.h
rac08cd9 r6ab014d 98 98 typedef struct { 99 99 sysarg_t args[IPC_CALL_LEN]; 100 /** 101 * Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME, 102 * or the task which answered the call. 103 */ 100 /** Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME. */ 104 101 task_id_t task_id; 105 102 /** Phone which made or last masqueraded this call. */ -
kernel/generic/src/ipc/ipc.c
rac08cd9 r6ab014d 230 230 } 231 231 } 232 233 call->data.task_id = TASK->taskid;234 232 235 233 if (do_lock) -
kernel/generic/src/ipc/sysipc.c
rac08cd9 r6ab014d 253 253 /* The connection was accepted */ 254 254 phone_connect(phoneid, &answer->sender->answerbox); 255 /* Set 'task ID' as arg3 and arg4 of response */ 256 IPC_SET_ARG3(answer->data, LOWER32(TASK->taskid)); 257 IPC_SET_ARG4(answer->data, UPPER32(TASK->taskid)); 255 258 /* Set 'phone hash' as arg5 of response */ 256 259 IPC_SET_ARG5(answer->data, -
uspace/Makefile
rac08cd9 r6ab014d 37 37 app/blkdump \ 38 38 app/bnchmark \ 39 app/cc \ 40 app/ccom \ 41 app/ccom/mkext \ 42 app/cpp \ 39 43 app/devctl \ 40 44 app/edit \ … … 114 118 drv/bus/usb/vhc 115 119 116 ifeq ($(CONFIG_PCC),y)117 DIRS += \118 app/cc \119 app/ccom \120 app/ccom/mkext \121 app/cpp122 endif123 124 ifeq ($(CONFIG_BINUTILS),y)125 DIRS += \126 app/binutils127 endif128 129 120 ## Networking 130 121 # -
uspace/app/bdsh/Makefile
rac08cd9 r6ab014d 50 50 cmds/modules/unmount/unmount.c \ 51 51 cmds/modules/kcon/kcon.c \ 52 cmds/builtins/batch/batch.c \53 52 cmds/builtins/exit/exit.c \ 54 53 cmds/builtins/cd/cd.c \ -
uspace/app/bdsh/cmds/builtins/builtins.h
rac08cd9 r6ab014d 4 4 #include "config.h" 5 5 6 #include "batch/entry.h"7 6 #include "cd/entry.h" 8 7 #include "exit/entry.h" 9 8 10 9 builtin_t builtins[] = { 11 #include "batch/batch_def.h"12 10 #include "cd/cd_def.h" 13 11 #include "exit/exit_def.h" -
uspace/app/bdsh/compl.c
rac08cd9 r6ab014d 1 1 /* 2 2 * Copyright (c) 2011 Jiri Svoboda 3 * Copyright (c) 2011 Martin Sucha4 3 * All rights reserved. 5 4 * … … 38 37 #include "compl.h" 39 38 #include "exec.h" 40 #include "tok.h"41 39 42 40 static int compl_init(wchar_t *text, size_t pos, size_t *cstart, void **state); … … 90 88 { 91 89 compl_t *cs = NULL; 90 size_t p; 92 91 size_t pref_size; 93 92 char *stext = NULL; … … 97 96 static const char *dirlist_arg[] = { ".", NULL }; 98 97 int retval; 99 tokenizer_t tok;100 token_t tokens[WORD_MAX];101 unsigned int current_token;102 size_t tokens_length;103 98 104 99 cs = calloc(1, sizeof(compl_t)); … … 108 103 } 109 104 105 /* 106 * Copy token pointed to by caret from start up to the caret. 107 * XXX Ideally we would use the standard tokenizer. 108 */ 109 p = pos; 110 while (p > 0 && text[p - 1] != (wchar_t) ' ') 111 --p; 112 *cstart = p; 113 110 114 /* Convert text buffer to string */ 111 stext = wstr_to_astr(text );115 stext = wstr_to_astr(text + *cstart); 112 116 if (stext == NULL) { 113 117 retval = ENOMEM; 114 118 goto error; 115 119 } 116 117 /* Tokenize the input string */ 118 retval = tok_init(&tok, stext, tokens, WORD_MAX); 119 if (retval != EOK) { 120 goto error; 121 } 122 123 retval = tok_tokenize(&tok, &tokens_length); 124 if (retval != EOK) { 125 goto error; 126 } 127 128 /* Find the current token */ 129 for (current_token = 0; current_token < tokens_length; current_token++) { 130 token_t *t = &tokens[current_token]; 131 size_t end = t->char_start + t->char_length; 132 /* Check if the caret lies inside the token or immediately 133 * after it 134 */ 135 if (t->char_start <= pos && pos <= end) { 136 break; 137 } 138 } 139 140 if (tokens[current_token].type != TOKTYPE_SPACE) { 141 *cstart = tokens[current_token].char_start; 142 } 143 else { 144 *cstart = pos; 145 } 146 147 /* Extract the prefix being completed 148 * XXX: handle strings, etc. 149 */ 120 121 /* Extract the prefix being completed */ 150 122 pref_size = str_lsize(stext, pos - *cstart); 151 123 prefix = malloc(pref_size + 1); … … 155 127 } 156 128 157 str_ncpy(prefix, pref_size + 1, stext + 158 tokens[current_token].byte_start, pref_size); 129 str_ncpy(prefix, pref_size + 1, stext, pref_size); 159 130 160 131 /* … … 162 133 * We look at the previous token. If there is none or it is a pipe 163 134 * ('|'), it is a command, otherwise it is an argument. 135 * XXX Again we should use the standard tokenizer/parser. 164 136 */ 165 137 166 138 /* Skip any whitespace before current token */ 167 int prev_token = current_token - 1; 168 if (prev_token != -1 && tokens[prev_token].type == TOKTYPE_SPACE) { 169 prev_token--; 170 } 139 while (p > 0 && text[p - 1] == (wchar_t) ' ') 140 --p; 171 141 172 142 /* … … 174 144 * follows a pipe token. 175 145 */ 176 if (p rev_token == -1 || tokens[prev_token].type == TOKTYPE_SPACE)146 if (p == 0 || text[p - 1] == '|') 177 147 cs->is_command = true; 178 148 else … … 219 189 220 190 cs->prefix_len = str_length(cs->prefix); 221 222 tok_fini(&tok);223 191 224 192 *state = cs; … … 227 195 error: 228 196 /* Error cleanup */ 229 230 tok_fini(&tok);231 197 232 198 if (cs != NULL && cs->path_list != NULL) { -
uspace/app/bdsh/input.c
rac08cd9 r6ab014d 2 2 * Copyright (c) 2008 Tim Post 3 3 * Copyright (c) 2011 Jiri Svoboda 4 * Copyright (c) 2011 Martin Sucha5 4 * All rights reserved. 6 5 * … … 68 67 { 69 68 char *cmd[WORD_MAX]; 70 token_t tokens_space[WORD_MAX];71 token_t *tokens = tokens_space;72 69 int rc = 0; 73 70 tokenizer_t tok; 74 unsigned int i, pipe_count, processed_pipes; 75 unsigned int pipe_pos[2]; 71 int i, pipe_count, processed_pipes; 72 int pipe_pos[2]; 73 char **actual_cmd; 76 74 char *redir_from = NULL; 77 75 char *redir_to = NULL; … … 80 78 return CL_EFAIL; 81 79 82 rc = tok_init(&tok, usr->line, tokens, WORD_MAX);80 rc = tok_init(&tok, usr->line, cmd, WORD_MAX); 83 81 if (rc != EOK) { 84 82 goto finit; 85 83 } 86 84 87 size_t tokens_length; 88 rc = tok_tokenize(&tok, &tokens_length); 85 rc = tok_tokenize(&tok); 89 86 if (rc != EOK) { 90 87 goto finit; 91 }92 93 if (tokens_length > 0 && tokens[0].type == TOKTYPE_SPACE) {94 tokens++;95 tokens_length--;96 }97 98 if (tokens_length > 0 && tokens[tokens_length-1].type == TOKTYPE_SPACE) {99 tokens_length--;100 88 } 101 89 … … 105 93 * First find the pipes and check that there are no more 106 94 */ 107 for (i = 0, pipe_count = 0; i < tokens_length; i++) { 108 if (tokens[i].type == TOKTYPE_PIPE) { 95 int cmd_length = 0; 96 for (i = 0, pipe_count = 0; cmd[i] != NULL; i++, cmd_length++) { 97 if (cmd[i][0] == '|') { 109 98 if (pipe_count >= 2) { 110 99 print_pipe_usage(); … … 117 106 } 118 107 119 unsigned int cmd_token_start = 0; 120 unsigned int cmd_token_end = tokens_length; 121 108 actual_cmd = cmd; 122 109 processed_pipes = 0; 123 110 124 111 /* Check if the first part (from <file> |) is present */ 125 if (pipe_count > 0 && (pipe_pos[0] == 3 || pipe_pos[0] == 4) && str_cmp(tokens[0].text, "from") == 0) {112 if (pipe_count > 0 && pipe_pos[0] == 2 && str_cmp(cmd[0], "from") == 0) { 126 113 /* Ignore the first three tokens (from, file, pipe) and set from */ 127 redir_from = tokens[2].text;128 cmd_token_start = pipe_pos[0]+1;114 redir_from = cmd[1]; 115 actual_cmd = cmd + 3; 129 116 processed_pipes++; 130 117 } … … 132 119 /* Check if the second part (| to <file>) is present */ 133 120 if ((pipe_count - processed_pipes) > 0 && 134 (pipe_pos[processed_pipes] == tokens_length - 4 || 135 (pipe_pos[processed_pipes] == tokens_length - 5 && 136 tokens[tokens_length-4].type == TOKTYPE_SPACE )) && 137 str_cmp(tokens[tokens_length-3].text, "to") == 0) { 121 pipe_pos[processed_pipes] == cmd_length - 3 && 122 str_cmp(cmd[cmd_length-2], "to") == 0) { 138 123 /* Ignore the last three tokens (pipe, to, file) and set to */ 139 redir_to = tokens[tokens_length-1].text; 140 cmd_token_end = pipe_pos[processed_pipes]; 124 redir_to = cmd[cmd_length-1]; 125 cmd[cmd_length-3] = NULL; 126 cmd_length -= 3; 141 127 processed_pipes++; 142 128 } … … 148 134 } 149 135 150 /* Convert tokens of the command to string array */ 151 unsigned int cmd_pos = 0; 152 for (i = cmd_token_start; i < cmd_token_end; i++) { 153 if (tokens[i].type != TOKTYPE_SPACE) { 154 cmd[cmd_pos++] = tokens[i].text; 155 } 156 } 157 cmd[cmd_pos++] = NULL; 158 159 if (cmd[0] == NULL) { 136 if (actual_cmd[0] == NULL) { 160 137 print_pipe_usage(); 161 138 rc = ENOTSUP; … … 192 169 new_iostate.stdout = to; 193 170 } 194 195 rc = run_command( cmd, usr, &new_iostate);171 172 rc = run_command(actual_cmd, usr, &new_iostate); 196 173 197 174 finit_with_files: -
uspace/app/bdsh/tok.c
rac08cd9 r6ab014d 42 42 static bool tok_pending_chars(tokenizer_t *); 43 43 static int tok_finish_string(tokenizer_t *); 44 static void tok_start_token(tokenizer_t *, token_type_t);45 44 46 45 /** Initialize the token parser … … 51 50 * @param max_tokens number of elements of the out_tokens array 52 51 */ 53 int tok_init(tokenizer_t *tok, char *input, token_t*out_tokens,52 int tok_init(tokenizer_t *tok, char *input, char **out_tokens, 54 53 size_t max_tokens) 55 54 { 56 55 tok->in = input; 57 56 tok->in_offset = 0; 58 tok->last_in_offset = 0;59 tok->in_char_offset = 0;60 tok->last_in_char_offset = 0;61 57 62 58 tok->outtok = out_tokens; 63 59 tok->outtok_offset = 0; 64 tok->outtok_size = max_tokens; 60 /* Leave one slot for a null terminator */ 61 assert(max_tokens > 0); 62 tok->outtok_size = max_tokens - 1; 65 63 66 64 /* Prepare a buffer where all the token strings will be stored */ … … 89 87 90 88 /** Tokenize the input string into the tokens */ 91 int tok_tokenize(tokenizer_t *tok , size_t *tokens_length)89 int tok_tokenize(tokenizer_t *tok) 92 90 { 93 91 int rc; 94 wchar_t next_char;92 wchar_t cur_char; 95 93 96 94 /* Read the input line char by char and append tokens */ 97 while ((next_char = tok_look_char(tok)) != 0) { 98 if (next_char == ' ') { 99 /* Push the token if there is any. 95 while ((cur_char = tok_get_char(tok)) != 0) { 96 if (cur_char == ' ') { 97 /* Spaces delimit tokens, but are not processed in any way 98 * Push the token if there is any. 100 99 * There may not be any pending char for a token in case 101 100 * there are several spaces in the input. … … 107 106 } 108 107 } 109 tok_start_token(tok, TOKTYPE_SPACE); 110 /* Eat all the spaces */ 111 while (tok_look_char(tok) == ' ') { 112 tok_push_char(tok, tok_get_char(tok)); 113 } 114 tok_push_token(tok); 115 116 } 117 else if (next_char == '|') { 118 /* Pipes are tokens that are delimiters and should be 119 * output as a separate token 108 } 109 else if (cur_char == '|') { 110 /* Pipes are tokens that are delimiters and should be output 111 * as a separate token 120 112 */ 121 113 if (tok_pending_chars(tok)) { … … 126 118 } 127 119 128 tok_start_token(tok, TOKTYPE_PIPE); 129 130 rc = tok_push_char(tok, tok_get_char(tok)); 120 rc = tok_push_char(tok, '|'); 131 121 if (rc != EOK) { 132 122 return rc; … … 138 128 } 139 129 } 140 else if ( next_char == '\'') {130 else if (cur_char == '\'') { 141 131 /* A string starts with a quote (') and ends again with a quote. 142 132 * A literal quote is written as '' 143 133 */ 144 tok_start_token(tok, TOKTYPE_TEXT);145 /* Eat the quote */146 tok_get_char(tok);147 134 rc = tok_finish_string(tok); 148 135 if (rc != EOK) { … … 151 138 } 152 139 else { 153 if (!tok_pending_chars(tok)) {154 tok_start_token(tok, TOKTYPE_TEXT);155 }156 140 /* If we are handling any other character, just append it to 157 141 * the current token. 158 142 */ 159 rc = tok_push_char(tok, tok_get_char(tok));143 rc = tok_push_char(tok, cur_char); 160 144 if (rc != EOK) { 161 145 return rc; … … 172 156 } 173 157 174 *tokens_length = tok->outtok_offset; 158 /* We always have a space for the terminator, as we 159 * reserved it in tok_init */ 160 tok->outtok[tok->outtok_offset] = 0; 175 161 176 162 return EOK; … … 181 167 { 182 168 int rc; 183 wchar_t next_char; 184 185 while ((next_char = tok_look_char(tok)) != 0) { 186 if (next_char == '\'') { 187 /* Eat the quote */ 188 tok_get_char(tok); 169 wchar_t cur_char; 170 171 while ((cur_char = tok_get_char(tok)) != 0) { 172 if (cur_char == '\'') { 189 173 if (tok_look_char(tok) == '\'') { 190 174 /* Encode a single literal quote */ … … 203 187 } 204 188 else { 205 rc = tok_push_char(tok, tok_get_char(tok));189 rc = tok_push_char(tok, cur_char); 206 190 if (rc != EOK) { 207 191 return rc; … … 217 201 wchar_t tok_get_char(tokenizer_t *tok) 218 202 { 219 tok->in_char_offset++;220 203 return str_decode(tok->in, &tok->in_offset, STR_NO_LIMIT); 221 204 } … … 225 208 { 226 209 size_t old_offset = tok->in_offset; 227 size_t old_char_offset = tok->in_char_offset;228 210 wchar_t ret = tok_get_char(tok); 229 211 tok->in_offset = old_offset; 230 tok->in_char_offset = old_char_offset;231 212 return ret; 232 213 } … … 238 219 } 239 220 240 void tok_start_token(tokenizer_t *tok, token_type_t type)241 {242 tok->current_type = type;243 }244 245 221 /** Push the current token to the output array */ 246 222 int tok_push_token(tokenizer_t *tok) … … 255 231 256 232 tok->outbuf[tok->outbuf_offset++] = 0; 257 token_t *tokinfo = &tok->outtok[tok->outtok_offset++]; 258 tokinfo->type = tok->current_type; 259 tokinfo->text = tok->outbuf + tok->outbuf_last_start; 260 tokinfo->byte_start = tok->last_in_offset; 261 tokinfo->byte_length = tok->in_offset - tok->last_in_offset; 262 tokinfo->char_start = tok->last_in_char_offset; 263 tokinfo->char_length = tok->in_char_offset - tok->last_in_char_offset; 233 tok->outtok[tok->outtok_offset++] = tok->outbuf + tok->outbuf_last_start; 264 234 tok->outbuf_last_start = tok->outbuf_offset; 265 266 /* We have consumed the first char of the next token already */267 tok->last_in_offset = tok->in_offset;268 tok->last_in_char_offset = tok->in_char_offset;269 235 270 236 return EOK; -
uspace/app/bdsh/tok.h
rac08cd9 r6ab014d 30 30 #define TOK_H 31 31 32 typedef enum {33 TOKTYPE_TEXT,34 TOKTYPE_PIPE,35 TOKTYPE_SPACE36 } token_type_t;37 38 typedef struct {39 char *text;40 size_t byte_start;41 size_t char_start;42 size_t byte_length;43 size_t char_length;44 token_type_t type;45 } token_t;46 47 32 typedef struct { 48 33 char *in; 49 34 size_t in_offset; 50 size_t last_in_offset;51 size_t in_char_offset;52 size_t last_in_char_offset;53 35 54 36 char *outbuf; … … 57 39 size_t outbuf_last_start; 58 40 59 token_t *outtok; 60 token_type_t current_type; 41 char **outtok; 61 42 size_t outtok_offset; 62 43 size_t outtok_size; 63 44 } tokenizer_t; 64 45 65 extern int tok_init(tokenizer_t *, char *, token_t*, size_t);46 extern int tok_init(tokenizer_t *, char *, char **, size_t); 66 47 extern void tok_fini(tokenizer_t *); 67 extern int tok_tokenize(tokenizer_t * , size_t *);48 extern int tok_tokenize(tokenizer_t *); 68 49 69 50 #endif -
uspace/app/tetris/tetris.c
rac08cd9 r6ab014d 291 291 for (j = i + 1; j <= 5; j++) { 292 292 if (keys[i] == keys[j]) 293 errx(1, " %s", "duplicate command keys specified.");293 errx(1, "duplicate command keys specified."); 294 294 } 295 295 -
uspace/lib/c/arch/amd64/include/atomic.h
rac08cd9 r6ab014d 44 44 static inline void atomic_inc(atomic_t *val) 45 45 { 46 #ifdef __PCC__47 asm volatile (48 "lock incq %0\n"49 : "+m" (val->count)50 );51 #else52 46 asm volatile ( 53 47 "lock incq %[count]\n" 54 48 : [count] "+m" (val->count) 55 49 ); 56 #endif57 50 } 58 51 59 52 static inline void atomic_dec(atomic_t *val) 60 53 { 61 #ifdef __PCC__62 asm volatile (63 "lock decq %0\n"64 : "+m" (val->count)65 );66 #else67 54 asm volatile ( 68 55 "lock decq %[count]\n" 69 56 : [count] "+m" (val->count) 70 57 ); 71 #endif72 58 } 73 59 … … 76 62 atomic_count_t r = 1; 77 63 78 #ifdef __PCC__79 asm volatile (80 "lock xaddq %1, %0\n"81 : "+m" (val->count),82 "+r" (r)83 );84 #else85 64 asm volatile ( 86 65 "lock xaddq %[r], %[count]\n" … … 88 67 [r] "+r" (r) 89 68 ); 90 #endif91 69 92 70 return r; … … 97 75 atomic_count_t r = -1; 98 76 99 #ifdef __PCC__100 asm volatile (101 "lock xaddq %1, %0\n"102 : "+m" (val->count),103 "+r" (r)104 );105 #else106 77 asm volatile ( 107 78 "lock xaddq %[r], %[count]\n" … … 109 80 [r] "+r" (r) 110 81 ); 111 #endif112 82 113 83 return r; -
uspace/lib/c/arch/ia32/Makefile.common
rac08cd9 r6ab014d 28 28 29 29 CLANG_ARCH = i386 30 31 30 ifeq ($(PROCESSOR),i486) 32 31 GCC_CFLAGS += -march=i486 -fno-omit-frame-pointer 33 32 else 34 33 GCC_CFLAGS += -march=pentium -fno-omit-frame-pointer 35 34 endif 36 35 -
uspace/lib/c/arch/ia32/include/atomic.h
rac08cd9 r6ab014d 42 42 static inline void atomic_inc(atomic_t *val) 43 43 { 44 #ifdef __PCC__45 asm volatile (46 "lock incl %0\n"47 : "+m" (val->count)48 );49 #else50 44 asm volatile ( 51 45 "lock incl %[count]\n" 52 46 : [count] "+m" (val->count) 53 47 ); 54 #endif55 48 } 56 49 57 50 static inline void atomic_dec(atomic_t *val) 58 51 { 59 #ifdef __PCC__60 asm volatile (61 "lock decl %0\n"62 : "+m" (val->count)63 );64 #else65 52 asm volatile ( 66 53 "lock decl %[count]\n" 67 54 : [count] "+m" (val->count) 68 55 ); 69 #endif70 56 } 71 57 … … 74 60 atomic_count_t r = 1; 75 61 76 #ifdef __PCC__77 asm volatile (78 "lock xaddl %1, %0\n"79 : "+m" (val->count),80 "+r" (r)81 );82 #else83 62 asm volatile ( 84 63 "lock xaddl %[r], %[count]\n" … … 86 65 [r] "+r" (r) 87 66 ); 88 #endif89 67 90 68 return r; … … 95 73 atomic_count_t r = -1; 96 74 97 #ifdef __PCC__98 asm volatile (99 "lock xaddl %1, %0\n"100 : "+m" (val->count),101 "+r" (r)102 );103 #else104 75 asm volatile ( 105 76 "lock xaddl %[r], %[count]\n" … … 107 78 [r] "+r" (r) 108 79 ); 109 #endif110 80 111 81 return r; -
uspace/lib/c/arch/ia32/include/ddi.h
rac08cd9 r6ab014d 41 41 static inline uint8_t pio_read_8(ioport8_t *port) 42 42 { 43 if (port < (ioport8_t *) IO_SPACE_BOUNDARY) { 44 uint8_t val; 45 asm volatile ( 46 "inb %w[port], %b[val]\n" 47 : [val] "=a" (val) 48 : [port] "d" (port) 49 ); 50 return val; 51 } else { 52 return (uint8_t) *port; 53 } 43 uint8_t val; 44 45 asm volatile ( 46 "inb %w[port], %b[val]\n" 47 : [val] "=a" (val) 48 : [port] "d" (port) 49 ); 50 51 return val; 54 52 } 55 53 56 54 static inline uint16_t pio_read_16(ioport16_t *port) 57 55 { 58 if (port < (ioport16_t *) IO_SPACE_BOUNDARY) { 59 uint16_t val; 60 asm volatile ( 61 "inw %w[port], %w[val]\n" 62 : [val] "=a" (val) 63 : [port] "d" (port) 64 ); 65 return val; 66 } else { 67 return (uint16_t) *port; 68 } 56 uint16_t val; 57 58 asm volatile ( 59 "inw %w[port], %w[val]\n" 60 : [val] "=a" (val) 61 : [port] "d" (port) 62 ); 63 64 return val; 69 65 } 70 66 71 67 static inline uint32_t pio_read_32(ioport32_t *port) 72 68 { 73 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 74 uint32_t val; 75 asm volatile ( 76 "inl %w[port], %[val]\n" 77 : [val] "=a" (val) 78 : [port] "d" (port) 79 ); 80 return val; 81 } else { 82 return (uint32_t) *port; 83 } 69 uint32_t val; 70 71 asm volatile ( 72 "inl %w[port], %[val]\n" 73 : [val] "=a" (val) 74 : [port] "d" (port) 75 ); 76 77 return val; 84 78 } 85 79 86 80 static inline void pio_write_8(ioport8_t *port, uint8_t val) 87 81 { 88 if (port < (ioport8_t *) IO_SPACE_BOUNDARY) { 89 asm volatile ( 90 "outb %b[val], %w[port]\n" 91 :: [val] "a" (val), [port] "d" (port) 92 ); 93 } else { 94 *port = val; 95 } 82 asm volatile ( 83 "outb %b[val], %w[port]\n" 84 :: [val] "a" (val), [port] "d" (port) 85 ); 96 86 } 97 87 98 88 static inline void pio_write_16(ioport16_t *port, uint16_t val) 99 89 { 100 if (port < (ioport16_t *) IO_SPACE_BOUNDARY) { 101 asm volatile ( 102 "outw %w[val], %w[port]\n" 103 :: [val] "a" (val), [port] "d" (port) 104 ); 105 } else { 106 *port = val; 107 } 90 asm volatile ( 91 "outw %w[val], %w[port]\n" 92 :: [val] "a" (val), [port] "d" (port) 93 ); 108 94 } 109 95 110 96 static inline void pio_write_32(ioport32_t *port, uint32_t val) 111 97 { 112 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 113 asm volatile ( 114 "outl %[val], %w[port]\n" 115 :: [val] "a" (val), [port] "d" (port) 116 ); 117 } else { 118 *port = val; 119 } 98 asm volatile ( 99 "outl %[val], %w[port]\n" 100 :: [val] "a" (val), [port] "d" (port) 101 ); 120 102 } 121 103 -
uspace/lib/c/arch/ia32/src/entry.S
rac08cd9 r6ab014d 46 46 mov %ax, %fs 47 47 # Do not set %gs, it contains descriptor that can see TLS 48 48 49 49 #ifndef PROCESSOR_i486 50 50 # Detect the mechanism used for making syscalls … … 53 53 bt $(INTEL_SEP), %edx 54 54 jnc 0f 55 56 57 55 leal __syscall_fast_func, %eax 56 movl $__syscall_fast, (%eax) 57 0: 58 58 #endif 59 60 59 # 61 60 # Create the first stack frame. -
uspace/lib/c/generic/async.c
rac08cd9 r6ab014d 98 98 #include <ipc/ipc.h> 99 99 #include <async.h> 100 #include "private/async.h"101 100 #undef LIBC_ASYNC_C_ 102 101 … … 114 113 #include <stdlib.h> 115 114 #include <macros.h> 115 #include "private/async.h" 116 116 117 117 #define CLIENT_HASH_TABLE_BUCKETS 32 … … 996 996 session_ns->arg3 = 0; 997 997 998 fibril_mutex_initialize(&session_ns->remote_state_mtx);999 session_ns->remote_state_data = NULL;1000 1001 998 list_initialize(&session_ns->exch_list); 1002 999 fibril_mutex_initialize(&session_ns->mutex); … … 1475 1472 return ENOENT; 1476 1473 1474 task_id_t task_id; 1475 sysarg_t task_id_lo; 1476 sysarg_t task_id_hi; 1477 1477 sysarg_t phone_hash; 1478 sysarg_t rc; 1479 1480 aid_t req; 1481 ipc_call_t answer; 1482 req = async_send_3(exch, IPC_M_CONNECT_TO_ME, arg1, arg2, arg3, 1483 &answer); 1484 async_wait_for(req, &rc); 1478 int rc = async_req_3_5(exch, IPC_M_CONNECT_TO_ME, arg1, arg2, arg3, 1479 NULL, NULL, &task_id_lo, &task_id_hi, &phone_hash); 1485 1480 if (rc != EOK) 1486 return (int)rc;1487 1488 phone_hash = IPC_GET_ARG5(answer);1489 1481 return rc; 1482 1483 task_id = (task_id_t) MERGE_LOUP32(task_id_lo, task_id_hi); 1484 1490 1485 if (client_receiver != NULL) 1491 async_new_connection( answer.in_task_id, phone_hash, 0, NULL,1486 async_new_connection(task_id, phone_hash, 0, NULL, 1492 1487 client_receiver, carg); 1493 1488 … … 1564 1559 sess->arg3 = 0; 1565 1560 1566 fibril_mutex_initialize(&sess->remote_state_mtx);1567 sess->remote_state_data = NULL;1568 1569 1561 list_initialize(&sess->exch_list); 1570 1562 fibril_mutex_initialize(&sess->mutex); … … 1648 1640 sess->arg3 = arg3; 1649 1641 1650 fibril_mutex_initialize(&sess->remote_state_mtx);1651 sess->remote_state_data = NULL;1652 1653 1642 list_initialize(&sess->exch_list); 1654 1643 fibril_mutex_initialize(&sess->mutex); … … 1701 1690 sess->arg3 = arg3; 1702 1691 1703 fibril_mutex_initialize(&sess->remote_state_mtx);1704 sess->remote_state_data = NULL;1705 1706 1692 list_initialize(&sess->exch_list); 1707 1693 fibril_mutex_initialize(&sess->mutex); … … 1734 1720 sess->arg2 = 0; 1735 1721 sess->arg3 = 0; 1736 1737 fibril_mutex_initialize(&sess->remote_state_mtx);1738 sess->remote_state_data = NULL;1739 1722 1740 1723 list_initialize(&sess->exch_list); … … 2401 2384 sess->arg3 = 0; 2402 2385 2403 fibril_mutex_initialize(&sess->remote_state_mtx);2404 sess->remote_state_data = NULL;2405 2406 2386 list_initialize(&sess->exch_list); 2407 2387 fibril_mutex_initialize(&sess->mutex); … … 2450 2430 sess->arg3 = 0; 2451 2431 2452 fibril_mutex_initialize(&sess->remote_state_mtx);2453 sess->remote_state_data = NULL;2454 2455 2432 list_initialize(&sess->exch_list); 2456 2433 fibril_mutex_initialize(&sess->mutex); … … 2494 2471 sess->arg2 = 0; 2495 2472 sess->arg3 = 0; 2496 2497 fibril_mutex_initialize(&sess->remote_state_mtx);2498 sess->remote_state_data = NULL;2499 2473 2500 2474 list_initialize(&sess->exch_list); … … 2538 2512 } 2539 2513 2540 /** Lock and get session remote state2541 *2542 * Lock and get the local replica of the remote state2543 * in stateful sessions. The call should be paired2544 * with async_remote_state_release*().2545 *2546 * @param[in] sess Stateful session.2547 *2548 * @return Local replica of the remote state.2549 *2550 */2551 void *async_remote_state_acquire(async_sess_t *sess)2552 {2553 fibril_mutex_lock(&sess->remote_state_mtx);2554 return sess->remote_state_data;2555 }2556 2557 /** Update the session remote state2558 *2559 * Update the local replica of the remote state2560 * in stateful sessions. The remote state must2561 * be already locked.2562 *2563 * @param[in] sess Stateful session.2564 * @param[in] state New local replica of the remote state.2565 *2566 */2567 void async_remote_state_update(async_sess_t *sess, void *state)2568 {2569 assert(fibril_mutex_is_locked(&sess->remote_state_mtx));2570 sess->remote_state_data = state;2571 }2572 2573 /** Release the session remote state2574 *2575 * Unlock the local replica of the remote state2576 * in stateful sessions.2577 *2578 * @param[in] sess Stateful session.2579 *2580 */2581 void async_remote_state_release(async_sess_t *sess)2582 {2583 assert(fibril_mutex_is_locked(&sess->remote_state_mtx));2584 2585 fibril_mutex_unlock(&sess->remote_state_mtx);2586 }2587 2588 /** Release the session remote state and end an exchange2589 *2590 * Unlock the local replica of the remote state2591 * in stateful sessions. This is convenience function2592 * which gets the session pointer from the exchange2593 * and also ends the exchange.2594 *2595 * @param[in] exch Stateful session's exchange.2596 *2597 */2598 void async_remote_state_release_exchange(async_exch_t *exch)2599 {2600 if (exch == NULL)2601 return;2602 2603 async_sess_t *sess = exch->sess;2604 assert(fibril_mutex_is_locked(&sess->remote_state_mtx));2605 2606 async_exchange_end(exch);2607 fibril_mutex_unlock(&sess->remote_state_mtx);2608 }2609 2610 2514 /** @} 2611 2515 */ -
uspace/lib/c/generic/async_obsolete.c
rac08cd9 r6ab014d 38 38 #include <async.h> 39 39 #include <async_obsolete.h> 40 #include "private/async.h"41 40 #undef LIBC_ASYNC_C_ 42 41 #undef LIBC_ASYNC_OBSOLETE_C_ … … 45 44 #include <malloc.h> 46 45 #include <errno.h> 46 #include "private/async.h" 47 47 48 48 /** Send message and return id of the sent message. -
uspace/lib/c/generic/ipc.c
rac08cd9 r6ab014d 47 47 #include <futex.h> 48 48 #include <fibril.h> 49 #include <macros.h>50 49 51 50 /** … … 612 611 /** Request callback connection. 613 612 * 614 * The @a task _idand @a phonehash identifiers returned613 * The @a taskhash and @a phonehash identifiers returned 615 614 * by the kernel can be used for connection tracking. 616 615 * … … 619 618 * @param arg2 User defined argument. 620 619 * @param arg3 User defined argument. 621 * @param task _id Identifier of the client task.620 * @param taskhash Opaque identifier of the client task. 622 621 * @param phonehash Opaque identifier of the phone that will 623 622 * be used for incoming calls. … … 627 626 */ 628 627 int ipc_connect_to_me(int phoneid, sysarg_t arg1, sysarg_t arg2, sysarg_t arg3, 629 task_id_t *task_id, sysarg_t *phonehash) 630 { 631 ipc_call_t data; 632 int rc = __SYSCALL6(SYS_IPC_CALL_SYNC_FAST, phoneid, 633 IPC_M_CONNECT_TO_ME, arg1, arg2, arg3, (sysarg_t) &data); 634 if (rc == EOK) { 635 *task_id = data.in_task_id; 636 *phonehash = IPC_GET_ARG5(data); 637 } 638 return rc; 628 sysarg_t *taskhash, sysarg_t *phonehash) 629 { 630 return ipc_call_sync_3_5(phoneid, IPC_M_CONNECT_TO_ME, arg1, arg2, 631 arg3, NULL, NULL, NULL, taskhash, phonehash); 639 632 } 640 633 -
uspace/lib/c/generic/private/async.h
rac08cd9 r6ab014d 36 36 #define LIBC_PRIVATE_ASYNC_H_ 37 37 38 #include < async.h>38 #include <ipc/common.h> 39 39 #include <adt/list.h> 40 40 #include <fibril.h> 41 #include <fibril_synch.h>42 41 #include <sys/time.h> 43 42 #include <bool.h> 44 45 /** Session data */46 struct _async_sess {47 /** List of inactive exchanges */48 list_t exch_list;49 50 /** Exchange management style */51 exch_mgmt_t mgmt;52 53 /** Session identification */54 int phone;55 56 /** First clone connection argument */57 sysarg_t arg1;58 59 /** Second clone connection argument */60 sysarg_t arg2;61 62 /** Third clone connection argument */63 sysarg_t arg3;64 65 /** Exchange mutex */66 fibril_mutex_t mutex;67 68 /** Number of opened exchanges */69 atomic_t refcnt;70 71 /** Mutex for stateful connections */72 fibril_mutex_t remote_state_mtx;73 74 /** Data for stateful connections */75 void *remote_state_data;76 };77 78 /** Exchange data */79 struct _async_exch {80 /** Link into list of inactive exchanges */81 link_t sess_link;82 83 /** Link into global list of inactive exchanges */84 link_t global_link;85 86 /** Session pointer */87 async_sess_t *sess;88 89 /** Exchange identification */90 int phone;91 };92 43 93 44 /** Structures of this type are used to track the timeout events. */ -
uspace/lib/c/include/async.h
rac08cd9 r6ab014d 42 42 #include <ipc/common.h> 43 43 #include <fibril.h> 44 #include <fibril_synch.h> 44 45 #include <sys/time.h> 45 46 #include <atomic.h> … … 95 96 } exch_mgmt_t; 96 97 97 /** Forward declarations */ 98 struct _async_exch; 99 struct _async_sess; 100 101 typedef struct _async_sess async_sess_t; 102 typedef struct _async_exch async_exch_t; 98 /** Session data */ 99 typedef struct { 100 /** List of inactive exchanges */ 101 list_t exch_list; 102 103 /** Exchange management style */ 104 exch_mgmt_t mgmt; 105 106 /** Session identification */ 107 int phone; 108 109 /** First clone connection argument */ 110 sysarg_t arg1; 111 112 /** Second clone connection argument */ 113 sysarg_t arg2; 114 115 /** Third clone connection argument */ 116 sysarg_t arg3; 117 118 /** Exchange mutex */ 119 fibril_mutex_t mutex; 120 121 /** Number of opened exchanges */ 122 atomic_t refcnt; 123 } async_sess_t; 124 125 /** Exchange data */ 126 typedef struct { 127 /** Link into list of inactive exchanges */ 128 link_t sess_link; 129 130 /** Link into global list of inactive exchanges */ 131 link_t global_link; 132 133 /** Session pointer */ 134 async_sess_t *sess; 135 136 /** Exchange identification */ 137 int phone; 138 } async_exch_t; 103 139 104 140 extern atomic_t threads_in_ipc_wait; … … 449 485 extern int async_state_change_finalize(ipc_callid_t, async_exch_t *); 450 486 451 extern void *async_remote_state_acquire(async_sess_t *);452 extern void async_remote_state_update(async_sess_t *, void *);453 extern void async_remote_state_release(async_sess_t *);454 extern void async_remote_state_release_exchange(async_exch_t *);455 456 487 #endif 457 488 -
uspace/lib/c/include/ipc/ipc.h
rac08cd9 r6ab014d 254 254 sysarg_t, sysarg_t, void *, ipc_async_callback_t, bool); 255 255 256 extern int ipc_connect_to_me(int, sysarg_t, sysarg_t, sysarg_t, task_id_t *,256 extern int ipc_connect_to_me(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t *, 257 257 sysarg_t *); 258 258 extern int ipc_connect_me(int); -
uspace/lib/clui/tinput.c
rac08cd9 r6ab014d 591 591 } 592 592 593 /* Print a list of completions */594 static void tinput_show_completions(tinput_t *ti, char **compl, size_t cnum)595 {596 unsigned int i;597 /* Determine the maximum length of the completion in chars */598 size_t max_length = 0;599 for (i = 0; i < cnum; i++)600 max_length = max(max_length, str_length(compl[i]));601 602 unsigned int cols = max(1, (ti->con_cols + 1) / (max_length + 1));603 unsigned int col_width = ti->con_cols / cols;604 unsigned int rows = cnum / cols + ((cnum % cols) != 0);605 606 unsigned int row, col;607 608 for (row = 0; row < rows; row++) {609 bool wlc = false;610 for (col = 0; col < cols; col++) {611 size_t compl_idx = col * rows + row;612 if (compl_idx >= cnum)613 break;614 if (col)615 printf(" ");616 printf("%s", compl[compl_idx]);617 size_t compl_len = str_length(compl[compl_idx]);618 if (col == cols -1) {619 wlc = (compl_len == max_length);620 }621 else {622 for (i = compl_len; i < col_width; i++) {623 printf(" ");624 }625 }626 }627 if (!wlc) printf("\n");628 }629 }630 631 632 593 static void tinput_text_complete(tinput_t *ti) 633 594 { … … 715 676 716 677 tinput_jump_after(ti); 717 tinput_show_completions(ti, compl, cnum); 678 for (i = 0; i < cnum; i++) 679 printf("%s\n", compl[i]); 718 680 tinput_display(ti); 719 681 }
Note:
See TracChangeset
for help on using the changeset viewer.