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

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

?? dcache.vhd

?? leon3 source code 雖然gaisler網站上有下載
?? VHD
?? 第 1 頁 / 共 3 頁
字號:
--------------------------------------------------------------------------------  This file is a part of the GRLIB VHDL IP LIBRARY--  Copyright (C) 2003, Gaisler Research----  This program 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 of the License, or--  (at your option) any later version.----  This program 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; if not, write to the Free Software--  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA -----------------------------------------------------------------------------   -- Entity:      dcache-- File:        dcache.vhd-- Author:      Jiri Gaisler - Gaisler Research-- Modified:    Edvin Catovic - Gaisler Research-- Description: This unit implements the data cache controller.------------------------------------------------------------------------------  library ieee;use ieee.std_logic_1164.all;library techmap;use techmap.gencomp.all;library grlib;use grlib.amba.all;use grlib.sparc.all;use grlib.stdlib.all;library gaisler;use gaisler.libiu.all;use gaisler.libcache.all;entity dcache is  generic (    dsu       : integer range 0 to 1  := 0;    dcen      : integer range 0 to 1  := 0;    drepl     : integer range 0 to 2  := 0;    dsets     : integer range 1 to 4  := 1;    dlinesize : integer range 4 to 8  := 4;    dsetsize  : integer range 1 to 256 := 1;    dsetlock  : integer range 0 to 1  := 0;    dsnoop    : integer range 0 to 6 := 0;    dlram      : integer range 0 to 1 := 0;    dlramsize  : integer range 1 to 512 := 1;    dlramstart : integer range 0 to 255 := 16#8f#;    ilram      : integer range 0 to 1 := 0;    ilramstart : integer range 0 to 255 := 16#8e#;    memtech    : integer range 0 to NTECH := 0;    cached     : integer := 0);  port (    rst : in  std_ulogic;    clk : in  std_ulogic;    dci : in  dcache_in_type;    dco : out dcache_out_type;    ico : in  icache_out_type;    mcdi : out memory_dc_in_type;    mcdo : in  memory_dc_out_type;    ahbsi : in  ahb_slv_in_type;    dcrami : out dcram_in_type;    dcramo : in  dcram_out_type;    fpuholdn : in  std_ulogic;    sclk : in std_ulogic);end; architecture rtl of dcache isconstant DLINE_BITS   : integer := log2(dlinesize);constant DOFFSET_BITS : integer := 8 +log2(dsetsize) - DLINE_BITS;constant LRR_BIT      : integer := TAG_HIGH + 1;constant TAG_LOW    : integer := DOFFSET_BITS + DLINE_BITS + 2;constant OFFSET_HIGH: integer := TAG_LOW - 1;constant OFFSET_LOW : integer := DLINE_BITS + 2;constant LINE_HIGH  : integer := OFFSET_LOW - 1;constant LINE_LOW   : integer := 2;constant LINE_ZERO  : std_logic_vector(DLINE_BITS-1 downto 0) := (others => '0');constant SETBITS : integer := log2x(DSETS); constant DLRUBITS  : integer := lru_table(DSETS);constant LOCAL_RAM_START : std_logic_vector(7 downto 0) := conv_std_logic_vector(dlramstart, 8);constant ILRAM_START : std_logic_vector(7 downto 0) := conv_std_logic_vector(ilramstart, 8);constant DREAD_FAST  : boolean := false;constant DWRITE_FAST  : boolean := false;constant DEST_RW      : boolean := (syncram_dp_dest_rw_collision(memtech) = 1);type rdatatype is (dtag, ddata, dddata, icache, memory, sysr);  -- sources during cache readtype vmasktype is (clearone, clearall, merge, tnew);	-- valid bits operationtype valid_type is array (0 to DSETS-1) of std_logic_vector(dlinesize - 1 downto 0);type write_buffer_type is record			-- write buffer   addr, data1, data2 : std_logic_vector(31 downto 0);  size : std_logic_vector(1 downto 0);  asi  : std_logic_vector(3 downto 0);  read : std_ulogic;  lock : std_ulogic;end record;type dcache_control_type is record			-- all registers  read : std_ulogic;					-- access direction  size : std_logic_vector(1 downto 0);			-- access size  req, burst, holdn, nomds, stpend  : std_ulogic;  xaddress : std_logic_vector(31 downto 0);		-- common address buffer  faddr : std_logic_vector(DOFFSET_BITS - 1 downto 0);	-- flush address  valid : valid_type; --std_logic_vector(dlinesize - 1 downto 0);	-- registered valid bits  dstate : std_logic_vector(2 downto 0);			-- FSM vector  hit : std_ulogic;  flush		: std_ulogic;				-- flush in progress  flush2	: std_ulogic;				-- flush in progress  mexc 		: std_ulogic;				-- latched mexc  wb 		: write_buffer_type;			-- write buffer  asi  		: std_logic_vector(3 downto 0);  icenable	: std_ulogic;				-- icache diag access  rndcnt        : std_logic_vector(log2x(DSETS)-1 downto 0); -- replace counter  setrepl       : std_logic_vector(log2x(DSETS)-1 downto 0); -- set to replace  lrr           : std_ulogic;              dsuset        : std_logic_vector(log2x(DSETS)-1 downto 0);  lock          : std_ulogic;  lramrd : std_ulogic;  ilramen : std_ulogic;  cctrl		: cctrltype;  cctrlwr       : std_ulogic;  forcemiss 	: std_ulogic;end record;type snoop_reg_type is record			-- snoop control registers  snoop   : std_ulogic;				-- snoop access to tags  writebp : std_logic_vector(0 to DSETS-1);		-- snoop write bypass  addr 	  : std_logic_vector(TAG_HIGH downto OFFSET_LOW);-- snoop tag  readbpx  : std_logic_vector(0 to DSETS-1);  -- possible write/read contention    end record;type snoop_hit_bits_type is array (0 to 2**DOFFSET_BITS-1) of std_logic_vector(0 to DSETS-1);type snoop_hit_reg_type is record  hit 	  : snoop_hit_bits_type;                              -- snoop hit bits    taddr	  : std_logic_vector(OFFSET_HIGH downto OFFSET_LOW);  -- saved tag address  set     : std_logic_vector(log2x(DSETS)-1 downto 0);        -- saved setend record;subtype lru_type is std_logic_vector(DLRUBITS-1 downto 0);type lru_array  is array (0 to 2**DOFFSET_BITS-1) of lru_type;  -- lru registerstype par_type is array (0 to DSETS-1) of std_logic_vector(1 downto 0);type lru_reg_type is record  write : std_ulogic;  waddr : std_logic_vector(DOFFSET_BITS-1 downto 0);  set   :  std_logic_vector(SETBITS-1 downto 0); --integer range 0 to DSETS-1;  lru   : lru_array;end record;subtype lock_type is std_logic_vector(0 to DSETS-1);function lru_set (lru : lru_type; lock : lock_type) return std_logic_vector isvariable xlru : std_logic_vector(4 downto 0);variable set  : std_logic_vector(SETBITS-1 downto 0);variable xset : std_logic_vector(1 downto 0);variable unlocked : integer range 0 to DSETS-1;begin  set := (others => '0'); xlru := (others => '0'); xset := (others => '0');  xlru(DLRUBITS-1 downto 0) := lru;  if dsetlock = 1 then     unlocked := DSETS-1;    for i in DSETS-1 downto 0 loop      if lock(i) = '0' then unlocked := i; end if;    end loop;  end if;  case DSETS is  when 2 =>    if dsetlock = 1 then      if lock(0) = '1' then xset(0) := '1'; else xset(0) := xlru(0); end if;    else xset(0) := xlru(0); end if;  when 3 =>     if dsetlock = 1 then      xset := conv_std_logic_vector(lru3_repl_table(conv_integer(xlru)) (unlocked), 2);    else      xset := conv_std_logic_vector(lru3_repl_table(conv_integer(xlru)) (0), 2);    end if;  when 4 =>    if dsetlock = 1 then      xset := conv_std_logic_vector(lru4_repl_table(conv_integer(xlru)) (unlocked), 2);    else      xset := conv_std_logic_vector(lru4_repl_table(conv_integer(xlru)) (0), 2);    end if;      when others =>   end case;  set := xset(SETBITS-1 downto 0);  return(set);end;function lru_calc (lru : lru_type; set : integer) return lru_type isvariable new_lru : lru_type;variable xnew_lru: std_logic_vector(4 downto 0);variable xlru : std_logic_vector(4 downto 0);begin  new_lru := (others => '0'); xnew_lru := (others => '0');  xlru := (others => '0'); xlru(DLRUBITS-1 downto 0) := lru;  case DSETS is  when 2 =>     if set = 0 then xnew_lru(0) := '1'; else xnew_lru(0) := '0'; end if;  when 3 =>    xnew_lru(2 downto 0) := lru_3set_table(conv_integer(lru))(set);   when 4 =>     xnew_lru(4 downto 0) := lru_4set_table(conv_integer(lru))(set);  when others =>   end case;  new_lru := xnew_lru(DLRUBITS-1 downto 0);  return(new_lru);end;subtype word is std_logic_vector(31 downto 0);signal r, c : dcache_control_type;	-- r is registers, c is combinationalsignal rs, cs : snoop_reg_type;		-- rs is registers, cs is combinationalsignal rh, ch : snoop_hit_reg_type;	-- rs is registers, cs is combinationalsignal rl, cl : lru_reg_type;           -- rl is registers, cl is combinationalconstant ctbl : std_logic_vector(15 downto 0) :=  conv_std_logic_vector(cached, 16);begin  dctrl : process(rst, r, rs, rh, rl, dci, mcdo, ico, dcramo, ahbsi, fpuholdn)  variable dcramov : dcram_out_type;  variable rdatasel : rdatatype;  variable maddress : std_logic_vector(31 downto 0);  variable maddrlow : std_logic_vector(1 downto 0);  variable edata : std_logic_vector(31 downto 0);  variable size : std_logic_vector(1 downto 0);  variable read : std_ulogic;  variable twrite, tdiagwrite, ddiagwrite, dwrite : std_ulogic;  variable taddr : std_logic_vector(OFFSET_HIGH  downto LINE_LOW); -- tag address  variable newtag : std_logic_vector(TAG_HIGH  downto TAG_LOW); -- new tag  variable align_data : std_logic_vector(31 downto 0); -- aligned data--  variable ddatain : std_logic_vector(31 downto 0);  variable ddatainv, rdatav, align_datav : cdatatype;  variable vmaskraw : std_logic_vector((dlinesize -1) downto 0);  variable vmask : valid_type; --std_logic_vector((dlinesize -1) downto 0);  variable ivalid : std_logic_vector((dlinesize -1) downto 0);  variable vmaskdbl : std_logic_vector((dlinesize/2 -1) downto 0);  variable enable, senable, scanen : std_logic_vector(0 to 3);  variable mds : std_ulogic;  variable mexc : std_ulogic;  variable hit, valid, validraw, forcemiss : std_ulogic;  variable flush    : std_ulogic;  variable iflush   : std_ulogic;  variable v : dcache_control_type;  variable eholdn : std_ulogic;				-- external hold  variable snoopwe  : std_ulogic;  variable hcache   : std_ulogic;  variable lramcs, lramen, lramrd, lramwr, ilramen  : std_ulogic;  variable snoopaddr: std_logic_vector(OFFSET_HIGH downto OFFSET_LOW);  variable vs : snoop_reg_type;  variable vh : snoop_hit_reg_type;  variable dsudata   : std_logic_vector(31 downto 0);  variable set : integer range 0 to DSETS-1;  variable ddset : integer range 0 to MAXSETS-1;  variable snoopset : integer range 0 to DSETS-1;  variable validv, hitv, validrawv : std_logic_vector(0 to MAXSETS-1);  variable csnoopwe : std_logic_vector(0 to MAXSETS-1);  variable ctwrite, cdwrite : std_logic_vector(0 to MAXSETS-1);  variable vset, setrepl  : std_logic_vector(log2x(DSETS)-1 downto 0);  variable wlrr : std_logic_vector(0 to 3);  variable vl : lru_reg_type;  variable diagset : std_logic_vector(TAG_LOW + SETBITS -1 downto TAG_LOW);  variable lock : std_logic_vector(0 to DSETS-1);  variable wlock : std_logic_vector(0 to MAXSETS-1);  variable snoophit : std_logic_vector(0 to DSETS-1);  variable snoopval : std_ulogic;  variable snoopset2 : integer range 0 to DSETS-1;  variable laddr : std_logic_vector(31  downto 0); -- local ram addr  variable tag : cdatatype; --std_logic_vector(31  downto 0);  variable rlramrd : std_ulogic;  variable readbp : std_logic_vector(0 to DSETS-1);  variable rbphit, sidle : std_logic;    begin-- init local variables    v := r; vs := rs; vh := rh; dcramov := dcramo; vl := rl;    vl.write := '0'; lramen := '0'; lramrd := '0'; lramwr := '0';     lramcs := '0'; laddr := (others => '0'); v.cctrlwr := '0';    ilramen := '0'; sidle := '0';        if ((dci.eenaddr or dci.enaddr) = '1') or (r.dstate /= "000") or        ((dsu = 1) and (dci.dsuen = '1')) or (r.flush = '1') or	(is_fpga(memtech) = 1)    then      enable := (others => '1');    else enable := (others => '0'); end if;    mds := '1'; dwrite := '0'; twrite := '0';     ddiagwrite := '0'; tdiagwrite := '0'; v.holdn := '1'; mexc := '0';    flush := '0'; v.icenable := '0'; iflush := '0';    eholdn := ico.hold and fpuholdn; ddset := 0; vset := (others => '0');    vs.snoop := '0'; vs.writebp := (others => '0'); snoopwe := '0';    snoopaddr := ahbsi.haddr(OFFSET_HIGH downto OFFSET_LOW);    hcache := '0';     validv := (others => '0'); validrawv := (others => '0');    hitv := (others => '0'); ivalid := (others => '0');    if (dlram = 1) then rlramrd := r.lramrd; else rlramrd := '0'; end if;    ddatainv := (others => (others => '0')); tag := (others => (others => '0'));    v.flush2 := r.flush;    rdatasel := ddata;	-- read data from cache as default    vs.readbpx := (others => '0'); rbphit := '0';    senable := (others => '0'); scanen := (others => mcdo.scanen);    set := 0; snoopset := 0;  csnoopwe := (others => '0');    ctwrite := (others => '0'); cdwrite := (others => '0');    wlock := (others => '0');    for i in 0 to DSETS-1 loop wlock(i) := dcramov.tag(i)(CTAG_LOCKPOS); end loop;     wlrr := (others => '0');    for i in 0 to 3 loop wlrr(i) := dcramov.tag(i)(CTAG_LRRPOS); end loop;         if (DSETS > 1) then setrepl := r.setrepl; else setrepl := (others => '0'); end if;    -- random replacement counter    if DSETS > 1 then      if conv_integer(r.rndcnt) = (DSETS - 1) then v.rndcnt := (others => '0');      else v.rndcnt := r.rndcnt + 1; end if;    end if;-- generate lock bits    lock := (others => '0');    if dsetlock = 1 then       for i in 0 to DSETS-1 loop lock(i) := dcramov.tag(i)(CTAG_LOCKPOS); end loop;    end if;    -- AHB snoop handling    if (DSNOOP /= 0) then      -- snoop on NONSEQ or SEQ and first word in cache line      -- do not snoop during own transfers or during cache flush      if (ahbsi.hready and ahbsi.hwrite and not mcdo.bg) = '1' and         ((ahbsi.htrans = HTRANS_NONSEQ) or 	    ((ahbsi.htrans = HTRANS_SEQ) and 	     (ahbsi.haddr(LINE_HIGH downto LINE_LOW) = LINE_ZERO)))      then	vs.snoop := r.cctrl.dsnoop; -- and hcache;        vs.addr := ahbsi.haddr(TAG_HIGH downto OFFSET_LOW);       end if;      for i in 0 to DSETS-1 loop senable(i) := vs.snoop or rs.snoop; end loop;              readbp := (others => '0');      if (r.xaddress(TAG_HIGH downto OFFSET_LOW) = rs.addr(TAG_HIGH downto OFFSET_LOW)) then rbphit := '1'; end if;          for i in 0 to DSETS-1 loop        if (rs.readbpx(i) and rbphit) = '1' then readbp(i) := '1'; end if;      end loop;              -- clear valid bits on snoop hit (or set hit bits)      for i in DSETS-1 downto 0 loop        if ((rs.snoop and (not mcdo.ba) and not r.flush) = '1')           and ((dcramov.stag(i)(TAG_HIGH downto TAG_LOW) = rs.addr(TAG_HIGH downto TAG_LOW)) or (readbp(i) = '1'))        then          if DSNOOP = 2 then            vh.hit(conv_integer(rs.addr(OFFSET_HIGH downto OFFSET_LOW)))(i) := '1';--             vh.set := std_logic_vector(conv_unsigned(i, SETBITS));          else            snoopaddr := rs.addr(OFFSET_HIGH downto OFFSET_LOW);            snoopwe := '1'; snoopset := i;                  end if;        end if;      -- bypass tag data on read/write contention        if (DSNOOP /= 2) and (rs.writebp(i) = '1') then           dcramov.tag(i)(TAG_HIGH downto TAG_LOW) := rs.addr(TAG_HIGH downto TAG_LOW);          dcramov.tag(i)(dlinesize-1 downto 0) := zero32(dlinesize-1 downto 0);        end if;      end loop;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产日产欧美精品一区二区三区| 国产精品久久免费看| 国产一区二区三区日韩| 国产精品久久毛片| 亚洲18女电影在线观看| 亚洲欧美激情视频在线观看一区二区三区 | 韩国精品主播一区二区在线观看| 亚洲一区二区三区四区在线观看 | 欧美高清在线一区| 国产日产亚洲精品系列| 亚洲国产欧美在线| 日日夜夜精品视频免费| 视频在线观看91| 91丨九色丨黑人外教| 风流少妇一区二区| 国产高清无密码一区二区三区| 国产一区二区三区香蕉| 欧美日韩国产中文| 91麻豆精品国产综合久久久久久| 欧美三级一区二区| 欧美一区午夜视频在线观看| 欧美一级久久久| 精品国产91乱码一区二区三区| 日韩精品一区在线观看| 国产清纯在线一区二区www| 日本不卡不码高清免费观看| 国产一区激情在线| 日韩精品自拍偷拍| 日本va欧美va瓶| 国产精品91一区二区| 日本韩国欧美一区二区三区| 欧美性受xxxx| 精品国产污网站| 蜜桃视频第一区免费观看| 风间由美一区二区三区在线观看 | 石原莉奈一区二区三区在线观看 | 91精品国产入口在线| 亚洲成人动漫一区| 欧美性xxxxxxxx| 亚洲狠狠爱一区二区三区| 精品视频一区二区不卡| 亚洲线精品一区二区三区| 欧美亚洲图片小说| 亚洲一区二区三区四区的| 欧美性xxxxx极品少妇| 午夜视频一区二区三区| 国产剧情一区二区| 国产精品丝袜久久久久久app| 亚洲va欧美va人人爽午夜| 欧美日韩国产在线播放网站| 五月激情综合网| 欧美成人一区二区三区片免费| 亚洲狠狠丁香婷婷综合久久久| 青娱乐精品视频| 久久综合色天天久久综合图片| 亚洲蜜臀av乱码久久精品蜜桃| 欧美午夜影院一区| 日韩精品欧美精品| 久久五月婷婷丁香社区| 成人av片在线观看| 91精品在线一区二区| 国产一区二区三区美女| 国产精品不卡在线| 欧美视频日韩视频| 国产综合久久久久久久久久久久 | 国产成a人亚洲精品| 亚洲人精品一区| 91精品国产一区二区三区 | 91丝袜国产在线播放| 一区二区三区成人在线视频| 成人精品电影在线观看| 亚洲韩国一区二区三区| 久久综合资源网| 91亚洲精品一区二区乱码| 午夜精品福利在线| 国产午夜精品一区二区三区视频| 久久精品国内一区二区三区| 6080亚洲精品一区二区| 成人一区二区三区在线观看| 精品久久国产97色综合| 91蜜桃在线免费视频| 久久99精品久久久| 日韩欧美国产一二三区| 99久久精品国产毛片| 亚洲国产激情av| 91精品国产91久久久久久一区二区 | 自拍偷在线精品自拍偷无码专区| 粉嫩高潮美女一区二区三区| 亚洲成人午夜影院| 国产精品污www在线观看| 欧美日本一道本在线视频| 风间由美一区二区三区在线观看 | 国产精品五月天| 日韩一区二区免费电影| 91高清视频在线| 成人一区二区三区视频在线观看| 日本vs亚洲vs韩国一区三区二区 | 日本色综合中文字幕| 制服丝袜日韩国产| 91论坛在线播放| 国产精品一品二品| 青青国产91久久久久久 | 蜜臀av在线播放一区二区三区| 中文字幕一区在线观看视频| 色综合一个色综合| 日韩电影一区二区三区四区| 亚洲精品国产高清久久伦理二区| 日本一区二区三区在线不卡| 精品国产免费人成在线观看| 欧美群妇大交群中文字幕| 99re这里只有精品视频首页| 国内精品久久久久影院一蜜桃| 日韩成人免费在线| 亚洲国产成人高清精品| 亚洲免费三区一区二区| 国产精品久久久久久久久晋中 | 国产精品九色蝌蚪自拍| 中文字幕第一区第二区| 久久精品视频在线看| 国产清纯在线一区二区www| 精品国产乱子伦一区| 欧美xxxx在线观看| 欧美电影免费观看完整版| 91精品国产全国免费观看| 欧美另类久久久品| 国产传媒一区在线| 国产成人午夜99999| 国产一区二区三区国产| 国产成人免费视| 高清国产一区二区三区| 成人一区二区视频| 91视频在线观看| 欧美亚洲一区二区在线观看| 欧美日韩精品一区二区三区四区| 91精品欧美一区二区三区综合在| 欧美一级淫片007| 久久这里都是精品| 欧美国产国产综合| 亚洲精品国产精华液| 日韩黄色小视频| 精东粉嫩av免费一区二区三区| 国产成人无遮挡在线视频| 97国产精品videossex| 欧美日韩一区在线| 精品欧美一区二区三区精品久久| 久久九九影视网| 亚洲综合色婷婷| 久久爱www久久做| 成人app软件下载大全免费| 在线免费观看日韩欧美| 97久久久精品综合88久久| 欧美三级在线看| 精品久久久久久久久久久久久久久久久 | 精品少妇一区二区三区在线视频| 中文字幕乱码亚洲精品一区 | 国产欧美日韩另类一区| 亚洲综合在线免费观看| 经典三级在线一区| 日本久久电影网| 26uuu精品一区二区在线观看| 亚洲欧洲日产国码二区| 免费观看一级特黄欧美大片| 不卡一区在线观看| 日韩欧美国产三级电影视频| 中文字幕中文字幕一区| 日本亚洲一区二区| 91影院在线观看| 久久久夜色精品亚洲| 日韩午夜激情av| 亚洲激情中文1区| 国产精品伊人色| 欧美日韩精品一区视频| 国产精品久久久久久亚洲毛片 | 亚洲午夜激情av| 成人国产精品免费观看| 日韩欧美久久一区| 一卡二卡欧美日韩| gogo大胆日本视频一区| 91碰在线视频| 久久这里只有精品首页| 日本一不卡视频| 在线一区二区视频| 国产精品久久久久久久裸模| 精品一区二区三区影院在线午夜| 在线成人小视频| 亚洲成人自拍网| 欧美日韩中文字幕一区二区| 国产女人aaa级久久久级 | 亚洲激情成人在线| 粉嫩蜜臀av国产精品网站| 26uuu亚洲综合色| 免费成人在线视频观看| 制服视频三区第一页精品| 亚洲在线视频一区| 91福利社在线观看| 亚洲综合在线第一页| 欧洲国内综合视频| 一区二区三区丝袜| 在线国产电影不卡| 亚洲综合激情另类小说区|