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

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

?? crosstool-0.32-softfloatlib-1.diff

?? 做好的交叉編譯工具鏈
?? DIFF
?? 第 1 頁 / 共 5 頁
字號:
diff -urN crosstool-0.32/patches/gcc-3.3.2/gcc-3.3.2-arm-softfloat.patch crosstool-0.32-sf/patches/gcc-3.3.2/gcc-3.3.2-arm-softfloat.patch--- crosstool-0.32/patches/gcc-3.3.2/gcc-3.3.2-arm-softfloat.patch	1970-01-01 01:00:00.000000000 +0100+++ crosstool-0.32-sf/patches/gcc-3.3.2/gcc-3.3.2-arm-softfloat.patch	2005-06-09 13:14:02.000000000 +0200@@ -0,0 +1,2891 @@+#+# Submitted:+#+# Robert Schwebel <r.schwebel@pengutronix.de>, 2004-01-28+#+# Error:+#+# gcc-3.3.3 doesn't seem to have soft float support, so linking against +# libgcc.a doesn't work when compiled with -msoft-float+#+# Description:+#+# Nicholas Pitre released this patch here: +# http://lists.arm.linux.org.uk/pipermail/linux-arm/2003-October/006436.html+#+# The patch had to be extended by the first two hunks below, otherwhise+# the compiler claimed a mixup of old and new style FPU options while+# compiling U-Boot. +# +# State:+#+# unknown+#+# sha,mkl: changed behaviour:+#      -msoft-float generates vfp softfloat+#      without option gcc generates vfp softfloat, too+#      -mhard-float generates hard float+#+# Old behaviour was to generate soft-fpa code when called without+# -msoft-float and to generate soft-vfp when called with -msoft-float+# making it impossible to link these object files together++# [dank: See also patches/glibc-2.3.2/glibc-vfp.patch]+diff -urN gcc-3.3.2-be/gcc/config/arm/elf.h gcc-3.3.2-be-sf/gcc/config/arm/elf.h+--- gcc-3.3.2-be/gcc/config/arm/elf.h	2002-11-21 22:29:24.000000000 +0100++++ gcc-3.3.2-be-sf/gcc/config/arm/elf.h	2005-06-09 13:11:49.000000000 +0200+@@ -46,7 +46,7 @@+ + #ifndef SUBTARGET_ASM_FLOAT_SPEC+ #define SUBTARGET_ASM_FLOAT_SPEC "\+-%{mapcs-float:-mfloat} %{msoft-float:-mno-fpu}"++%{mapcs-float:-mfloat} %{msoft-float:-mfpu=softvfp}"+ #endif+ + #ifndef ASM_SPEC+diff -urN gcc-3.3.2-be/gcc/config/arm/ieee754-df.S gcc-3.3.2-be-sf/gcc/config/arm/ieee754-df.S+--- gcc-3.3.2-be/gcc/config/arm/ieee754-df.S	1970-01-01 01:00:00.000000000 +0100++++ gcc-3.3.2-be-sf/gcc/config/arm/ieee754-df.S	2005-06-09 13:11:49.000000000 +0200+@@ -0,0 +1,1224 @@++/* ieee754-df.S double-precision floating point support for ARM++++   Copyright (C) 2003  Free Software Foundation, Inc.++   Contributed by Nicolas Pitre (nico@cam.org)++++   This file is free software; you can redistribute it and/or modify it++   under the terms of the GNU General Public License as published by the++   Free Software Foundation; either version 2, or (at your option) any++   later version.++++   In addition to the permissions in the GNU General Public License, the++   Free Software Foundation gives you unlimited permission to link the++   compiled version of this file into combinations with other programs,++   and to distribute those combinations without any restriction coming++   from the use of this file.  (The General Public License restrictions++   do apply in other respects; for example, they cover modification of++   the file, and distribution when not linked into a combine++   executable.)++++   This file is distributed in the hope that it will be useful, but++   WITHOUT ANY WARRANTY; without even the implied warranty of++   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU++   General Public License for more details.++++   You should have received a copy of the GNU General Public License++   along with this program; see the file COPYING.  If not, write to++   the Free Software Foundation, 59 Temple Place - Suite 330,++   Boston, MA 02111-1307, USA.  */++++/*++ * Notes: ++ * ++ * The goal of this code is to be as fast as possible.  This is++ * not meant to be easy to understand for the casual reader.++ * For slightly simpler code please see the single precision version++ * of this file.++ * ++ * Only the default rounding mode is intended for best performances.++ * Exceptions aren't supported yet, but that can be added quite easily++ * if necessary without impacting performances.++ */++++++@ For FPA, float words are always big-endian.++@ For VFP, floats words follow the memory system mode.++#if defined(__VFP_FP__) && !defined(__ARMEB__)++#define xl r0++#define xh r1++#define yl r2++#define yh r3++#else++#define xh r0++#define xl r1++#define yh r2++#define yl r3++#endif++++++#ifdef L_negdf2++++ARM_FUNC_START negdf2++	@ flip sign bit++	eor	xh, xh, #0x80000000++	RET++++	FUNC_END negdf2++++#endif++++#ifdef L_addsubdf3++++ARM_FUNC_START subdf3++	@ flip sign bit of second arg++	eor	yh, yh, #0x80000000++#if defined(__thumb__) && !defined(__THUMB_INTERWORK__)++	b	1f			@ Skip Thumb-code prologue++#endif++++ARM_FUNC_START adddf3++++1:	@ Compare both args, return zero if equal but the sign.++	teq	xl, yl++	eoreq	ip, xh, yh++	teqeq	ip, #0x80000000++	beq	LSYM(Lad_z)++++	@ If first arg is 0 or -0, return second arg.++	@ If second arg is 0 or -0, return first arg.++	orrs	ip, xl, xh, lsl #1++	moveq	xl, yl++	moveq	xh, yh++	orrnes	ip, yl, yh, lsl #1++	RETc(eq)++++	stmfd	sp!, {r4, r5, lr}++++	@ Mask out exponents.++	mov	ip, #0x7f000000++	orr	ip, ip, #0x00f00000++	and	r4, xh, ip++	and	r5, yh, ip++++	@ If either of them is 0x7ff, result will be INF or NAN++	teq	r4, ip++	teqne	r5, ip++	beq	LSYM(Lad_i)++++	@ Compute exponent difference.  Make largest exponent in r4,++	@ corresponding arg in xh-xl, and positive exponent difference in r5.++	subs	r5, r5, r4++	rsblt	r5, r5, #0++	ble	1f++	add	r4, r4, r5++	eor	yl, xl, yl++	eor	yh, xh, yh++	eor	xl, yl, xl++	eor	xh, yh, xh++	eor	yl, xl, yl++	eor	yh, xh, yh++1:++++	@ If exponent difference is too large, return largest argument++	@ already in xh-xl.  We need up to 54 bit to handle proper rounding++	@ of 0x1p54 - 1.1.++	cmp	r5, #(54 << 20)++	RETLDM	"r4, r5" hi++++	@ Convert mantissa to signed integer.++	tst	xh, #0x80000000++	bic	xh, xh, ip, lsl #1++	orr	xh, xh, #0x00100000++	beq	1f++	rsbs	xl, xl, #0++	rsc	xh, xh, #0++1:++	tst	yh, #0x80000000++	bic	yh, yh, ip, lsl #1++	orr	yh, yh, #0x00100000++	beq	1f++	rsbs	yl, yl, #0++	rsc	yh, yh, #0++1:++	@ If exponent == difference, one or both args were denormalized.++	@ Since this is not common case, rescale them off line.++	teq	r4, r5++	beq	LSYM(Lad_d)++LSYM(Lad_x):++	@ Scale down second arg with exponent difference.++	@ Apply shift one bit left to first arg and the rest to second arg++	@ to simplify things later, but only if exponent does not become 0.++	mov	ip, #0++	movs	r5, r5, lsr #20++	beq	3f++	teq	r4, #(1 << 20)++	beq	1f++	movs	xl, xl, lsl #1++	adc	xh, ip, xh, lsl #1++	sub	r4, r4, #(1 << 20)++	subs	r5, r5, #1++	beq	3f++++	@ Shift yh-yl right per r5, keep leftover bits into ip.++1:	rsbs	lr, r5, #32++	blt	2f++	mov	ip, yl, lsl lr++	mov	yl, yl, lsr r5++	orr	yl, yl, yh, lsl lr++	mov	yh, yh, asr r5++	b	3f++2:	sub	r5, r5, #32++	add	lr, lr, #32++	cmp	yl, #1++	adc	ip, ip, yh, lsl lr++	mov	yl, yh, asr r5++	mov	yh, yh, asr #32++3:++	@ the actual addition++	adds	xl, xl, yl++	adc	xh, xh, yh++++	@ We now have a result in xh-xl-ip.++	@ Keep absolute value in xh-xl-ip, sign in r5.++	ands	r5, xh, #0x80000000++	bpl	LSYM(Lad_p)++	rsbs	ip, ip, #0++	rscs	xl, xl, #0++	rsc	xh, xh, #0++++	@ Determine how to normalize the result.++LSYM(Lad_p):++	cmp	xh, #0x00100000++	bcc	LSYM(Lad_l)++	cmp	xh, #0x00200000++	bcc	LSYM(Lad_r0)++	cmp	xh, #0x00400000++	bcc	LSYM(Lad_r1)++++	@ Result needs to be shifted right.++	movs	xh, xh, lsr #1++	movs	xl, xl, rrx++	movs	ip, ip, rrx++	orrcs	ip, ip, #1++	add	r4, r4, #(1 << 20)++LSYM(Lad_r1):++	movs	xh, xh, lsr #1++	movs	xl, xl, rrx++	movs	ip, ip, rrx++	orrcs	ip, ip, #1++	add	r4, r4, #(1 << 20)++++	@ Our result is now properly aligned into xh-xl, remaining bits in ip.++	@ Round with MSB of ip. If halfway between two numbers, round towards++	@ LSB of xl = 0.++LSYM(Lad_r0):++	adds	xl, xl, ip, lsr #31++	adc	xh, xh, #0++	teq	ip, #0x80000000++	biceq	xl, xl, #1++++	@ One extreme rounding case may add a new MSB.  Adjust exponent.++	@ That MSB will be cleared when exponent is merged below. ++	tst	xh, #0x00200000++	addne	r4, r4, #(1 << 20)++++	@ Make sure we did not bust our exponent.++	adds	ip, r4, #(1 << 20)++	bmi	LSYM(Lad_o)++++	@ Pack final result together.++LSYM(Lad_e):++	bic	xh, xh, #0x00300000++	orr	xh, xh, r4++	orr	xh, xh, r5++	RETLDM	"r4, r5"++++LSYM(Lad_l):++	@ Result must be shifted left and exponent adjusted.++	@ No rounding necessary since ip will always be 0.++#if __ARM_ARCH__ < 5++++	teq	xh, #0++	movne	r3, #-11++	moveq	r3, #21++	moveq	xh, xl++	moveq	xl, #0++	mov	r2, xh++	movs	ip, xh, lsr #16++	moveq	r2, r2, lsl #16++	addeq	r3, r3, #16++	tst	r2, #0xff000000++	moveq	r2, r2, lsl #8++	addeq	r3, r3, #8++	tst	r2, #0xf0000000++	moveq	r2, r2, lsl #4++	addeq	r3, r3, #4++	tst	r2, #0xc0000000++	moveq	r2, r2, lsl #2++	addeq	r3, r3, #2++	tst	r2, #0x80000000++	addeq	r3, r3, #1++++#else++++	teq	xh, #0++	moveq	xh, xl++	moveq	xl, #0++	clz	r3, xh++	addeq	r3, r3, #32++	sub	r3, r3, #11++++#endif++++	@ determine how to shift the value.++	subs	r2, r3, #32++	bge	2f++	adds	r2, r2, #12++	ble	1f++++	@ shift value left 21 to 31 bits, or actually right 11 to 1 bits++	@ since a register switch happened above.++	add	ip, r2, #20++	rsb	r2, r2, #12++	mov	xl, xh, lsl ip++	mov	xh, xh, lsr r2++	b	3f++++	@ actually shift value left 1 to 20 bits, which might also represent++	@ 32 to 52 bits if counting the register switch that happened earlier.++1:	add	r2, r2, #20++2:	rsble	ip, r2, #32++	mov	xh, xh, lsl r2++	orrle	xh, xh, xl, lsr ip++	movle	xl, xl, lsl r2++++	@ adjust exponent accordingly.++3:	subs	r4, r4, r3, lsl #20++	bgt	LSYM(Lad_e)++++	@ Exponent too small, denormalize result.++	@ Find out proper shift value.++	mvn	r4, r4, asr #20++	subs	r4, r4, #30++	bge	2f++	adds	r4, r4, #12++	bgt	1f++++	@ shift result right of 1 to 20 bits, sign is in r5.++	add	r4, r4, #20++	rsb	r2, r4, #32++	mov	xl, xl, lsr r4++	orr	xl, xl, xh, lsl r2++	orr	xh, r5, xh, lsr r4++	RETLDM	"r4, r5"++++	@ shift result right of 21 to 31 bits, or left 11 to 1 bits after++	@ a register switch from xh to xl.++1:	rsb	r4, r4, #12++	rsb	r2, r4, #32++	mov	xl, xl, lsr r2++	orr	xl, xl, xh, lsl r4++	mov	xh, r5++	RETLDM	"r4, r5"++++	@ Shift value right of 32 to 64 bits, or 0 to 32 bits after a switch++	@ from xh to xl.++2:	mov	xl, xh, lsr r4++	mov	xh, r5++	RETLDM	"r4, r5"++++	@ Adjust exponents for denormalized arguments.++LSYM(Lad_d):++	teq	r4, #0++	eoreq	xh, xh, #0x00100000++	addeq	r4, r4, #(1 << 20)++	eor	yh, yh, #0x00100000++	subne	r5, r5, #(1 << 20)++	b	LSYM(Lad_x)++++	@ Result is x - x = 0, unless x = INF or NAN.++LSYM(Lad_z):++	sub	ip, ip, #0x00100000	@ ip becomes 0x7ff00000++	and	r2, xh, ip++	teq	r2, ip++	orreq	xh, ip, #0x00080000++	movne	xh, #0++	mov	xl, #0++	RET++++	@ Overflow: return INF.++LSYM(Lad_o):++	orr	xh, r5, #0x7f000000++	orr	xh, xh, #0x00f00000++	mov	xl, #0++	RETLDM	"r4, r5"++++	@ At least one of x or y is INF/NAN.++	@   if xh-xl != INF/NAN: return yh-yl (which is INF/NAN)++	@   if yh-yl != INF/NAN: return xh-xl (which is INF/NAN)++	@   if either is NAN: return NAN++	@   if opposite sign: return NAN++	@   return xh-xl (which is INF or -INF)++LSYM(Lad_i):++	teq	r4, ip++	movne	xh, yh++	movne	xl, yl++	teqeq	r5, ip++	RETLDM	"r4, r5" ne++++	orrs	r4, xl, xh, lsl #12++	orreqs	r4, yl, yh, lsl #12++	teqeq	xh, yh++	orrne	xh, r5, #0x00080000++	movne	xl, #0++	RETLDM	"r4, r5"++++	FUNC_END subdf3++	FUNC_END adddf3++++ARM_FUNC_START floatunsidf++	teq	r0, #0++	moveq	r1, #0++	RETc(eq)++	stmfd	sp!, {r4, r5, lr}++	mov	r4, #(0x400 << 20)	@ initial exponent++	add	r4, r4, #((52-1) << 20)++	mov	r5, #0			@ sign bit is 0++	mov	xl, r0++	mov	xh, #0++	b	LSYM(Lad_l)++++	FUNC_END floatunsidf++++ARM_FUNC_START floatsidf++	teq	r0, #0++	moveq	r1, #0++	RETc(eq)++	stmfd	sp!, {r4, r5, lr}++	mov	r4, #(0x400 << 20)	@ initial exponent++	add	r4, r4, #((52-1) << 20)++	ands	r5, r0, #0x80000000	@ sign bit in r5++	rsbmi	r0, r0, #0		@ absolute value++	mov	xl, r0++	mov	xh, #0++	b	LSYM(Lad_l)++++	FUNC_END floatsidf++++ARM_FUNC_START extendsfdf2++	movs	r2, r0, lsl #1++	beq	1f			@ value is 0.0 or -0.0++	mov	xh, r2, asr #3		@ stretch exponent++	mov	xh, xh, rrx		@ retrieve sign bit++	mov	xl, r2, lsl #28		@ retrieve remaining bits++	ands	r2, r2, #0xff000000	@ isolate exponent++	beq	2f			@ exponent was 0 but not mantissa++	teq	r2, #0xff000000		@ check if INF or NAN++	eorne	xh, xh, #0x38000000	@ fixup exponent otherwise.++	RET++++1:	mov	xh, r0++	mov	xl, #0++	RET++++2:	@ value was denormalized.  We can normalize it now.++	stmfd	sp!, {r4, r5, lr}++	mov	r4, #(0x380 << 20)	@ setup corresponding exponent++	add	r4, r4, #(1 << 20)++	and	r5, xh, #0x80000000	@ move sign bit in r5++	bic	xh, xh, #0x80000000++	b	LSYM(Lad_l)++++	FUNC_END extendsfdf2++++#endif /* L_addsubdf3 */++++#ifdef L_muldivdf3++++ARM_FUNC_START muldf3++++	stmfd	sp!, {r4, r5, r6, lr}++++	@ Mask out exponents.++	mov	ip, #0x7f000000++	orr	ip, ip, #0x00f00000++	and	r4, xh, ip++	and	r5, yh, ip++++	@ Trap any INF/NAN.++	teq	r4, ip++	teqne	r5, ip++	beq	LSYM(Lml_s)++++	@ Trap any multiplication by 0.++	orrs	r6, xl, xh, lsl #1++	orrnes	r6, yl, yh, lsl #1++	beq	LSYM(Lml_z)++++	@ Shift exponents right one bit to make room for overflow bit.++	@ If either of them is 0, scale denormalized arguments off line.++	@ Then add both exponents together.++	movs	r4, r4, lsr #1++	teqne	r5, #0++	beq	LSYM(Lml_d)++LSYM(Lml_x):++	add	r4, r4, r5, asr #1++++	@ Preserve final sign in r4 along with exponent for now.++	teq	xh, yh++	orrmi	r4, r4, #0x8000++++	@ Convert mantissa to unsigned integer.++	bic	xh, xh, ip, lsl #1++	bic	yh, yh, ip, lsl #1++	orr	xh, xh, #0x00100000++	orr	yh, yh, #0x00100000++++#if __ARM_ARCH__ < 4++++	@ Well, no way to make it shorter without the umull instruction.++	@ We must perform that 53 x 53 bit multiplication by hand.++	stmfd	sp!, {r7, r8, r9, sl, fp}++	mov	r7, xl, lsr #16++	mov	r8, yl, lsr #16++	mov	r9, xh, lsr #16++	mov	sl, yh, lsr #16++	bic	xl, xl, r7, lsl #16++	bic	yl, yl, r8, lsl #16++	bic	xh, xh, r9, lsl #16++	bic	yh, yh, sl, lsl #16++	mul	ip, xl, yl++	mul	fp, xl, r8++	mov	lr, #0++	adds	ip, ip, fp, lsl #16++	adc	lr, lr, fp, lsr #16++	mul	fp, r7, yl++	adds	ip, ip, fp, lsl #16++	adc	lr, lr, fp, lsr #16++	mul	fp, xl, sl++	mov	r5, #0++	adds	lr, lr, fp, lsl #16++	adc	r5, r5, fp, lsr #16++	mul	fp, r7, yh++	adds	lr, lr, fp, lsl #16

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人精品免费网站| 欧美在线观看一区| 一本到不卡精品视频在线观看| 欧美最新大片在线看| 日韩欧美一二三区| 一区二区视频在线| 国产成人啪午夜精品网站男同| 欧美性大战久久| 国产欧美中文在线| 日韩中文字幕91| 91片在线免费观看| 久久久国产一区二区三区四区小说| 一区二区三区四区蜜桃| 国产九色精品成人porny| 欧美伦理影视网| 日韩伦理电影网| 国产精品一区久久久久| 91精品中文字幕一区二区三区| 国产精品久久久久婷婷| 国产精品一品视频| 2020国产精品| 九九视频精品免费| 91精品国产日韩91久久久久久| 亚洲图片你懂的| 成人精品gif动图一区| 久久久午夜精品理论片中文字幕| 日本美女一区二区三区| 欧美美女一区二区三区| 亚洲主播在线观看| 欧美午夜电影网| 亚洲韩国精品一区| 欧美探花视频资源| 亚洲国产美女搞黄色| 欧美视频在线一区二区三区 | 石原莉奈在线亚洲三区| 色婷婷精品久久二区二区蜜臂av | 夜夜嗨av一区二区三区中文字幕 | 中文字幕在线观看不卡视频| 国产福利91精品一区二区三区| 精品国产第一区二区三区观看体验| 免费成人在线观看| 欧美精品一区二区三区四区| 韩日欧美一区二区三区| 久久精品视频免费观看| 成人免费视频免费观看| 国产精品久久777777| 成人精品国产免费网站| 亚洲色大成网站www久久九九| 色先锋久久av资源部| 亚洲已满18点击进入久久| 欧美综合一区二区| 奇米影视一区二区三区小说| 欧美精品一区二区三区高清aⅴ | 亚洲综合在线第一页| 欧美日韩激情一区二区三区| 日韩av电影免费观看高清完整版在线观看| 欧美一卡二卡在线| 国产乱淫av一区二区三区| 中文字幕一区av| 在线成人免费视频| 国产福利视频一区二区三区| 亚洲欧美aⅴ...| 91精品国产综合久久久久久久久久| 极品少妇一区二区三区精品视频 | 国产综合色在线| 国产精品久久久久7777按摩| 在线亚洲+欧美+日本专区| 爽好多水快深点欧美视频| 久久久亚洲高清| 欧洲一区在线电影| 成人av在线电影| 日韩精品午夜视频| 国产欧美一区二区精品久导航| 99精品国产热久久91蜜凸| 日本欧美一区二区在线观看| 中文字幕第一区综合| 欧美日韩国产一级二级| 国产成a人无v码亚洲福利| 亚洲一区二区偷拍精品| 久久久久久一二三区| 欧美综合一区二区| 成人晚上爱看视频| 喷水一区二区三区| 国产精品第四页| 欧美mv日韩mv亚洲| 欧美日韩精品久久久| www.一区二区| 紧缚奴在线一区二区三区| 亚洲一区中文日韩| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 国产精品一区二区在线观看不卡| 一区二区在线电影| 国产精品久久影院| 久久精品欧美日韩| 日韩欧美一级二级三级久久久| 99国产精品视频免费观看| 国产精一区二区三区| 麻豆精品在线播放| 午夜精品久久一牛影视| 一区二区激情视频| 日韩毛片视频在线看| 国产无一区二区| 精品福利在线导航| 欧美不卡一区二区三区四区| 欧美日韩国产一区二区三区地区| 一本色道久久加勒比精品 | 久久99日本精品| 日韩电影免费一区| 性感美女极品91精品| 一区二区三区不卡视频在线观看| 中日韩av电影| 国产精品嫩草99a| 国产精品国产三级国产专播品爱网 | 午夜一区二区三区在线观看| 中文字幕视频一区| 亚洲欧美国产77777| 亚洲免费色视频| 一片黄亚洲嫩模| 一区二区免费看| 亚洲一区二区三区四区五区黄 | 不卡的av电影| 99精品视频在线观看| av综合在线播放| 91免费视频大全| 欧美中文字幕久久 | 风流少妇一区二区| 成人高清视频在线| 91婷婷韩国欧美一区二区| 91一区二区在线| 欧美视频第二页| 日韩视频不卡中文| 久久久亚洲午夜电影| 欧美极品aⅴ影院| 亚洲激情五月婷婷| 午夜亚洲国产au精品一区二区| 午夜成人免费视频| 国产美女在线观看一区| 成人高清在线视频| 在线视频综合导航| 欧美成人精品二区三区99精品| 久久亚洲精精品中文字幕早川悠里 | 一本大道久久a久久综合| 欧美伊人久久久久久久久影院| 欧美日本一区二区三区四区| 欧美一区二区日韩| 国产日产亚洲精品系列| 亚洲日本青草视频在线怡红院| 亚洲一区二区不卡免费| 久久66热偷产精品| 成人高清av在线| 欧美丰满少妇xxxbbb| 久久婷婷国产综合精品青草| 亚洲三级久久久| 麻豆精品久久精品色综合| 成人av在线播放网址| 欧美区一区二区三区| 国产欧美精品一区二区三区四区 | 91免费观看视频| 日韩片之四级片| 亚洲日本一区二区三区| 看片的网站亚洲| 99re热视频这里只精品| 日韩一级片在线播放| 亚洲美女免费在线| 激情综合色综合久久| 91成人在线免费观看| 久久嫩草精品久久久精品| 亚洲高清在线精品| 岛国一区二区在线观看| 日韩一区二区三区在线视频| 亚洲精品亚洲人成人网| 国产毛片精品视频| 欧美日韩国产高清一区| 日本一区二区在线不卡| 麻豆精品新av中文字幕| 欧美性色黄大片| 亚洲天堂福利av| 国产黄色精品网站| 欧美一区二区久久| 亚洲午夜私人影院| 色综合网站在线| 国产拍欧美日韩视频二区| 久久99久久99精品免视看婷婷 | 亚洲aaa精品| 日本韩国视频一区二区| 国产精品免费看片| 国产成人av网站| 久久女同性恋中文字幕| 蜜桃av噜噜一区| 欧美一区二区网站| 天堂久久一区二区三区| 欧美日韩免费在线视频| 一区二区高清视频在线观看| www.欧美.com| 国产精品国产馆在线真实露脸| 国产精品88av| 久久精品一二三| 国产盗摄一区二区| 国产精品丝袜一区| 成人av综合一区|