99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫GA.2250、代做Python設計程序

時間:2024-01-30  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Programming Assignment #1 (Lab 1)
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 1 of 8 -
In this lab you will be implementing a two-pass linker. In general, a linker takes individually compiled code/object modules
and creates a single executable by resolving external symbol references (e.g. variables and functions) and module relative
addressing and assigning global addresses after placing the modules’ object code at global addresses.
Rather than dealing with complex x86 tool chains that I demonstrated in class, we assume a target machine with the
following properties: (a) word addressable, (b) addressable memory of 512 words, and (c) each valid word is represented by
an integer (<10000). I know that is a really strange machine, but core tasks of linkers such relocation, relative addressing,
symbol table maintenance and in particular error checking and reporting is handled in this notation as well.
The input to the linker is a file containing a sequence of tokens (symbols and integers and instruction mode characters).
Don’t assume tokens that make up a section to be on one line, nor make assumptions about how much space separates tokens
or that lines are non-empty for that matter or that each input conforms syntactically. Symbols always begin with alpha
characters followed by optional alphanumerical characters, i.e.[a-Z][a-Z0-9]*. Valid symbols can be up to 16 characters.
Integers are decimal based. Instruction type characters are (M, A, R, I, E). Token delimiters are ‘ ‘, ‘\t’ or ‘\n’.
The input file to the linker is structured as a series of “object module” definitions.
Each “object module” definition contains three parts (in fixed order): definition list, use list, and program text.
• definition list consists of a count defcount followed by defcount pairs (S, R) where S is the symbol being defined
and R is the relative word address (offset) to which the symbol refers in the module (0-based counting).
• use list consists of a count usecount followed by usecount symbols that can be referred to in this module. These
could include symbols defined in the definition list of any module (prior or subsequent or not at all).
• program text consists of a count codecount followed by codecount pairs (addrmode, instr), where addrmode is a
single character indicating the addressing mode as Module, Absolute, Relative, Immediate or External. instr is the
instruction (integer). Note that codecount defines the length/size of the module.
The instruction integer is comprised of an opcode (instruction/1000) and an operand (instruction%1000). The opcode always
remains unchanged by the linker. For the instruction value read an integer and ensure opcode < 10, see errorcodes below. The
operand is modified/retained based on the instruction type in the program text as follows:
(M) operand is the number of a valid module and is replaced with the base address of that module.
(A) operand is an absolute address which will never be changed in pass2; however it can’t be “>=” the machine size (512);
(R) operand is a relative address in the module which is relocated by replacing the relative address with the absolute address
of that relative address after the module’s global address has been determined (absolute_addr = module_base+relative_addr).
(I) an immediate operand is unchanged, but must be less than **0.
(E) operand is an external address which is represented as an index into the uselist. For example, a reference in the program
text with operand K represents the Kth symbol in the use list, using 0-based counting, e.g., if the use list is ‘‘2 f g’’, then an
instruction ‘‘E 7000’’ refers to f, and an instruction ‘‘E 5001’’ refers to g. You must identify to which global address the
symbol is assigned and then replace the operand with that global address.
The linker must process the input twice (that is why it is called two-pass) (to preempt the favored question: “Can I do it in
one pass?” → NO, because storing tokens makes your program more complex). Pass One parses the input and verifies the
correct syntax and determines (1) the base address for each module and stores it in a module_base table, and (2) the absolute
address for each defined symbol, storing the latter in a symbol table. The first module has base address zero; the base address
for module X+1 is equal to the base address of module X plus the length of module X (defined as the number of instructions
in a module). The absolute address for symbol S defined in module M is the base address of M plus the relative address of S
within M. After pass one, print the symbol table (including errors related to it (see rule2 later)). Do not store parsed tokens,
the only data you should and need to store between passes are the module_base table the symbol table.
Pass Two again parses the input and uses the base addresses and the symbol table entries created in pass one to generate the
actual output by relocating relative addresses and resolving external references. You should reuse pass-1 parser code just with
different actions. You must clearly mark your two passes in the code through comments and/or proper function naming.
While parsing you cannot store tokens, not between pass one and pass two, nor while parsing a single line. This practices
reentrant code which one encounters frequently in Operating Systems. This implies you can only parse and consume one
token at a time and can’t run through a full line and store tokens per line or file as indicated in the strtok() man page. To
enforce this we deduct 3 pts if you do this.
Programming Assignment #1 (Lab 1): Linker Professor Hubertus Franke
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 2 of 8 -
Other requirements: error detection, limits, and space used.
To receive full credit, you must check the input for various errors (test inputs will have lots of errors). All errors/warnings
should follow the message catalog provided below. We will do a textual difference against a reference implementation to
grade your program. Any reported difference will indicate a non-compliance with the instructions provided and is reported as
an error and results in deductions.
You should continue processing after encountering an error/warning (other than a syntax error) and you should be able to
detect multiple errors in the same run.
1. You should stop processing if a syntax error is detected in the input, print a syntax error message with the line
number and the character offset in the input file where observed. A syntax error is defined as a missing token (e.g. 4
used symbols are defined but only 3 are given) or an unexpected token. Stop processing and exit.
2. If a symbol is defined multiple times, print an error message and use the first definition. The error message is to
appear as part of printing the symbol table (following symbol=value printout on the same line).
3. If a symbol is used in an E-instruction but not defined anywhere, print an error message and use the value absolute
zero.
4. If a symbol is defined but not used, print a warning message and continue.
5. If an address appearing in a first definition of a symbol exceeds the size of the module, print a warning message in
pass1 after processing the module and treat the address given as 0 (relative to the module). If the symbol is a
redefinition then print a warning message (see message below).
6. If an external operand is too large to reference an entry in the use list, print an error message and treat the operand as
relative=0.
7. If a symbol appears in a use list but is not actually used in the module (i.e., not referred to in any E-type address),
print a warning message and continue. If the same unused symbol appears multiple times in uselist, multiple
warnings are to be printed.
8. If an absolute address exceeds the size of the machine, print an error message and use the absolute value zero.
9. If a relative address exceeds the size of the module, print an error message and use the module relative value zero
(that means you still need to remap “0” that to the correct absolute address).
10. If an illegal immediate operand (I) is encountered (i.e. >= **0), print an error and convert the operand value to 999.
11. If an illegal opcode is encountered (i.e. op >= 10), print an error and convert the <opcode,operand> to 9999.
12. If a module operand is invalid, print an error message and assume module 0.
The following exact limits are in place.
a) Accepted symbols should be upto 16 characters long (not including terminations e.g. ‘\0’), any longer symbol names
are erroneous.
b) a uselist or deflist should support 16 definitions, but not more and an error should be raised.
c) number of instructions are unlimited (hence the two pass system), but in reality they are limited to the machine size.
d) Symbol table should support at least 256 symbols (reference program supports exactly 256 symbols).
e) Module table should support at least 128 entries (reference program supports exactly 128 entries).
There are several sample inputs and outputs provided as part of the sample input files / output files (see NYU Classes).
The first (input-1) is shown below and the second (input-2) is a re-formatted version of the first. They both produce the same
output as the input is token-based and hence present the same content to the linker. Many of the input sets contain errors
that you are to detect as described above. Note that when you have questions regarding errors, please first make sure the
structure of the input is not messing with your mind. We will run your lab on these (and other) input sets.
1 xy 2
2 z xy
5 R 1004 I 5678 E 2000 R 8002 E 7001
0
1 z
6 R 8001 E 1000 E 1000 E 3000 R 1002 A 1010
0
1 z
2 R 5001 E 4000
1 z 2
2 xy z
3 A 8000 E 1001 E 2000
Programming Assignment #1 (Lab 1): Linker Professor Hubertus Franke
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 3 of 8 -

Your output is expected to strictly follow this format (with exception of empty lines):
Symbol Table
xy=2
z=15
Memory Map
000: 1004
001: 5678
002: 2015
003: 8002
004: 7002
005: 8006
006: 1015
007: 1015
008: 3015
009: 1007
010: 1010
011: 5012
012: 4015
013: 8000
014: 1015
015: 2002
The following output is heavily annotated for clarity and class discussion. You are not creating this output nor do we have
means to check it. However, it should help you understand the operation and mapping of symbols etc.
Symbol Table
xy=2
z=15
Memory Map
+0
0: R 1004 1004+0 = 1004
1: I 5678 5678
2: xy: E 2000 ->z 2015
3: R 8002 8002+0 = 8002
4: E 7001 ->xy 7002
+5
0: R 8001 8001+5 = 8006
1: E 1000 ->z 1015
2: E 1000 ->z 1015
3: E 3000 ->z 3015
4: R 1002 1002+5 = 1007
5: A 1010 1010
+11
0: R 5001 5001+11= 5012
1: E 4000 ->z 4015
+13
0: A 8000 8000
1: E 1001 ->z 1015
2 z: E 2000 ->xy 2002
Note that even an empty program should have the “Symbol Table” and “Memory Map” line.
For a test case to pass you must catch ALL warning/errors and generate the correct output for a given input file.
Example:
Programming Assignment #1 (Lab 1): Linker Professor Hubertus Franke
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 4 of 8 -
Symbol Table
X21=3
X31=4
Memory Map
000: 1003
001: 1003
002: 1003
003: 2000 Error: Absolute address exceeds machine size; zero used
004: 3000 Error: Relative address exceeds module size; relative zero used
Warning: Module 3: X31 was defined but never used
Parse errors should abort processing.
Error messages must be following the instruction as shown above.
Warnings message locations are defined further down.
Module counting starts at 0.
I provide in C the code to print parse errors, which also gives you an indication what is considered a parse error.
void __parseerror(int errcode) {
 static char* errstr[] = {
 "NUM_EXPECTED", // Number expect, anything >= 2^30 is not a number either
 "SYM_EXPECTED", // Symbol Expected
 "MARIE_EXPECTED", // Addressing Expected which is M/A/R/I/E
 "SYM_TOO_LONG", // Symbol Name is too long
 "TOO_MANY_DEF_IN_MODULE", // > 16
 "TOO_MANY_USE_IN_MODULE", // > 16
 "TOO_MANY_INSTR”, // total num_instr exceeds memory size (512)
 };
 printf("Parse Error line %d offset %d: %s\n", linenum, lineoffset, errstr[errcode]);
 exit(1);
}
(Note: line numbers start with one and offsets in the line start with one, offsets should indicate the first character offset of the
token that is wrong, not the last). Tabs (‘\t’) count as one character.
Error messages have the following text and should appear right at the end of the line you are printing out
"Error: This variable is multiple times defined; first value used" (see rule 2)
"Error: %s is not defined; zero used" (insert the symbol name for %s) (see rule 3)
"Error: External operand exceeds length of uselist; treated as relative=0" (see rule 6)
"Error: Absolute address exceeds machine size; zero used" (see rule 8)
"Error: Relative address exceeds module size; relative zero used" (see rule 9)
"Error: Illegal immediate operand; treated as 999" (see rule 10)
"Error: Illegal opcode; treated as 9999" (see rule 11) takes precedent
 "Error: Illegal module operand ; treated as module=0" (see rule 12)
Warning messages have the following text and are on a separate line.
"Warning: Module %d: %s=%d valid=[0..%d] assume zero relative” (see rule 5) [ see input-10 ]
“Warning: Module %d: %s redefinition ignored\n" (see rule 5) [ see input-4 ]
"Warning: Module %d: uselist[%d]=%s was not used\n" (see rule 7)
"Warning: Module %d: %s was defined but never used\n” (see rule 4)
Locations for these warnings are:
Rule 5: to be printed after each module in pass1
Rule 7: to be printed after each module in pass2 (so actually interspersed in the memory map (see out-9)
Rule 4: to be printed after pass 2 (i.e. all modules have been processed) ( see out-3).
Parse Error Location:
Parse errors are to be located at the first character of the wrong token, or if end-of-file is reached at the end of file location.
Programming Assignment #1 (Lab 1): Linker Professor Hubertus Franke
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 5 of 8 -
There is one special case when the eof ends with `\n’. My expectation is that the line number reported actually exists in the
file and that an editor (e.g. vi) can jump to it. In this particular case the linenumber to be reported is the last line read and the
last position of that line, not the next line and offset 1 (see input-12 for an example). The error is at the very last position of
the line. Reason is when one does a linecount on the file (“wc –l input-12”) it shows 3 not 4.
Hint: for each parser error and warning error mentioned above you should have code checking for that.
Program Specification
Only C/C++ are allowed for this lab. The program should take a single command line argument for input file. The output of
the program must go to standard output.
The program should run on the linserv1.cims.nyu.edu machine of NYU, which is where it will be graded, so please make
sure your program runs there. We realize you code on your own machine and transferring to linserv1 machine exposes
occasionally some linker errors. In that case use static linking (such as not finding the appropriate libraries at runtime),
though hopefully that is now resolved with the “module” approach discussed at the end.
Testing your program before submission
As part of the lab1_assign.tar.Z in NYU Brightspace you will see a runit.sh and a gradeit.sh script (the same we will use for
grading albeit with more inputs). Use “tar -xzvf lab1_assign.tar.Z” to decompress the file on a Unix machine. Understand the
script and what it does. If you can’t pass this script, things will be flagged during the grading process as well. Don’t assume
that just because you pass for these inputs, it will pass for all inputs. Carefully go through the rules above and ensure covered
each rule with some code (if/then/else) and it is at the right location.
Execute as follows:
Create yourself a directory <your-outdir> where your outputs will be created.
> cd lab1_assign
> ./runit.sh <your-outdir> <your-executable and optional arguments> # make your output
directory different
The above will create all the outputs for the available inputs (**20)
> ./gradeit.sh . <your-outdir> # note 2
nd argument is a DOT for the local directory where reference output are.
The above will compare the reference outputs (out-[**20]) with the ones created with your program and tell you how many
you got right and which ones are wrong. There will be a file called <your-outdir>/LOG.txt that contains which cases you got
wrong and where the differences are. If you want to analyze further, mannualy run “diff –b –B –E” by hand on a
particular output pair and rinse and repeat till you have got a test case right.
The reference program used during grading is located on /home/frankeh/Public/lab1/linker on cims systems. So feel free to
try it in order to answer any questions you might have on what is expected for a particular input. An input generator is
provided under /home/frankeh/Public/lab1/lab1gen.py
What to submit ( this applies to ALL labs )
Submit a zip archive containing only (i) source code (ii) makefile to compile your code (iii) ReadMe (If running the
program is not straightforward, otherwise not required). Please make sure the zip does not have any input and/or output files
nor contains other zip or tar files or backup files. We accept *.zip *.tar and *.tar.Z files ( as long as they match how they
were created. Anything else will be returned for resubmission ( we use download tools based on those formats ) with 1 pts
deduction.
Programming Assignment #1 (Lab 1): Linker Professor Hubertus Franke
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 6 of 8 -
Grading
This lab is graded using a “diff –b –B -E” against the reference output created by the test program (aka reference program)
using a grading harness described above ( runit.sh + gradeit.sh ).
Inputs will be the ones provided in NYU Classes as well as other ones and will be checked for all of the error conditions.
It is imperative that you match the output as generated by the ref program to allow for the automated testing for yourself as
well. Use the harness instead of manual checking when you have the basics running, it tells you where things are wrong.
We score this lab as 100pts. You will receive 40 pts for a submission that attempts to solve the problem. The rest you get
60/N points for each successful test that passes the “diff”. In order to institute a certain software engineering discipline, i.e.
following a specification and avoiding unintended releases of code and data in real life, we account for the following
additional deductions:
Reason Deduction How to avoid
Makefile not working on CIMS or
missing.
1pt Make sure your source compiles with your Makefile by simply
typing “make”
Storing Tokens instead of reparsing the
file or storing Tokens when parsing a
line. All you should store is the
Symboltable between passes.
3pts Follow instructions on parsing. After that, copy the shell of the
parser for the 2nd pass. Close the file, reopen the file and parse again,
just change the actions taken between 1st (error checking, module &
symbol table creation) and 2nd pass (instruction transformation).
Late submission 2pts/day Upto 7 days late allowed. No more submissions afterwards.
Inputs/Outputs or *.o files in the
submission
1pt Go through your intended submission and clean it up.
Output not going to the screen but to a
file
1pt We utilize the output to <stdout> during the runit.sh and gradeit.sh
so just use printf or cout. You will have to fix this
Incorrect Format submitted 1pt Use zip/tar tools to create a submission
Useful Stuff
How to approach this lab:
Step 1: Write a tokenizer
Write a tokenizer that simply parses the input, prints the token and the position in the file found, at the end prints the final
position in the file (as you will need that for error reporting). Verify it correctly recognizes tokens, lines and line offsets and
also print the final error location as the last line read with last character in the line (not the next empty line).
Historically, getting this first step right and then layering <step 2> over it is the main headache in this assignment.
The functions you need to study for this are getline() or fgets() (reads a full line into a buffer) or C++ equivalent
and strtok(), which tokenizes input lines. Please use Linux’s build-in help : “man strtok” and understand how a new
line is seeded and continued in subsequent calls. My tokenizer executable is available on cims under
/home/frankeh/Public/lab1/tokenizer (see what it produces on an input). You don’t have to match, its just a good way to start.
Read the “man page”; it will tell you all you need to know how to use strtok (including examples and what to watch out for).
Your optional tokenizer program should probably look similar to the following and you will use the getToken() in step2+.
main()
{
 char *tok;
 while( (tok = getToken()) != NULL ) {
 printf(“token=<%s> position=%d:%d\n”, tok, linenum, lineoffset);
 }
 printf(“EOF position %d:%d\n”, linenum, lineoff);
}
Programming Assignment #1 (Lab 1): Linker Professor Hubertus Franke
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 7 of 8 -
Step 2: Write basic token functions
Once you have the getToken() function written above and you verified that your token locations are properly reported,
extract it out of the program above and start writing the linker program. Layer the readInt(), readSymbol(),
readMARIE() functions on top of it by checking that the token has the correct sequence of characters and length (e.g.
integers are all numbers) and test via a simple program. Macros like isdigit(), isalpha(), isalnum()can proof
useful.
Step 3: Write the parser
Here are some hints on writing a parser. In general, one could write this parser using lex/yacc, however this is so simple that I
suggest writing a simple recursive decent parser, in particular since you have to parse the input twice. In lex and yacc you
would need to handle the error locations to conform to the specification. You would have a structure similar to the following
(all pseudoCode). This structure is simply copied twice and the actions taken in each path are different.
Once you have the first pass written, reset the input file, copy the pass1() to pass2() and rewrite. Note, in pass2 certain error
checking doesn’t have be done anymore. Instead you are now rewriting the instructions.
Pass1() {
 while (true) {
// this is a new model
int defcount = readInt(); // return negative to indicate no more tokens
if (defcount < 0) exit(2); // eof reached
for (int i=0;i<defcount;i++) {
 Symbol sym = readSym();
 int val = readInt();
 createSymbol(sym,val);  this would change in pass2
 }
 int usecount = readInt();
 for (int i=0;i<usecount;i++) {
 Symbol sym = readSym();
 // we don’t do anything here  this would change in pass2
 }
 int instcount = readInt();
 for (int i=0;i<instcount;i++) {
 char addressmode = ReadIEAR();
 int operand = ReadInt();
 : // various checks  this would change in pass2
 : // - “ -
 }
 }
}
Of course, you will have to deal with the errors etc. The first pass does syntax and early error checking and creates the
symbol table, the second pass performs additional error checking and instruction transformation. In order to go over the file a
second time reset the file pointer or close and reopen the file. You should not store tokens or deflist or uselist or
instructions during the first pass in order to pass to pass2. Only the symbol table needs to be stored between passes.
Writing a Makefile
A makefile should be named either “makefile” or “Makefile”. make will look for either of these files during building.
Here is a good introduction: http://www.cs.colby.edu/maxwell/courses/tutorials/maketutor/ with more sophisticated ones.
The simplest Makefile you can think of contains how it builds the executable and how it cleans up (here it assumes one
source file only and builds the linker executable) and is perfectly OK. Make your life and ours simple:
linker: linker.cpp
 g++ -g linker.cpp -o linker # I always compile with -g to enable debugging
clean:
 rm -f linker *~
Programming Assignment #1 (Lab 1): Linker Professor Hubertus Franke
Class CSCI-GA.2250-001: Operating Systems – Spring24
- Page 8 of 8 -
Here is a more sophisticated one that assumes multiple inputfiles: file1.c .. file3.c and allows to specify the compiler version
CFLAGS=-g # -g = debug, -O2 for optimized code CXXFLAGS for g++
CC=gcc-your-favorite-version
linker: file1.c file2.c file3.c
 $(CC) $(CFLAGS) –o linker file1.c file2.c file3.c
Switching compiler versions on linserv1 it is strongly suggested you use gcc-9.2. If you switch to a newer
level you must provide a README file and indicate so.
gcc –v or g++ -v # will tell you the currently active gcc version
module avail gcc # This will show you the list of all available modules
module load gcc-9.2.0 # loads indicated gcc version (must be in avail list)
module unload gcc-9.2.0 # reverts back to previous one (a “stack” is maintained)
# If you want to load a different version - first unload otherwise they stack
If you want to stick to a particular version automatically when you log into a cims machine, you can add the
“module load gcc-9.2.0” to the end of your ~/.bash_profile file on cims
and its automatic and one less thing to worry about.
It is imperative that you test your code on linserv1 and run ( runit.sh and gradeit.sh ). If there are
errors go to the LOG.txt file created in the output directory and see what’s wrong and fix it. Note
that code that runs fine on windows or MAC might not run correctly on Linux machines due to
differences in layout and semantics of variable initialization etc.
The burden is on you, we will grade on linserv1 only.
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:CS 205代做、代寫Python設計編程
  • 下一篇:代寫ECS 120、代做Java/Python編程設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          在线观看欧美日韩国产| 久久久久久黄| 久久精品亚洲精品| 欧美激情1区2区3区| 欧美日韩免费观看一区二区三区 | 在线欧美福利| 夜夜嗨av色综合久久久综合网| 亚洲尤物精选| 久久久午夜精品| 欧美先锋影音| 亚洲伦理久久| 欧美不卡视频一区| 国产精品一区二区女厕厕| 亚洲免费成人av| 免费看成人av| 亚洲美女视频网| 免费视频一区二区三区在线观看| 国产精品久久999| 亚洲精品视频在线| 欧美精品自拍偷拍动漫精品| 国产亚洲精品一区二区| 欧美中文在线视频| 国产手机视频一区二区| 欧美亚洲日本国产| 国产精自产拍久久久久久| 午夜精品婷婷| 国产日韩一区二区三区| 久久国产一区二区| 国产精品久久国产愉拍| 亚洲黄网站在线观看| 欧美成人资源| 在线视频日本亚洲性| 欧美视频在线观看一区| 宅男在线国产精品| 国产精品麻豆va在线播放| 欧美亚洲一区二区三区| 激情成人中文字幕| 欧美激情女人20p| 亚洲欧美综合| 亚洲高清不卡在线| 国产精品久久久久久久久久免费| 欧美怡红院视频| 亚洲精品乱码久久久久久久久| 欧美日韩国产精品专区| 久久精品卡一| 性欧美激情精品| 日韩一区二区精品在线观看| 国产精品magnet| 免费人成网站在线观看欧美高清| 99国产精品一区| 在线日韩av永久免费观看| 国产午夜精品理论片a级探花 | 国产精品av久久久久久麻豆网| 久久综合久久综合久久综合| 亚洲精品日韩综合观看成人91| 国产一区 二区 三区一级| 欧美日韩免费高清| 国产精品成人国产乱一区| 久热精品在线| 欧美国产第二页| 葵司免费一区二区三区四区五区| 久久久水蜜桃| 欧美中文字幕不卡| 亚洲欧美卡通另类91av| 午夜精品久久久久久久| 性欧美18~19sex高清播放| 亚洲一区自拍| 午夜精品久久久久久久久久久久久| 亚洲一区二区高清视频| 亚洲一区二区免费视频| 亚洲影院一区| 欧美在线高清| 欧美精品自拍| 国产精品久久久一本精品| 国产午夜精品久久| 亚洲国产欧美不卡在线观看 | 新狼窝色av性久久久久久| 亚洲欧美在线网| 久久久久久**毛片大全| 美女脱光内衣内裤视频久久影院 | 免费成人黄色av| 欧美精品色综合| 国产在线观看91精品一区| 日韩视频一区二区三区在线播放免费观看| aa级大片欧美三级| 久久午夜国产精品| 国产欧美va欧美不卡在线| 亚洲动漫精品| 欧美在线综合视频| 欧美三级乱人伦电影| 亚洲人成毛片在线播放女女| 亚洲男人影院| 欧美日韩精品一区二区三区四区| 国产一区二区三区高清播放| 一区二区三区鲁丝不卡| 欧美色一级片| 亚洲综合视频在线| 国产日韩欧美高清免费| 欧美一区国产二区| 国产一区二区精品久久91| 亚洲一区二三| 国内精品**久久毛片app| 亚洲一级网站| 国产精品丝袜xxxxxxx| 欧美一区二区黄| 狠狠噜噜久久| 欧美jjzz| 亚洲中无吗在线| 激情综合色综合久久综合| 老牛国产精品一区的观看方式| 亚洲第一精品夜夜躁人人爽| 欧美成人亚洲成人| 亚洲综合好骚| 亚洲欧洲一区二区在线观看| 国产精品激情电影| 久久久久久夜精品精品免费| 亚洲精品国产欧美| 国产丝袜一区二区| 欧美三区在线| 欧美激情精品久久久| 久久久久久久久久久久久9999| 亚洲欧洲精品成人久久奇米网| 国产精品久久久久久久7电影| 久久久精品一区二区三区| 国产精品99久久久久久久vr| 国产精品日韩精品欧美在线 | 亚洲黄色小视频| 国产午夜精品久久久久久久| 国产精品久久一卡二卡| 免费av成人在线| 久久久久久久精| 久久精品官网| 久久精品免费播放| 午夜综合激情| 新67194成人永久网站| 亚洲欧美国产另类| 午夜欧美理论片| 午夜欧美理论片| 欧美伊人久久久久久午夜久久久久| 亚洲午夜久久久久久尤物| 一区二区三区产品免费精品久久75| 亚洲久久成人| 亚洲欧美国产精品专区久久| 亚洲免费视频中文字幕| 亚洲天堂av综合网| 久久精品道一区二区三区| 久久精品一本| 欧美顶级少妇做爰| 欧美日精品一区视频| 欧美日韩在线精品| 国产精品欧美日韩一区二区| 欧美日韩一区二区三区免费| 国产精品一区二区久激情瑜伽| 国产精品国产三级国产aⅴ9色| 国产精品久久久久秋霞鲁丝| 国产精品一区二区a| 精品成人久久| 亚洲性感激情| 欧美在线黄色| 欧美午夜不卡在线观看免费 | 在线国产亚洲欧美| 一本色道久久综合亚洲精品婷婷| 亚洲免费影视| 欧美日韩中文另类| 亚洲激情在线观看| 欧美一区午夜精品| 欧美色精品天天在线观看视频| 黄色精品免费| 亚洲网站在线| 国产精品美女久久久浪潮软件| 亚洲免费高清| 欧美成人在线免费视频| 一色屋精品亚洲香蕉网站| 亚洲一品av免费观看| 欧美日本精品| 一区二区毛片| 欧美午夜无遮挡| 亚洲黄色性网站| 欧美三级在线播放| 亚洲欧美日韩国产综合在线| 国产欧美日韩激情| 久久综合九色综合网站| 国产欧美日韩免费看aⅴ视频| 午夜精品国产更新| 亚洲第一网站| 欧美三级欧美一级| 欧美一区二区三区久久精品茉莉花| 欧美+亚洲+精品+三区| 亚洲精品婷婷| 欧美伦理一区二区| 亚洲综合精品| 韩国一区二区三区在线观看| 嫩草伊人久久精品少妇av杨幂| 在线观看中文字幕不卡| 欧美日韩在线大尺度| 久久久国产视频91| 这里只有精品丝袜| 永久免费精品影视网站| 欧美日韩情趣电影| 久久久久免费视频|