亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? entry.s

?? 是關于linux2.5.1的完全源碼
?? S
?? 第 1 頁 / 共 2 頁
字號:
/* *  linux/arch/i386/entry.S * *  Copyright (C) 1991, 1992  Linus Torvalds *//* * entry.S contains the system-call and fault low-level handling routines. * This also contains the timer-interrupt handler, as well as all interrupts * and faults that can result in a task-switch. * * NOTE: This code handles signal-recognition, which happens every time * after a timer-interrupt and after each system call. * * I changed all the .align's to 4 (16 byte alignment), as that's faster * on a 486. * * Stack layout in 'ret_from_system_call': * 	ptrace needs to have all regs on the stack. *	if the order here is changed, it needs to be *	updated in fork.c:copy_process, signal.c:do_signal, *	ptrace.c and ptrace.h * *	 0(%esp) - %ebx *	 4(%esp) - %ecx *	 8(%esp) - %edx *       C(%esp) - %esi *	10(%esp) - %edi *	14(%esp) - %ebp *	18(%esp) - %eax *	1C(%esp) - %ds *	20(%esp) - %es *	24(%esp) - orig_eax *	28(%esp) - %eip *	2C(%esp) - %cs *	30(%esp) - %eflags *	34(%esp) - %oldesp *	38(%esp) - %oldss * * "current" is in register %ebx during any slow entries. */#include <linux/config.h>#include <linux/sys.h>#include <linux/linkage.h>#include <asm/thread_info.h>#include <asm/errno.h>#include <asm/segment.h>#include <asm/smp.h>#include <asm/irq_vectors.h>EBX		= 0x00ECX		= 0x04EDX		= 0x08ESI		= 0x0CEDI		= 0x10EBP		= 0x14EAX		= 0x18DS		= 0x1CES		= 0x20ORIG_EAX	= 0x24EIP		= 0x28CS		= 0x2CEFLAGS		= 0x30OLDESP		= 0x34OLDSS		= 0x38CF_MASK		= 0x00000001IF_MASK		= 0x00000200NT_MASK		= 0x00004000VM_MASK		= 0x00020000/* * These are offsets into the irq_stat structure * There is one per cpu and it is aligned to 32 * byte boundry (we put that here as a shift count) */irq_array_shift	= CONFIG_X86_L1_CACHE_SHIFTlocal_irq_count	= 4local_bh_count	= 8#ifdef CONFIG_SMP#define GET_CPU_IDX \		movl TI_CPU(%ebx), %eax;  \		shll $irq_array_shift, %eax#define GET_CURRENT_CPU_IDX \		GET_THREAD_INFO(%ebx); \		GET_CPU_IDX#define CPU_IDX (,%eax)#else#define GET_CPU_IDX#define GET_CURRENT_CPU_IDX GET_THREAD_INFO(%ebx)#define CPU_IDX#endif#ifdef CONFIG_PREEMPT#define preempt_stop cli#define INC_PRE_COUNT(reg) incl TI_PRE_COUNT(reg);#define DEC_PRE_COUNT(reg) decl TI_PRE_COUNT(reg);#else#define preempt_stop#define INC_PRE_COUNT(reg)#define DEC_PRE_COUNT(reg)#define resume_kernel restore_all#endif#define SAVE_ALL \	cld; \	pushl %es; \	pushl %ds; \	pushl %eax; \	pushl %ebp; \	pushl %edi; \	pushl %esi; \	pushl %edx; \	pushl %ecx; \	pushl %ebx; \	movl $(__KERNEL_DS), %edx; \	movl %edx, %ds; \	movl %edx, %es;#define RESTORE_ALL	\	popl %ebx;	\	popl %ecx;	\	popl %edx;	\	popl %esi;	\	popl %edi;	\	popl %ebp;	\	popl %eax;	\1:	popl %ds;	\2:	popl %es;	\	addl $4, %esp;	\3:	iret;		\.section .fixup,"ax";	\4:	movl $0,(%esp);	\	jmp 1b;		\5:	movl $0,(%esp);	\	jmp 2b;		\6:	pushl %ss;	\	popl %ds;	\	pushl %ss;	\	popl %es;	\	pushl $11;	\	call do_exit;	\.previous;		\.section __ex_table,"a";\	.align 4;	\	.long 1b,4b;	\	.long 2b,5b;	\	.long 3b,6b;	\.previousENTRY(lcall7)	pushfl			# We get a different stack layout with call				# gates, which has to be cleaned up later..	pushl %eax	SAVE_ALL	movl EIP(%esp), %eax	# due to call gates, this is eflags, not eip..	movl CS(%esp), %edx	# this is eip..	movl EFLAGS(%esp), %ecx	# and this is cs..	movl %eax,EFLAGS(%esp)	#	movl %edx,EIP(%esp)	# Now we move them to their "normal" places	movl %ecx,CS(%esp)	#	movl %esp, %ebx	pushl %ebx	andl $-8192, %ebx	# GET_THREAD_INFO	movl TI_EXEC_DOMAIN(%ebx), %edx	# Get the execution domain	movl 4(%edx), %edx	# Get the lcall7 handler for the domain	pushl $0x7	call *%edx	addl $4, %esp	popl %eax	jmp resume_userspaceENTRY(lcall27)	pushfl			# We get a different stack layout with call				# gates, which has to be cleaned up later..	pushl %eax	SAVE_ALL	movl EIP(%esp), %eax	# due to call gates, this is eflags, not eip..	movl CS(%esp), %edx	# this is eip..	movl EFLAGS(%esp), %ecx	# and this is cs..	movl %eax,EFLAGS(%esp)	#	movl %edx,EIP(%esp)	# Now we move them to their "normal" places	movl %ecx,CS(%esp)	#	movl %esp, %ebx	pushl %ebx	andl $-8192, %ebx	# GET_THREAD_INFO	movl TI_EXEC_DOMAIN(%ebx), %edx	# Get the execution domain	movl 4(%edx), %edx	# Get the lcall7 handler for the domain	pushl $0x27	call *%edx	addl $4, %esp	popl %eax	jmp resume_userspaceENTRY(ret_from_fork)#if CONFIG_SMP || CONFIG_PREEMPT	call SYMBOL_NAME(schedule_tail)#endif	GET_THREAD_INFO(%ebx)	jmp syscall_exit/* * Return to user mode is not as complex as all this looks, * but we want the default path for a system call return to * go as quickly as possible which is why some of this is * less clear than it otherwise should be. */	# userspace resumption stub bypassing syscall exit tracing	ALIGNret_from_intr:	preempt_stop	DEC_PRE_COUNT(%ebx)ret_from_exception:	movl EFLAGS(%esp), %eax		# mix EFLAGS and CS	movb CS(%esp), %al	testl $(VM_MASK | 3), %eax	jz resume_kernel		# returning to kernel or vm86-spaceENTRY(resume_userspace) 	cli				# make sure we don't miss an interrupt					# setting need_resched or sigpending					# between sampling and the iret	movl TI_FLAGS(%ebx), %ecx	andl $_TIF_WORK_MASK, %ecx	# is there any work to be done on					# int/exception return?	jne work_pending	jmp restore_all#ifdef CONFIG_PREEMPTENTRY(resume_kernel)	cmpl $0,TI_PRE_COUNT(%ebx)	jnz restore_all	movl TI_FLAGS(%ebx), %ecx	testb $_TIF_NEED_RESCHED, %cl	jz restore_all	movl SYMBOL_NAME(irq_stat)+local_bh_count CPU_IDX, %ecx	addl SYMBOL_NAME(irq_stat)+local_irq_count CPU_IDX, %ecx	jnz restore_all	movl $PREEMPT_ACTIVE,TI_PRE_COUNT(%ebx)	sti	call SYMBOL_NAME(schedule)	movl $0,TI_PRE_COUNT(%ebx) 	jmp restore_all#endif	# system call handler stub	ALIGNENTRY(system_call)	pushl %eax			# save orig_eax	SAVE_ALL	GET_THREAD_INFO(%ebx)	cmpl $(NR_syscalls), %eax	jae syscall_badsys					# system call tracing in operation	testb $_TIF_SYSCALL_TRACE,TI_FLAGS(%ebx)	jnz syscall_trace_entrysyscall_call:	call *SYMBOL_NAME(sys_call_table)(,%eax,4)	movl %eax,EAX(%esp)		# store the return valuesyscall_exit:	cli				# make sure we don't miss an interrupt					# setting need_resched or sigpending					# between sampling and the iret	movl TI_FLAGS(%ebx), %ecx	testw $_TIF_ALLWORK_MASK, %cx	# current->work	jne syscall_exit_workrestore_all:	RESTORE_ALL	# perform work that needs to be done immediately before resumption	ALIGNwork_pending:	testb $_TIF_NEED_RESCHED, %cl	jz work_notifysigwork_resched:	call SYMBOL_NAME(schedule)	cli				# make sure we don't miss an interrupt					# setting need_resched or sigpending					# between sampling and the iret	movl TI_FLAGS(%ebx), %ecx	andl $_TIF_WORK_MASK, %ecx	# is there any work to be done other					# than syscall tracing?	jz restore_all	testb $_TIF_NEED_RESCHED, %cl	jnz work_reschedwork_notifysig:				# deal with pending signals and					# notify-resume requests	testl $(VM_MASK),EFLAGS(%esp)	movl %esp, %eax	jne work_notifysig_v86		# returning to kernel-space or					# vm86-space	xorl %edx, %edx	call SYMBOL_NAME(do_notify_resume)	jmp restore_all	ALIGNwork_notifysig_v86:	pushl %ecx	call SYMBOL_NAME(save_v86_state)	popl %ecx	movl %eax, %esp	xorl %edx, %edx	call SYMBOL_NAME(do_notify_resume)	jmp restore_all	# perform syscall exit tracing	ALIGNsyscall_trace_entry:	movl $-ENOSYS,EAX(%esp)	movl %esp, %eax	xorl %edx,%edx	call SYMBOL_NAME(do_syscall_trace)	movl ORIG_EAX(%esp), %eax	cmpl $(NR_syscalls), %eax	jnae syscall_call	jmp syscall_exit	# perform syscall exit tracing	ALIGNsyscall_exit_work:	testb $_TIF_SYSCALL_TRACE, %cl	jz work_pending	sti				# could let do_syscall_trace() call					# schedule() instead	movl %esp, %eax	movl $1, %edx	call SYMBOL_NAME(do_syscall_trace)	jmp resume_userspace	ALIGNsyscall_badsys:	movl $-ENOSYS,EAX(%esp)	jmp resume_userspace/* * Build the entry stubs and pointer table with * some assembler magic. */.dataENTRY(interrupt).textvector=0ENTRY(irq_entries_start).rept NR_IRQS	ALIGN1:	pushl $vector-256	jmp common_interrupt.data	.long 1b.textvector=vector+1.endr	ALIGNcommon_interrupt:	SAVE_ALL	GET_THREAD_INFO(%ebx)	INC_PRE_COUNT(%ebx)	call SYMBOL_NAME(do_IRQ)	jmp ret_from_intr#define BUILD_INTERRUPT(name, nr)	\ENTRY(name)				\	pushl $nr-256;			\	SAVE_ALL			\	GET_THREAD_INFO(%ebx);		\	INC_PRE_COUNT(%ebx)		\	call SYMBOL_NAME(smp_/**/name);	\	jmp ret_from_intr;/* * The following vectors are part of the Linux architecture, there * is no hardware IRQ pin equivalent for them, they are triggered * through the ICC by us (IPIs) */#ifdef CONFIG_SMPBUILD_INTERRUPT(reschedule_interrupt,RESCHEDULE_VECTOR)BUILD_INTERRUPT(invalidate_interrupt,INVALIDATE_TLB_VECTOR)BUILD_INTERRUPT(call_function_interrupt,CALL_FUNCTION_VECTOR)#endif/* * every pentium local APIC has two 'local interrupts', with a * soft-definable vector attached to both interrupts, one of * which is a timer interrupt, the other one is error counter * overflow. Linux uses the local APIC timer interrupt to get * a much simpler SMP time architecture: */#ifdef CONFIG_X86_LOCAL_APIC

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费观看91视频大全| 欧美日韩高清一区二区| 丝袜a∨在线一区二区三区不卡| 久久精品国产一区二区| 亚洲精品一区二区三区影院 | 精品美女在线观看| 国产成人精品亚洲777人妖| 一区二区三区精品视频| 6080日韩午夜伦伦午夜伦| 成人免费毛片高清视频| 亚洲午夜久久久久久久久电影院 | 久久不见久久见免费视频1 | 久久久夜色精品亚洲| 99精品热视频| 激情小说欧美图片| 日韩一区欧美小说| 日韩欧美高清一区| 91在线porny国产在线看| 精品一区二区日韩| 亚洲影视资源网| 国产精品亚洲一区二区三区在线| 国产日韩精品一区二区三区在线| 麻豆精品一区二区av白丝在线| 99在线热播精品免费| 91精品国产麻豆国产自产在线| 亚洲mv在线观看| 国产肉丝袜一区二区| 国产精品久久久久久久久果冻传媒| 久久久久久麻豆| 日韩一区和二区| 久久在线观看免费| 欧美国产精品一区二区三区| 精品久久久久久综合日本欧美| 欧美一区二区三区的| 日韩欧美一区电影| 91精品在线免费观看| 国产福利视频一区二区三区| 亚洲人成亚洲人成在线观看图片| 欧美一区二区视频观看视频| 国产精一品亚洲二区在线视频| 国产精品成人在线观看| 欧美亚洲自拍偷拍| 国产毛片一区二区| 国产欧美久久久精品影院| 成人h精品动漫一区二区三区| 国产精品视频一二三| 欧美一级二级在线观看| 欧美顶级少妇做爰| 视频在线观看91| 精品国产三级电影在线观看| 欧美在线免费视屏| 日韩av一二三| 洋洋成人永久网站入口| 国产婷婷色一区二区三区| 国产综合色在线视频区| 香蕉影视欧美成人| 中文字幕精品一区| 亚洲欧美日韩在线| 男人操女人的视频在线观看欧美 | 日韩精品一区二区三区中文精品 | 日韩女优av电影| www.av亚洲| 黄色精品一二区| 午夜精品一区二区三区电影天堂| 日韩一区二区三| 91性感美女视频| 色婷婷av一区二区三区软件| 91社区在线播放| 欧美日韩在线播放一区| 欧美精品 日韩| 欧美mv和日韩mv国产网站| 欧美欧美欧美欧美首页| 欧美第一区第二区| 18成人在线观看| 久久99精品一区二区三区 | 日本欧美一区二区| 国产一区二区三区精品视频| 经典三级一区二区| 91亚洲精品久久久蜜桃| 91精品国产综合久久蜜臀| 91久久精品国产91性色tv| 久久久久久97三级| 亚洲综合精品久久| 国产凹凸在线观看一区二区 | 亚洲精品ww久久久久久p站| 夜夜嗨av一区二区三区中文字幕| 国产一区二区免费看| 538在线一区二区精品国产| 国产精品久久久久久久久免费相片| 亚洲地区一二三色| 国产成人免费在线观看不卡| 欧美一卡二卡在线| 久久精品国产一区二区三 | 欧美刺激午夜性久久久久久久| 国产精品乱人伦| 国模套图日韩精品一区二区| 欧美日韩和欧美的一区二区| 国产精品久久久久久妇女6080| 国产一区二区导航在线播放| 在线不卡一区二区| 亚洲第一主播视频| 在线精品视频免费观看| 国产精品护士白丝一区av| 九九视频精品免费| 欧美xxxxx牲另类人与| 国产精品小仙女| 久久久精品免费网站| 久久国产生活片100| 日韩免费观看高清完整版在线观看| 亚洲图片激情小说| 成人av网站大全| 亚洲精品成人精品456| 欧美色综合网站| 久久成人久久爱| 一区二区三区四区av| 91热门视频在线观看| 亚洲成人午夜电影| 91精品在线观看入口| 成人免费av网站| 亚洲电影一区二区| 日韩欧美国产一区二区在线播放| 久久国产精品72免费观看| 久久精品视频免费| 91麻豆蜜桃一区二区三区| 九九视频精品免费| 亚洲情趣在线观看| 91精品国产91久久久久久一区二区 | 久久一区二区三区国产精品| 91蜜桃在线观看| 久久av中文字幕片| 亚洲女性喷水在线观看一区| 欧美一级黄色大片| 国产成人在线视频网站| 亚洲成人免费av| 国产日韩欧美一区二区三区综合| 97成人超碰视| 国产精品91xxx| 日本亚洲欧美天堂免费| 17c精品麻豆一区二区免费| 欧美一级一区二区| 在线精品视频一区二区| 亚洲国产精品ⅴa在线观看| 91国产成人在线| 99久久婷婷国产精品综合| 成人一级片网址| 狠狠狠色丁香婷婷综合激情| 日韩av中文字幕一区二区| 国产精品久久99| 国产片一区二区| 久久午夜色播影院免费高清| 欧美亚洲高清一区| 欧美精品一卡两卡| 欧美日韩精品三区| 欧美日韩中文精品| 欧美调教femdomvk| 欧美精品乱人伦久久久久久| 制服丝袜亚洲网站| 欧美一级高清大全免费观看| 日韩视频中午一区| 久久亚洲精精品中文字幕早川悠里 | 日本午夜精品视频在线观看| 中文字幕五月欧美| 爽好多水快深点欧美视频| 五月天中文字幕一区二区| 日韩高清在线不卡| 国产资源精品在线观看| 国产高清久久久久| 国产91精品一区二区麻豆亚洲| 成人综合在线视频| 久久品道一品道久久精品| 国产欧美日韩激情| 性做久久久久久免费观看| 久久99精品久久久久久动态图| 成人黄动漫网站免费app| 在线观看一区不卡| 久久久亚洲国产美女国产盗摄| 亚洲欧美色图小说| 免费看日韩精品| 91理论电影在线观看| 欧美mv日韩mv国产网站app| 日韩高清电影一区| 成人丝袜视频网| 日韩视频免费观看高清完整版 | 亚洲成av人片| av亚洲精华国产精华精华| 在线观看国产日韩| 亚洲国产综合色| 91免费在线播放| 久久久久久夜精品精品免费| 午夜久久久影院| 日本高清不卡在线观看| 中文字幕av一区 二区| 久久精品国产77777蜜臀| 日韩三级高清在线| 亚洲大尺度视频在线观看| 色欧美日韩亚洲| 成人欧美一区二区三区白人| 91亚洲资源网| 五月天精品一区二区三区| 精品福利视频一区二区三区|