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

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

?? mmupro36lib.c

?? vxwork源代碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* mmuPro36Lib.c - MMU library for PentiumPro/2/3/4 36 bit mode *//* Copyright 1984-2002 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01i,23may02,hdn  aligned PT/DT at mmuPageSize boundary for 4K/2MB page size		 imported updates from mmuPro32Lib.c01h,16may02,hdn  moved the GDT reloading to sysPhysMemTop() in sysLib.c01g,27aug01,hdn  made MMU_TLB_FLUSH, updated MMU_LOCK/MMU_UNLOCK macros.		 initialized oldIntLev to shut off warnings.01f,09feb99,wsl  add comment to document ERRNO value01e,17sep98,hdn  renamed mmuEnabled to mmuPro36Enabled.01d,13apr98,hdn  added support for 4KB/2MB page for PentiumPro w PAE.01c,07jan95,hdn  re-initialized the GDT in mmuLibInit().01b,01nov94,hdn  added a support for COPY_BACK cache mode for Pentium.01a,26jul93,hdn  written based on mc68k's version.*//*DESCRIPTION:mmuPro36Lib.c provides the architecture dependent routines that directly controlthe memory management unit.  It provides 10 routines that are called by thehigher level architecture independent routines in vmLib.c:  mmuPro36LibInit() - initialize module mmuTransTblCreate() - create a new translation table mmuTransTblDelete() - delete a translation table. mmuPro36Enable() - turn MMU on or off mmuStateSet() - set state of virtual memory page mmuStateGet() - get state of virtual memory page mmuPageMap() - map physical memory page to virtual memory page mmuGlobalPageMap() - map physical memory page to global virtual memory page mmuTranslate() - translate a virtual address to a physical address mmuCurrentSet() - change active translation tableApplications using the MMU will never call these routines directly; the visible interface is supported in vmLib.c.mmuLib supports the creation and maintenance of multiple translation tables,one of which is the active translation table when the MMU is enabled.  Note that VxWorks does not include a translation table as part of the taskcontext;  individual tasks do not reside in private virtual memory.  However,we include the facilities to create multiple translation tables so thatthe user may create "private" virtual memory contexts and switch them in anapplication specific manner.  Newtranslation tables are created with a call to mmuTransTblCreate(), and installedas the active translation table with mmuCurrentSet().  Translation tablesare modified and potentially augmented with calls to mmuPageMap() and mmuStateSet().The state of portions of the translation table can be read with calls to mmuStateGet() and mmuTranslate().The traditional VxWorks architecture and design philosophy requires that allobjects and operating systems resources be visible and accessible to all agents(tasks, isrs, watchdog timers, etc) in the system.  This has traditionally beeninsured by the fact that all objects and data structures reside in physical memory; thus, a data structure created by one agent may be accessed by anyother agent using the same pointer (object identifiers in VxWorks are oftenpointers to data structures.) This creates a potential problem if you have multiple virtual memory contexts.  For example, if asemaphore is created in one virtual memory context, you must guarantee thatthat semaphore will be visible in all virtual memory contexts if the semaphoreis to be accessed at interrupt level, when a virtual memory context other thanthe one in which it was created may be active. Another example is thatcode loaded using the incremental loader from the shell must be accessiblein all virtual memory contexts, since code is shared by all agents in thesystem.This problem is resolved by maintaining a global "transparent" mappingof virtual to physical memory for all the contiguous segments of physical memory (on board memory, i/o space, sections of vme space, etc) that is sharedby all translation tables;  all available  physical memory appears at the same address in virtual memory in all virtual memory contexts. This technique provides an environment that allowsresources that rely on a globally accessible physical address to run withoutmodification in a system with multiple virtual memory contexts.An additional requirement is that modifications made to the state of global virtual memory in one translation table appear in all translation tables.  Forexample, memory containing the text segment is made read only (to avoidaccidental corruption) by setting the appropriate writable bits in the translation table entries corresponding to the virtual memory containing the text segment.  This state information must be shared by all virtual memory contexts, so that no matter what translation table is active, the text segmentis protected from corruption.  The mechanism that implements this feature isarchitecture dependent, but usually entails building a section of a translation table that corresponds to the global memory, that is shared byall other translation tables.  Thus, when changes to the state of the globalmemory are made in one translation table, the changes are reflected in allother translation tables.mmuLib provides a separate call for constructing global virtual memory -mmuGlobalPageMap() - which creates translation table entries that are sharedby all translation tables.  Initialization code in usrConfig makes callsto vmGlobalMap() (which in turn calls mmuGlobalPageMap()) to set up global transparent virtual memory for allavailable physical memory.  All calls made to mmuGlobalPageMap() must occur before any virtual memory contexts are created;  changes made to global virtualmemory after virtual memory contexts are created are not guaranteed to be reflected in all virtual memory contexts.Most MMU architectures will dedicate some fixed amount of virtual memory to a minimal section of the translation table (a "segment", or "block").  This creates a problem in that the user may map a small section of virtual memoryinto the global translation tables, and then attempt to use the virtual memoryafter this section as private virtual memory.  The problem is that the translation table entries for this virtual memory are contained in the global translation tables, and are thus shared by all translation tables.  This condition is detected by vmMap, and an error is returned, thus, the lowerlevel routines in mmuPro36Lib.c (mmuPageMap(), mmuGlobalPageMap()) need not perform any error checking.A global variable `mmuPageBlockSize' should be defined which is equal to the minimum virtual segment size.  This module supports the PentiumPro/2/3/4 MMU:.CS	    PDBR	     |	     |            -------------------------            |pdp  |pdp  |pdp  |pdp  |            -------------------------	     |             v            ------------------------------------- top level  |pde  |pde  |pde  |pde  |pde  |pde  | ...             -------------------------------------	       |     |     |     |     |     |    	       |     |     |     |     |     |          ----------     |     v     v     v     v      |         ------    NULL  NULL  NULL  NULL      |         |      v         v     ----     ----   l   |pte |   |pte |o    ----     ----w   |pte |   |pte |     e    ----     ----r   |pte |   |pte |l    ----     ----e   |pte |   |pte |v    ----     ----e     .         .l     .         .      .         ..CEwhere the top level consists of two tables that are the page directorypointer table and the page directory table which is an array of pointers (Page Directory Entry) held within a single 4k page.  These point to arrays of Page Table Entry arrays in the lower level.  Each of these lower level arrays is also held within a single 4k page, and describes a virtual space of 2 MB (each Page Table Entry is 8 bytes, so we get 512 of these in each array, and each Page Table Entry maps a 4KB page - thus 512 * 4096 = 2MB.)  To implement global virtual memory, a separate translation table called mmuGlobalTransTbl is created when the module is initialized.  Calls to mmuGlobalPageMap will augment and modify this translation table.  When newtranslation tables are created, memory for the top level array of sftd's isallocated and initialized by duplicating the pointers in mmuGlobalTransTbl'stop level sftd array.  Thus, the new translation table will use the globaltranslation table's state information for portions of virtual memory that aredefined as global.  Here's a picture to illustrate:.CS	         GLOBAL TRANS TBL		      NEW TRANS TBL 		       PDBR				   PDBR		        |				    |		        |				    |            -------------------------           -------------------------            |pdp  |pdp  |pdp  |pdp  |           |pdp  |pdp  |pdp  |pdp  |            -------------------------           -------------------------	     |                                   |             v                                   v            -------------------------           ------------------------- top level  |pde  |pde  | NULL| NULL|           |pde  |pde  | NULL| NULL|            -------------------------           -------------------------	       |     |     |     |                 |     |     |     |   	       |     |     |     |                 |     |     |     |        ----------     |     v     v        ----------     |     v     v      |         ------    NULL  NULL      |		 |    NULL  NULL      |         |			  |		 |      o------------------------------------		 |      |		|					 |      |		o-----------------------------------------      |		|      v         v     ----     ----   l   |pte |   |pte |o    ----     ----w   |pte |   |pte |     e    ----     ----r   |pte |   |pte |l    ----     ----e   |pte |   |pte |v    ----     ----e     .         .l     .         .      .         ..CENote that with this scheme, the global memory granularity is 4MB.  Each timeyou map a section of global virtual memory, you dedicate at least 4MB of the virtual space to global virtual memory that will be shared by all virtualmemory contexts.The physical memory that holds these data structures is obtained from thesystem memory manager via memalign to insure that the memory is pagealigned.  We want to protect this memory from being corrupted,so we invalidate the descriptors that we set up in the global translationthat correspond to the memory containing the translation table data structures.This creates a "chicken and the egg" paradox, in that the only way we canmodify these data structures is through virtual memory that is now invalidated,and we can't validate it because the page descriptors for that memory arein invalidated memory (confused yet?)So, you will notice that anywhere that page table descriptors (PTE's)are modified, we do so by locking out interrupts, momentarily disabling the MMU, accessing the memory with its physical address, enabling the MMU, andthen re-enabling interrupts (see mmuStateSet(), for example.)Support for two new page attribute bits are added for PentiumPro's enhancedMMU.  They are Global bit (G) and Page-level write-through/back bit (PWT).Global bit indicates a global page when set.  When a page is marked global andthe page global enable (PGE) bit in register CR4 is set, the page-table orpage-directory entry for the page is not invalidated in the TLB when registerCR3 is loaded or a task switch occurs.  This bit is provided to preventfrequently used pages (such as pages that contain kernel or other operatingsystem or executive code) from being flushed from the TLB.Page-level write-through/back bit (PWT) controls the write-through or write-back caching policy of individual pages or page tables.  When the PWT bit isset, write-through caching is enabled for the associated page or page table.When the bit is clear, write-back caching is enabled for the associated pageand page table.Following macros are used to describe these attribute bits in the physicalmemory descriptor table sysPhysMemDesc[] in sysLib.c. VM_STATE_WBACK - use write-back cache policy for the page  VM_STATE_WBACK_NOT - use write-through cache policy for the page  VM_STATE_GLOBAL - set page global bit VM_STATE_GLOBAL_NOT - not set page global bitSupport for two page size (4KB and 2MB) are added also.The linear address for 4KB pages is divided into four sections: Page directory pointer - bits 30 through 31. Page directory entry - bits 21 through 29. Page table entry - Bits 12 through 20. Page offset - Bits  0 through 11.The linear address for 2MB pages is divided into three sections: Page directory pointer - bits 30 through 31. Page directory entry - Bits 21 through 29. Page offset - Bits  0 through 20.These two page size is configurable by VM_PAGE_SIZE macro in config.h.*//* includes */#include "vxWorks.h"#include "string.h"#include "intLib.h"#include "stdlib.h"#include "memLib.h"#include "private/vmLibP.h"#include "arch/i86/mmuPro36Lib.h"#include "arch/i86/vxI86Lib.h"#include "mmuLib.h"#include "errno.h"#include "cacheLib.h"#include "regs.h"#include "sysLib.h"/* defines *//* * MMU_WP_UNLOCK and MMU_WP_LOCK are used to access page table entries that * are in virtual memory that has been invalidated to protect it from being * corrupted.  The write protection bit is toggled to stay in the virtual * address space. * MMU_UNLOCK and MMU_LOCK are used to allocate memory for Directory/Page * Table from the initial system memory in the 1st 32 bit physical address * space. Thus, for all the Directory/Page Tables', the upper 4 bits of  * 36 bit physical address becomes zero.  This makes this library simple. * Allocated memory can be freed from the virtual address space * assuming the transparent mapping of the initial system memory. * These four macros do not invoke function calls. Therefore, we do not  * need to worry about stack mismatch in the virtual/physical address  * space, or the called out function's disappearance.  It is guaranteed  * that this code is in physical memory. */#define MMU_ON() \    do { int tempReg; WRS_ASM ("movl %%cr0,%0; orl $0x80010000,%0; \    movl %0,%%cr0; jmp 0f; 0:" : "=r" (tempReg) : : "memory"); } while (0)#define MMU_OFF() \    do { int tempReg; WRS_ASM ("movl %%cr0,%0; andl $0x7ffeffff,%0; \    movl %0,%%cr0; jmp 0f; 0:" : "=r" (tempReg) : : "memory"); } while (0)#define MMU_UNLOCK(wasEnabled, oldLevel) \    do { if (((wasEnabled) = mmuPro36Enabled) == TRUE) \	{INT_LOCK (oldLevel); MMU_OFF (); } \    } while (0)#define MMU_LOCK(wasEnabled, oldLevel) \    do { if ((wasEnabled) == TRUE) \        {MMU_ON (); INT_UNLOCK (oldLevel);} \    } while (0)#define WP_ON() \    do { int tempReg; WRS_ASM ("movl %%cr0,%0; orl $0x00010000,%0; \    movl %0,%%cr0; jmp 0f; 0:" : "=r" (tempReg) : : "memory"); } while (0)#define WP_OFF() \    do { int tempReg; WRS_ASM ("movl %%cr0,%0; andl $0xfffeffff,%0; \    movl %0,%%cr0; jmp 0f; 0:" : "=r" (tempReg) : : "memory"); } while (0)#define MMU_WP_UNLOCK(wasEnabled, oldLevel) \    do { if (((wasEnabled) = mmuPro36Enabled) == TRUE) \	{INT_LOCK (oldLevel); WP_OFF (); } \    } while (0)#define MMU_WP_LOCK(wasEnabled, oldLevel) \    do { if ((wasEnabled) == TRUE) \        {WP_ON (); INT_UNLOCK (oldLevel);} \    } while (0)/* inline version of mmuI86TLBFlush() */#define	MMU_TLB_FLUSH() \    do { int tempReg; WRS_ASM ("pushfl; cli; movl %%cr3,%0; \    movl %0,%%cr3; jmp 0f; 0: popfl; " : "=r" (tempReg) : : "memory"); \    } while (0)/* imports */IMPORT STATE_TRANS_TUPLE * mmuStateTransArray;IMPORT int	mmuStateTransArraySize;IMPORT MMU_LIB_FUNCS mmuLibFuncs;IMPORT int	mmuPageBlockSize;IMPORT int	sysProcessor;IMPORT CPUID	sysCpuId;/* globals */BOOL		mmuPro36Enabled = FALSE;/* locals */LOCAL UINT32	mmuPageSize;LOCAL UINT32	mmuPdpTableNumEnt = 4;LOCAL BOOL	firstTime = TRUE;LOCAL UINT32	nDirPages = 0;	/* number of pages for Directory Table *//*  * a translation table to hold the descriptors for the global transparent * translation of physical to virtual memory  */LOCAL MMU_TRANS_TBL mmuGlobalTransTbl;/* initially, the current trans table is a dummy table with mmu disabled */LOCAL MMU_TRANS_TBL * mmuCurrentTransTbl = &mmuGlobalTransTbl;/*  * array of booleans used to keep track of sections of virtual memory  * defined as global. */LOCAL UINT8 * globalPageBlock;LOCAL STATE_TRANS_TUPLE mmuStateTransArrayLocal [] =    {    {VM_STATE_MASK_VALID, MMU_STATE_MASK_VALID,      VM_STATE_VALID, MMU_STATE_VALID},    {VM_STATE_MASK_VALID, MMU_STATE_MASK_VALID,      VM_STATE_VALID_NOT, MMU_STATE_VALID_NOT},    {VM_STATE_MASK_WRITABLE, MMU_STATE_MASK_WRITABLE,     VM_STATE_WRITABLE, MMU_STATE_WRITABLE},    {VM_STATE_MASK_WRITABLE, MMU_STATE_MASK_WRITABLE,     VM_STATE_WRITABLE_NOT, MMU_STATE_WRITABLE_NOT},    {VM_STATE_MASK_CACHEABLE, MMU_STATE_MASK_CACHEABLE,     VM_STATE_CACHEABLE, MMU_STATE_CACHEABLE},    {VM_STATE_MASK_CACHEABLE, MMU_STATE_MASK_CACHEABLE,     VM_STATE_CACHEABLE_NOT, MMU_STATE_CACHEABLE_NOT},    {VM_STATE_MASK_WBACK, MMU_STATE_MASK_WBACK,     VM_STATE_WBACK, MMU_STATE_WBACK},    {VM_STATE_MASK_WBACK, MMU_STATE_MASK_WBACK,     VM_STATE_WBACK_NOT, MMU_STATE_WBACK_NOT},    {VM_STATE_MASK_GLOBAL, MMU_STATE_MASK_GLOBAL,     VM_STATE_GLOBAL, MMU_STATE_GLOBAL},    {VM_STATE_MASK_GLOBAL, MMU_STATE_MASK_GLOBAL,     VM_STATE_GLOBAL_NOT, MMU_STATE_GLOBAL_NOT}    };/* forward declarations */ LOCAL void	mmuMemPagesWriteDisable (MMU_TRANS_TBL * transTbl);LOCAL STATUS	mmuPteGet (MMU_TRANS_TBL * pTransTbl, void * virtAddr,			   PTE ** result);LOCAL MMU_TRANS_TBL * mmuTransTblCreate ();LOCAL STATUS	mmuTransTblInit (MMU_TRANS_TBL * newTransTbl);LOCAL STATUS	mmuTransTblDelete (MMU_TRANS_TBL * transTbl);LOCAL STATUS	mmuVirtualPageCreate (MMU_TRANS_TBL * thisTbl,				      void * virtPageAddr);LOCAL STATUS	mmuStateSet (MMU_TRANS_TBL * transTbl, void * pageAddr,			     UINT stateMask, UINT state);LOCAL STATUS	mmuStateGet (MMU_TRANS_TBL * transTbl, void * pageAddr,			     UINT * state);LOCAL STATUS	mmuPageMap (MMU_TRANS_TBL * transTbl, void * virtAddr,			    void * physPage);LOCAL STATUS	mmuGlobalPageMap (void * virtAddr, void * physPage);LOCAL STATUS	mmuTranslate (MMU_TRANS_TBL * transTbl, void * virtAddr,			      void ** physAddr);LOCAL void	mmuCurrentSet (MMU_TRANS_TBL * transTbl);LOCAL MMU_LIB_FUNCS mmuLibFuncsLocal =    {    mmuPro36LibInit,    mmuTransTblCreate,    mmuTransTblDelete,    mmuPro36Enable,       mmuStateSet,    mmuStateGet,    mmuPageMap,    mmuGlobalPageMap,    mmuTranslate,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人精品免费网站| 制服丝袜在线91| 亚洲综合图片区| 欧美成人在线直播| 色婷婷综合久久| 国产精品 日产精品 欧美精品| 亚洲激情自拍偷拍| 欧美精品一区二区在线观看| 欧美色综合网站| 成人免费视频一区| 视频一区二区不卡| 亚洲欧美在线视频| 久久久久久一二三区| 一本大道久久精品懂色aⅴ| 狠狠色丁香婷综合久久| 亚洲成av人片观看| 一区二区三区小说| 国产精品久99| 久久九九国产精品| 欧美成人一区二区三区在线观看| 欧美午夜视频网站| 91麻豆精品在线观看| 高清不卡在线观看| 国产乱人伦偷精品视频不卡| 奇米四色…亚洲| 国产老肥熟一区二区三区| 亚洲成在人线在线播放| 亚洲日本欧美天堂| 国产精品国产三级国产三级人妇| 久久九九国产精品| xf在线a精品一区二区视频网站| 日韩三级视频中文字幕| 欧美日韩在线不卡| 精品视频一区二区三区免费| 欧美性猛交xxxxxxxx| 91视频在线观看| 99视频超级精品| 成人av网站在线观看免费| 国产成人8x视频一区二区| 国产精品正在播放| 粉嫩av亚洲一区二区图片| 国产曰批免费观看久久久| 精品在线播放免费| 精品一区二区成人精品| 狠狠v欧美v日韩v亚洲ⅴ| 毛片av中文字幕一区二区| 精品一区二区三区视频| 国产精品一区在线观看你懂的| 精品一区在线看| 国产精品18久久久久久久久| 国产在线视频一区二区三区| 国产电影一区在线| 成人在线视频一区| 91免费视频观看| 欧美主播一区二区三区| 欧美剧情电影在线观看完整版免费励志电影 | 久久久久久97三级| 日本一区二区三级电影在线观看| 国产嫩草影院久久久久| 青青草国产成人99久久| 老鸭窝一区二区久久精品| 韩国一区二区三区| 成人免费福利片| 欧美性色黄大片手机版| 在线播放91灌醉迷j高跟美女| 日韩欧美一级二级三级久久久| 欧美成人高清电影在线| 中文字幕高清不卡| 一区二区三区中文字幕电影 | 欧美日韩精品一区视频| 欧美二区乱c少妇| 久久男人中文字幕资源站| 国产精品剧情在线亚洲| 尤物在线观看一区| 玖玖九九国产精品| 本田岬高潮一区二区三区| 在线影院国内精品| 精品久久人人做人人爱| 亚洲欧洲成人av每日更新| 午夜激情综合网| 风间由美性色一区二区三区| 色偷偷成人一区二区三区91| 精品国产乱码久久久久久久| 亚洲欧美aⅴ...| 青青草成人在线观看| 成人精品小蝌蚪| 91精品国产全国免费观看| 国产精品国产三级国产普通话99| 亚洲成av人片| 成人ar影院免费观看视频| 欧美日本视频在线| 欧美韩日一区二区三区四区| 石原莉奈在线亚洲二区| 成人小视频免费在线观看| 69av一区二区三区| 综合久久国产九一剧情麻豆| 久久疯狂做爰流白浆xx| 一本到不卡免费一区二区| 日韩精品一区二区三区四区 | 视频一区二区中文字幕| 精品毛片乱码1区2区3区| 亚洲不卡在线观看| 亚洲一区二区三区四区的| 国产精品综合在线视频| 欧美午夜电影网| 中文字幕av免费专区久久| 免费高清成人在线| 色综合天天做天天爱| 久久久精品免费观看| 亚洲国产日日夜夜| av不卡在线观看| 26uuu亚洲综合色| 久久蜜桃香蕉精品一区二区三区| 91在线观看免费视频| 欧美四级电影在线观看| 欧美精品高清视频| 亚洲日本护士毛茸茸| 国产精品18久久久久久久久 | 宅男在线国产精品| 亚洲欧美日韩国产成人精品影院| 欧美日韩中文字幕一区| 国产欧美一区二区精品婷婷| 青青草国产精品亚洲专区无| 欧美日韩电影在线| 亚洲午夜久久久久久久久电影网| 色婷婷综合久久久中文一区二区| 国产精品国产三级国产专播品爱网| 国产福利精品一区二区| 久久久久久久久免费| 欧美a一区二区| 欧美一区二区三区不卡| 午夜精品久久久久久久蜜桃app| 欧美亚洲国产一区二区三区va | 欧美日韩精品专区| 亚洲综合激情小说| 91官网在线免费观看| 一区二区三区小说| 欧美性猛交xxxx乱大交退制版| 亚洲一区视频在线| 精品污污网站免费看| 日韩综合在线视频| 在线视频一区二区免费| 亚洲一级二级在线| 在线观看91av| 日韩高清一级片| 精品国产亚洲在线| 国产露脸91国语对白| 国产精品三级久久久久三级| 成人激情黄色小说| 一区二区三区欧美久久| 欧美高清视频一二三区| 麻豆国产精品一区二区三区| 26uuu色噜噜精品一区二区| 国产麻豆视频精品| 中文字幕一区二区视频| 91色视频在线| 午夜精品久久久久久久久久久| 欧美一级二级在线观看| 国产精品影音先锋| 日韩美女啊v在线免费观看| 色狠狠桃花综合| 日本成人中文字幕| 久久精品男人天堂av| 色综合久久中文字幕综合网| 天天影视涩香欲综合网| 亚洲精品一区二区三区影院| 99综合影院在线| 午夜日韩在线观看| xvideos.蜜桃一区二区| 91视频观看视频| 日韩电影免费在线看| 日本一区二区视频在线观看| 色94色欧美sute亚洲线路一ni| 日韩在线a电影| 国产精品网站在线播放| 欧美日韩综合不卡| 国产成人免费视频精品含羞草妖精| 亚洲精品国产一区二区精华液 | 免费看欧美女人艹b| 国产色产综合色产在线视频| 欧美午夜电影在线播放| 国产一区二区精品久久99| 亚洲精品高清视频在线观看| 日韩欧美精品三级| 在线观看亚洲专区| 精品一区二区成人精品| 亚洲一区二区三区三| 国产午夜精品福利| 国产精品视频一二| 欧美精品久久一区| 国产91富婆露脸刺激对白| 午夜精品久久久久久久久久久 | 欧美天堂亚洲电影院在线播放| 国产一区二区免费视频| 亚洲一区在线电影| 国产精品五月天| 欧美一区二区精品久久911| jiyouzz国产精品久久| 激情综合网激情| 亚洲aⅴ怡春院|