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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? entry.s

?? ARM 嵌入式 系統(tǒng) 設(shè)計(jì)與實(shí)例開發(fā) 實(shí)驗(yàn)教材 二源碼
?? S
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/* $Id: entry.S,v 1.170 2001/11/13 00:57:05 davem Exp $ * arch/sparc/kernel/entry.S:  Sparc trap low-level entry points. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1996 Eddie C. Dost   (ecd@skynet.be) * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx) * Copyright (C) 1996-1999 Jakub Jelinek   (jj@sunsite.mff.cuni.cz) * Copyright (C) 1997 Anton Blanchard (anton@progsoc.uts.edu.au) */#include <linux/config.h>#include <linux/errno.h>#include <asm/head.h>#include <asm/asi.h>#include <asm/smp.h>#include <asm/kgdb.h>#include <asm/contregs.h>#include <asm/ptrace.h>#include <asm/psr.h>#include <asm/cprefix.h>#include <asm/vaddrs.h>#include <asm/memreg.h>#include <asm/page.h>#ifdef CONFIG_SUN4#include <asm/pgtsun4.h>#else#include <asm/pgtsun4c.h>#endif#include <asm/winmacro.h>#include <asm/signal.h>#include <asm/obio.h>#include <asm/mxcc.h>#include <asm/asmmacro.h>#define curptr      g6#define NR_SYSCALLS 256      /* Each OS is different... *//* First, KGDB low level things.  This is a rewrite * of the routines found in the sparc-stub.c asm() statement * from the gdb distribution.  This is also dual-purpose * as a software trap for userlevel programs. */	.data	.align	4in_trap_handler:	.word	0	.text	.align	4! This function is called when any SPARC trap (except window overflow or! underflow) occurs.  It makes sure that the invalid register window is still! available before jumping into C code.  It will also restore the world if you! return from handle_exception.	.globl	C_LABEL(trap_low)C_LABEL(trap_low):	rd	%wim, %l3	SAVE_ALL	sethi	%hi(in_trap_handler), %l4	ld	[%lo(in_trap_handler) + %l4], %l5	inc	%l5	st	%l5, [%lo(in_trap_handler) + %l4]	/* Make sure kgdb sees the same state we just saved. */	LOAD_PT_GLOBALS(sp)	LOAD_PT_INS(sp)	ld	[%sp + REGWIN_SZ + PT_Y], %l4	ld	[%sp + REGWIN_SZ + PT_WIM], %l3	ld	[%sp + REGWIN_SZ + PT_PSR], %l0	ld	[%sp + REGWIN_SZ + PT_PC], %l1	ld	[%sp + REGWIN_SZ + PT_NPC], %l2	rd	%tbr, %l5	/* Never changes... */	/* Make kgdb exception frame. */		sub	%sp,(16+1+6+1+72)*4,%sp	! Make room for input & locals 					! + hidden arg + arg spill					! + doubleword alignment					! + registers[72] local var	SAVE_KGDB_GLOBALS(sp)	SAVE_KGDB_INS(sp)	SAVE_KGDB_SREGS(sp, l4, l0, l3, l5, l1, l2)	/* We are increasing PIL, so two writes. */	or	%l0, PSR_PIL, %l0	wr	%l0, 0, %psr	WRITE_PAUSE	wr	%l0, PSR_ET, %psr	WRITE_PAUSE	call	C_LABEL(handle_exception)	 add	%sp, REGWIN_SZ, %o0	! Pass address of registers	/* Load new kgdb register set. */	LOAD_KGDB_GLOBALS(sp)	LOAD_KGDB_INS(sp)	LOAD_KGDB_SREGS(sp, l4, l0, l3, l5, l1, l2)	wr      %l4, 0x0, %y	sethi	%hi(in_trap_handler), %l4	ld	[%lo(in_trap_handler) + %l4], %l5	dec	%l5	st	%l5, [%lo(in_trap_handler) + %l4]	add	%sp,(16+1+6+1+72)*4,%sp	! Undo the kgdb trap frame.	/* Now take what kgdb did and place it into the pt_regs	 * frame which SparcLinux RESTORE_ALL understands.,	 */	STORE_PT_INS(sp)	STORE_PT_GLOBALS(sp)	STORE_PT_YREG(sp, g2)	STORE_PT_PRIV(sp, l0, l1, l2)	RESTORE_ALL#ifdef CONFIG_BLK_DEV_FD	.text	.align	4	.globl	C_LABEL(floppy_hardint)C_LABEL(floppy_hardint):	/*	 * This code cannot touch registers %l0 %l1 and %l2	 * because SAVE_ALL depends on their values. It depends	 * on %l3 also, but we regenerate it before a call.	 * Other registers are:	 * %l3 -- base address of fdc registers	 * %l4 -- pdma_vaddr	 * %l5 -- scratch for ld/st address	 * %l6 -- pdma_size	 * %l7 -- scratch [floppy byte, ld/st address, aux. data]	 */	/* Do we have work to do? */	sethi	%hi(C_LABEL(doing_pdma)), %l7	ld	[%l7 + %lo(C_LABEL(doing_pdma))], %l7	cmp	%l7, 0	be	floppy_dosoftint	 nop	/* Load fdc register base */	sethi	%hi(C_LABEL(fdc_status)), %l3	ld	[%l3 + %lo(C_LABEL(fdc_status))], %l3	/* Setup register addresses */	sethi	%hi(C_LABEL(pdma_vaddr)), %l5	! transfer buffer	ld	[%l5 + %lo(C_LABEL(pdma_vaddr))], %l4	sethi	%hi(C_LABEL(pdma_size)), %l5	! bytes to go	ld	[%l5 + %lo(C_LABEL(pdma_size))], %l6next_byte:  	ldub	[%l3], %l7	andcc	%l7, 0x80, %g0		! Does fifo still have data	bz	floppy_fifo_emptied	! fifo has been emptied...	 andcc	%l7, 0x20, %g0		! in non-dma mode still?	bz	floppy_overrun		! nope, overrun	 andcc	%l7, 0x40, %g0		! 0=write 1=read	bz	floppy_write	 sub	%l6, 0x1, %l6	/* Ok, actually read this byte */	ldub	[%l3 + 1], %l7	orcc	%g0, %l6, %g0	stb	%l7, [%l4]	bne	next_byte	 add	%l4, 0x1, %l4	b	floppy_tdone	 nopfloppy_write:	/* Ok, actually write this byte */	ldub	[%l4], %l7	orcc	%g0, %l6, %g0	stb	%l7, [%l3 + 1]	bne	next_byte	 add	%l4, 0x1, %l4	/* fall through... */floppy_tdone:	sethi	%hi(C_LABEL(pdma_vaddr)), %l5	st	%l4, [%l5 + %lo(C_LABEL(pdma_vaddr))]	sethi	%hi(C_LABEL(pdma_size)), %l5	st	%l6, [%l5 + %lo(C_LABEL(pdma_size))]	/* Flip terminal count pin */	set	C_LABEL(auxio_register), %l7	ld	[%l7], %l7	set	C_LABEL(sparc_cpu_model), %l5	ld	[%l5], %l5	subcc   %l5, 1, %g0		/* enum { sun4c = 1 }; */	be	1f	 ldub	[%l7], %l5	or	%l5, 0xc2, %l5	stb	%l5, [%l7]	andn    %l5, 0x02, %l5	b	2f	 nop1:	or      %l5, 0xf4, %l5	stb     %l5, [%l7]	andn    %l5, 0x04, %l52:	/* Kill some time so the bits set */	WRITE_PAUSE	WRITE_PAUSE	stb     %l5, [%l7]	/* Prevent recursion */	sethi	%hi(C_LABEL(doing_pdma)), %l7	b	floppy_dosoftint	 st	%g0, [%l7 + %lo(C_LABEL(doing_pdma))]	/* We emptied the FIFO, but we haven't read everything	 * as of yet.  Store the current transfer address and	 * bytes left to read so we can continue when the next	 * fast IRQ comes in.	 */floppy_fifo_emptied:	sethi	%hi(C_LABEL(pdma_vaddr)), %l5	st	%l4, [%l5 + %lo(C_LABEL(pdma_vaddr))]	sethi	%hi(C_LABEL(pdma_size)), %l7	st	%l6, [%l7 + %lo(C_LABEL(pdma_size))]	/* Restore condition codes */	wr	%l0, 0x0, %psr	WRITE_PAUSE	jmp	%l1	rett	%l2floppy_overrun:	sethi	%hi(C_LABEL(pdma_vaddr)), %l5	st	%l4, [%l5 + %lo(C_LABEL(pdma_vaddr))]	sethi	%hi(C_LABEL(pdma_size)), %l5	st	%l6, [%l5 + %lo(C_LABEL(pdma_size))]	/* Prevent recursion */	sethi	%hi(C_LABEL(doing_pdma)), %l7	st	%g0, [%l7 + %lo(C_LABEL(doing_pdma))]	/* fall through... */floppy_dosoftint:	rd	%wim, %l3	SAVE_ALL	/* Set all IRQs off. */	or	%l0, PSR_PIL, %l4	wr	%l4, 0x0, %psr	WRITE_PAUSE	wr	%l4, PSR_ET, %psr	WRITE_PAUSE	mov	11, %o0			! floppy irq level (unused anyway)	mov	%g0, %o1		! devid is not used in fast interrupts	call	C_LABEL(sparc_floppy_irq)	 add	%sp, REGWIN_SZ, %o2	! struct pt_regs *regs	RESTORE_ALL	#endif /* (CONFIG_BLK_DEV_FD) */	/* Bad trap handler */	.globl	bad_trap_handlerbad_trap_handler:	SAVE_ALL	wr	%l0, PSR_ET, %psr	WRITE_PAUSE	mov	%l7, %o0		! trap number	mov	%l0, %o1		! psr	call	C_LABEL(do_hw_interrupt)	 mov	%l1, %o2		! pc	RESTORE_ALL	/* For now all IRQ's not registered get sent here. handler_irq() will * see if a routine is registered to handle this interrupt and if not * it will say so on the console. */	.align	4	.globl	real_irq_entry, patch_handler_irqreal_irq_entry:	SAVE_ALL#ifdef CONFIG_SMP	.globl	patchme_maybe_smp_msg	cmp	%l7, 12patchme_maybe_smp_msg:	bgu	maybe_smp4m_msg	 nop#endifreal_irq_continue:	or	%l0, PSR_PIL, %g2	wr	%g2, 0x0, %psr	WRITE_PAUSE	wr	%g2, PSR_ET, %psr	WRITE_PAUSE	mov	%l7, %o0		! irq levelpatch_handler_irq:	call	C_LABEL(handler_irq)	 add	%sp, REGWIN_SZ, %o1	! pt_regs ptr	or	%l0, PSR_PIL, %g2	! restore PIL after handler_irq	wr	%g2, PSR_ET, %psr	! keep ET up	WRITE_PAUSE	RESTORE_ALL#ifdef CONFIG_SMP	/* SMP per-cpu ticker interrupts are handled specially. */smp4m_ticker:	bne	real_irq_continue+4	 or	%l0, PSR_PIL, %g2	wr	%g2, 0x0, %psr	WRITE_PAUSE	wr	%g2, PSR_ET, %psr	WRITE_PAUSE	call	C_LABEL(smp4m_percpu_timer_interrupt)	 add	%sp, REGWIN_SZ, %o0	wr	%l0, PSR_ET, %psr	WRITE_PAUSE	RESTORE_ALL	/* Here is where we check for possible SMP IPI passed to us	 * on some level other than 15 which is the NMI and only used	 * for cross calls.  That has a separate entry point below.	 */maybe_smp4m_msg:	GET_PROCESSOR_MID(o3, o2)	set	C_LABEL(sun4m_interrupts), %l5	ld	[%l5], %o5	sethi	%hi(0x60000000), %o4	sll	%o3, 12, %o3	ld	[%o5 + %o3], %o1	andcc	%o1, %o4, %g0	be,a	smp4m_ticker	 cmp	%l7, 14	cmp	%l7, 13	add	%o5, %o3, %o5	bne,a	1f	 sethi	%hi(0x40000000), %o2	sethi	%hi(0x20000000), %o21:	st	%o2, [%o5 + 0x4]	WRITE_PAUSE	ld	[%o5], %g0	WRITE_PAUSE	or	%l0, PSR_PIL, %l4	wr	%l4, 0x0, %psr	WRITE_PAUSE	wr	%l4, PSR_ET, %psr	WRITE_PAUSE	cmp	%l7, 13	bne	2f	 nop	call	C_LABEL(smp_reschedule_irq)	 add	%o7, 8, %o72:	call	C_LABEL(smp_stop_cpu_irq)	 nop	RESTORE_ALL	.align	4	.globl	linux_trap_ipi15_sun4mlinux_trap_ipi15_sun4m:	SAVE_ALL	sethi	%hi(0x80000000), %o2	GET_PROCESSOR_MID(o0, o1)	set	C_LABEL(sun4m_interrupts), %l5	ld	[%l5], %o5	sll	%o0, 12, %o0	add	%o5, %o0, %o5	ld	[%o5], %o3	andcc	%o3, %o2, %g0	be	1f			! Must be an NMI async memory error	 st	%o2, [%o5 + 4]	WRITE_PAUSE	ld	[%o5], %g0	WRITE_PAUSE	or	%l0, PSR_PIL, %l4	wr	%l4, 0x0, %psr	WRITE_PAUSE	wr	%l4, PSR_ET, %psr	WRITE_PAUSE	call	C_LABEL(smp4m_cross_call_irq)	 nop	b	ret_trap_lockless_ipi	 clr	%l61:	/* NMI async memory error handling. */	sethi	%hi(0x80000000), %l4	sethi	%hi(0x4000), %o3	sub	%o5, %o0, %o5	add	%o5, %o3, %l5	st	%l4, [%l5 + 0xc]	WRITE_PAUSE	ld	[%l5], %g0	WRITE_PAUSE	or	%l0, PSR_PIL, %l4	wr	%l4, 0x0, %psr	WRITE_PAUSE	wr	%l4, PSR_ET, %psr	WRITE_PAUSE	call	C_LABEL(sun4m_nmi)	 nop	st	%l4, [%l5 + 0x8]	WRITE_PAUSE	ld	[%l5], %g0	WRITE_PAUSE	RESTORE_ALL	.globl	smp4d_ticker	/* SMP per-cpu ticker interrupts are handled specially. */smp4d_ticker:	SAVE_ALL	or	%l0, PSR_PIL, %g2	sethi	%hi(CC_ICLR), %o0	sethi	%hi(1 << 14), %o1	or	%o0, %lo(CC_ICLR), %o0	stha	%o1, [%o0] ASI_M_MXCC	/* Clear PIL 14 in MXCC's ICLR */	wr	%g2, 0x0, %psr	WRITE_PAUSE	wr	%g2, PSR_ET, %psr	WRITE_PAUSE	call	C_LABEL(smp4d_percpu_timer_interrupt)	 add	%sp, REGWIN_SZ, %o0	wr	%l0, PSR_ET, %psr	WRITE_PAUSE	RESTORE_ALL	.align	4	.globl	linux_trap_ipi15_sun4dlinux_trap_ipi15_sun4d:	SAVE_ALL	sethi	%hi(CC_BASE), %o4	sethi	%hi(MXCC_ERR_ME|MXCC_ERR_PEW|MXCC_ERR_ASE|MXCC_ERR_PEE), %o2	or	%o4, (CC_EREG - CC_BASE), %o0	ldda	[%o0] ASI_M_MXCC, %o0	andcc	%o0, %o2, %g0	bne	1f	 sethi	%hi(BB_STAT2), %o2	lduba	[%o2] ASI_M_CTL, %o2	andcc	%o2, BB_STAT2_MASK, %g0	bne	2f	 or	%o4, (CC_ICLR - CC_BASE), %o0	sethi	%hi(1 << 15), %o1	stha	%o1, [%o0] ASI_M_MXCC	/* Clear PIL 15 in MXCC's ICLR */	or	%l0, PSR_PIL, %l4	wr	%l4, 0x0, %psr	WRITE_PAUSE	wr	%l4, PSR_ET, %psr	WRITE_PAUSE	call	C_LABEL(smp4d_cross_call_irq)	 nop	b	ret_trap_lockless_ipi	 clr	%l61:	/* MXCC error */2:	/* BB error */	/* Disable PIL 15 */	set	CC_IMSK, %l4	lduha	[%l4] ASI_M_MXCC, %l5	sethi	%hi(1 << 15), %l7	or	%l5, %l7, %l5	stha	%l5, [%l4] ASI_M_MXCC	/* FIXME */1:	b,a	1b#endif /* CONFIG_SMP */	/* This routine handles illegal instructions and privileged	 * instruction attempts from user code.	 */	.align	4	.globl	bad_instructionbad_instruction:	sethi	%hi(0xc1f80000), %l4	ld	[%l1], %l5	sethi	%hi(0x81d80000), %l7	and	%l5, %l4, %l5	cmp	%l5, %l7	be	1f	SAVE_ALL	wr	%l0, PSR_ET, %psr		! re-enable traps	WRITE_PAUSE	add	%sp, REGWIN_SZ, %o0	mov	%l1, %o1	mov	%l2, %o2	call	C_LABEL(do_illegal_instruction)	 mov	%l0, %o3	RESTORE_ALL1:	/* unimplemented flush - just skip */	jmpl	%l2, %g0	 rett	%l2 + 4	.align	4	.globl	priv_instructionpriv_instruction:	SAVE_ALL	wr	%l0, PSR_ET, %psr	WRITE_PAUSE	add	%sp, REGWIN_SZ, %o0	mov	%l1, %o1	mov	%l2, %o2	call	C_LABEL(do_priv_instruction)	 mov	%l0, %o3	RESTORE_ALL	/* This routine handles unaligned data accesses. */	.align	4	.globl	mna_handlermna_handler:	andcc	%l0, PSR_PS, %g0	be	mna_fromuser	 nop	SAVE_ALL	wr	%l0, PSR_ET, %psr	WRITE_PAUSE	ld	[%l1], %o1	call	C_LABEL(kernel_unaligned_trap)	 add	%sp, REGWIN_SZ, %o0	RESTORE_ALLmna_fromuser:	SAVE_ALL	wr	%l0, PSR_ET, %psr		! re-enable traps	WRITE_PAUSE	ld	[%l1], %o1	call	C_LABEL(user_unaligned_trap)	 add	%sp, REGWIN_SZ, %o0	RESTORE_ALL	/* This routine handles floating point disabled traps. */	.align	4	.globl	fpd_trap_handlerfpd_trap_handler:	SAVE_ALL	wr	%l0, PSR_ET, %psr		! re-enable traps	WRITE_PAUSE	add	%sp, REGWIN_SZ, %o0	mov	%l1, %o1	mov	%l2, %o2	call	C_LABEL(do_fpd_trap)	 mov	%l0, %o3	RESTORE_ALL	/* This routine handles Floating Point Exceptions. */	.align	4	.globl	fpe_trap_handlerfpe_trap_handler:	set	fpsave_magic, %l5	cmp	%l1, %l5	be	1f	 sethi	%hi(C_LABEL(fpsave)), %l5	or	%l5, %lo(C_LABEL(fpsave)), %l5	cmp	%l1, %l5	bne	2f	 sethi	%hi(fpsave_catch2), %l5	or	%l5, %lo(fpsave_catch2), %l5	wr	%l0, 0x0, %psr	WRITE_PAUSE	jmp	%l5	 rett	%l5 + 41:		sethi	%hi(fpsave_catch), %l5	or	%l5, %lo(fpsave_catch), %l5	wr	%l0, 0x0, %psr	WRITE_PAUSE	jmp	%l5	 rett	%l5 + 42:	SAVE_ALL	wr	%l0, PSR_ET, %psr		! re-enable traps	WRITE_PAUSE	add	%sp, REGWIN_SZ, %o0	mov	%l1, %o1	mov	%l2, %o2	call	C_LABEL(do_fpe_trap)	 mov	%l0, %o3	RESTORE_ALL	/* This routine handles Tag Overflow Exceptions. */	.align	4	.globl	do_tag_overflowdo_tag_overflow:	SAVE_ALL	wr	%l0, PSR_ET, %psr		! re-enable traps	WRITE_PAUSE	add	%sp, REGWIN_SZ, %o0	mov	%l1, %o1	mov	%l2, %o2	call	C_LABEL(handle_tag_overflow)	 mov	%l0, %o3	RESTORE_ALL	/* This routine handles Watchpoint Exceptions. */	.align	4	.globl	do_watchpointdo_watchpoint:	SAVE_ALL	wr	%l0, PSR_ET, %psr		! re-enable traps	WRITE_PAUSE	add	%sp, REGWIN_SZ, %o0	mov	%l1, %o1	mov	%l2, %o2	call	C_LABEL(handle_watchpoint)	 mov	%l0, %o3	RESTORE_ALL

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃久久久久久久| 国产精品久久网站| 91成人免费电影| 色综合久久综合网| 色悠悠久久综合| 成人免费观看av| 99久久99久久免费精品蜜臀| 成人网在线播放| 成人精品小蝌蚪| 99精品欧美一区二区三区综合在线| 国产高清精品网站| 成人黄页在线观看| 97国产一区二区| 欧美视频自拍偷拍| 91精品在线麻豆| 精品久久久网站| 中文字幕永久在线不卡| 一级特黄大欧美久久久| 视频一区国产视频| 美日韩一区二区| 国产91综合一区在线观看| 91在线精品秘密一区二区| 在线免费观看日本一区| 日韩一区二区精品在线观看| 久久久国产综合精品女国产盗摄| 久久久精品国产免大香伊| 国产精品高潮久久久久无| 一区二区三区成人在线视频 | 日本精品免费观看高清观看| 色婷婷激情综合| 欧美精品在线一区二区三区| 久久一夜天堂av一区二区三区| 自拍偷拍亚洲综合| 肉丝袜脚交视频一区二区| 国内国产精品久久| 色婷婷av一区| 欧美精品一区二区三区四区| 亚洲图片你懂的| 精品一区二区三区免费视频| 91色.com| 久久综合九色综合97婷婷女人| 自拍av一区二区三区| 日韩一区精品视频| 国产69精品久久久久777| 欧美日韩综合在线免费观看| 国产午夜久久久久| 午夜精品久久一牛影视| 不卡区在线中文字幕| 日韩欧美高清在线| 亚洲成人午夜影院| 丰满少妇久久久久久久| 日韩限制级电影在线观看| 亚洲欧美日韩中文播放 | 一本大道av伊人久久综合| 日韩欧美激情四射| 亚洲午夜激情av| 99re66热这里只有精品3直播| 精品久久久久久最新网址| 亚洲综合色网站| 色综合久久天天综合网| 国产日产欧产精品推荐色| 日韩成人精品在线| 欧美体内she精视频| 中文字幕在线观看一区二区| 国产成+人+日韩+欧美+亚洲| 欧美va日韩va| 日本vs亚洲vs韩国一区三区 | 成人午夜免费电影| 日韩精品一区二区在线观看| 午夜视频久久久久久| 在线看日韩精品电影| 亚洲精品国产一区二区精华液 | 欧美日韩国产美女| 一区二区三区高清| 91福利国产精品| 一区二区三区电影在线播| 99精品久久只有精品| 亚洲三级理论片| 91成人免费电影| 亚洲在线免费播放| 欧美影院一区二区| 亚洲一区二区三区精品在线| 欧美日韩精品一区二区三区 | 成人爽a毛片一区二区免费| 日韩欧美亚洲国产另类| 日韩国产精品91| 久久蜜臀中文字幕| 国产精品123| 国产精品久久久久9999吃药| www.日韩大片| 一区二区三区电影在线播| 欧美日韩免费电影| 精品一区二区三区免费| 国产欧美精品区一区二区三区 | 蜜桃精品在线观看| 精品国产乱码久久久久久夜甘婷婷 | 日韩欧美亚洲国产另类| 国产精品综合二区| 日韩美女视频一区| 9191久久久久久久久久久| 久久国产尿小便嘘嘘尿| 欧美国产日韩a欧美在线观看| av一二三不卡影片| 天天操天天色综合| 欧美精品一区二区高清在线观看| 国产精品911| 亚洲午夜免费视频| 久久色.com| 91蝌蚪porny| 久久99热99| 亚洲女人****多毛耸耸8| 日韩三区在线观看| 99re热视频这里只精品| 青青草91视频| 亚洲青青青在线视频| 欧美成人aa大片| 色婷婷精品久久二区二区蜜臂av| 看片的网站亚洲| 亚洲精品成人a在线观看| 欧美日韩高清一区二区不卡| 丁香一区二区三区| 人人精品人人爱| 亚洲欧美视频在线观看| 欧美精品一区二区三区高清aⅴ | 丝袜诱惑制服诱惑色一区在线观看| 精品国产乱码久久久久久夜甘婷婷 | 亚洲国产精品久久久久婷婷884 | 成人动漫中文字幕| 五月天激情综合网| 亚洲啪啪综合av一区二区三区| 精品处破学生在线二十三| 欧美三级蜜桃2在线观看| 国产成人综合亚洲91猫咪| 亚洲图片有声小说| 最新热久久免费视频| 国产亚洲综合在线| 欧美一级高清片在线观看| 91国产视频在线观看| 99vv1com这只有精品| 国产成人福利片| 国内外成人在线| 日韩精品一级中文字幕精品视频免费观看| 亚洲欧洲在线观看av| 国产精品电影院| 国产拍揄自揄精品视频麻豆| 久久这里都是精品| 欧美大片拔萝卜| 欧美一区二区在线视频| 7777精品伊人久久久大香线蕉经典版下载 | 日韩久久精品一区| 538prom精品视频线放| 在线观看一区不卡| 欧美中文字幕不卡| 欧美亚洲另类激情小说| 在线观看日韩国产| 在线精品视频一区二区| 欧美日韩精品一区二区在线播放| 色婷婷av一区二区三区软件| 在线视频欧美精品| 欧美在线视频全部完| 在线精品视频免费播放| 欧美另类z0zxhd电影| 欧美乱妇20p| 精品国产髙清在线看国产毛片| 日韩三级视频在线观看| www国产亚洲精品久久麻豆| 国产日韩精品一区二区三区| 国产精品三级av| 亚洲视频免费观看| 亚洲国产综合在线| 免费高清在线视频一区·| 狠狠色丁香婷综合久久| 东方aⅴ免费观看久久av| 一本一本大道香蕉久在线精品 | 精品一区二区三区免费毛片爱| 久久69国产一区二区蜜臀| 国产自产2019最新不卡| 91在线无精精品入口| 欧美男男青年gay1069videost| 日韩色在线观看| 国产精品久久久久四虎| 亚洲一区二区三区中文字幕| 裸体在线国模精品偷拍| 福利91精品一区二区三区| 欧美视频一区二区三区在线观看 | 亚洲主播在线播放| 美女一区二区久久| 不卡在线观看av| 欧美一区二区三区播放老司机| 精品国产一区二区亚洲人成毛片| 中文字幕中文在线不卡住| 午夜精品福利久久久| 成人av午夜影院| 日韩一区二区三区免费看| 亚洲人妖av一区二区| 裸体歌舞表演一区二区| 91福利国产精品| 国产精品午夜在线| 麻豆成人综合网| 在线观看免费亚洲|