3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

the development of c language(转)

發布時間:2025/3/11 编程问答 16 豆豆
生活随笔 收集整理的這篇文章主要介紹了 the development of c language(转) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

c語言之父Dennis Ritchie 寫的關于c語言開發歷史的文章,來自這里

lisp專家Richard P.Gabriel 的《the Rise of Worse is Better 》(wikipedia入口 ,c2入口 ,《Worse is Better 》,《軟件開發宗旨 》)中也提到c語言和unix設計的一些思想。

?

The Development of the C Language*

Dennis M. Ritchie
Bell Labs/Lucent Technologies
Murray Hill, NJ 07974 USA


dmr@bell-labs.com

ABSTRACT

The C programming language was devised in the early 1970s as a system implementation language for the nascent Unix operating system. Derived from the typeless language BCPL, it evolved a type structure; created on a tiny machine as a tool to improve a meager programming environment, it has become one of the dominant languages of today. This paper studies its evolution.

Introduction

?

NOTE: *Copyright 1993 Association for Computing Machinery, Inc. This electronic reprint made available by the author as a courtesy. For further publication rights contact ACM or the author. This article was presented at Second History of Programming Languages conference, Cambridge, Mass., April, 1993.
It was then collected in the conference proceedings: History of Programming Languages-II ed. Thomas J. Bergin, Jr. and Richard G. Gibson, Jr. ACM Press (New York) and Addison-Wesley (Reading, Mass), 1996; ISBN 0-201-89502-1.


This paper is about the development of the C programming language, the influences on it, and the conditions under which it was created. For the sake of brevity, I omit full descriptions of C itself, its parent B [Johnson 73] and its grandparent BCPL [Richards 79], and instead concentrate on characteristic elements of each language and how they evolved.

C came into being in the years 1969-1973, in parallel with the early development of the Unix operating system; the most creative period occurred during 1972. Another spate of changes peaked between 1977 and 1979, when portability of the Unix system was being demonstrated. In the middle of this second period, the first widely available description of the language appeared: The C Programming Language, often called the `white book' or `K&R' [Kernighan 78]. Finally, in the middle 1980s, the language was officially standardized by the ANSI X3J11 committee, which made further changes. Until the early 1980s, although compilers existed for a variety of machine architectures and operating systems, the language was almost exclusively associated with Unix; more recently, its use has spread much more widely, and today it is among the languages most commonly used throughout the computer industry.

History: the setting

The late 1960s were a turbulent era for computer systems research at Bell Telephone Laboratories [Ritchie 78] [Ritchie 84]. The company was pulling out of the Multics project [Organick 75], which had started as a joint venture of MIT, General Electric, and Bell Labs; by 1969, Bell Labs management, and even the researchers, came to believe that the promises of Multics could be fulfilled only too late and too expensively. Even before the GE-645 Multics machine was removed from the premises, an informal group, led primarily by Ken Thompson, had begun investigating alternatives.

Thompson wanted to create a comfortable computing environment constructed according to his own design, using whatever means were available. His plans, it is evident in retrospect, incorporated many of the innovative aspects of Multics, including an explicit notion of a process as a locus of control, a tree-structured file system, a command interpreter as user-level program, simple representation of text files, and generalized access to devices. They excluded others, such as unified access to memory and to files. At the start, moreover, he and the rest of us deferred another pioneering (though not original) element of Multics, namely writing almost exclusively in a higher-level language. PL/I, the implementation language of Multics, was not much to our tastes, but we were also using other languages, including BCPL, and we regretted losing the advantages of writing programs in a language above the level of assembler, such as ease of writing and clarity of understanding. At the time we did not put much weight on portability; interest in this arose later.

Thompson was faced with a hardware environment cramped and spartan even for the time: the DEC PDP-7 on which he started in 1968 was a machine with 8K 18-bit words of memory and no software useful to him. While wanting to use a higher-level language, he wrote the original Unix system in PDP-7 assembler. At the start, he did not even program on the PDP-7 itself, but instead used a set of macros for the GEMAP assembler on a GE-635 machine. A postprocessor generated a paper tape readable by the PDP-7.

These tapes were carried from the GE machine to the PDP-7 for testing until a primitive Unix kernel, an editor, an assembler, a simple shell (command interpreter), and a few utilities (like the Unix rm, cat, cp commands) were completed. After this point, the operating system was self-supporting: programs could be written and tested without resort to paper tape, and development continued on the PDP-7 itself.

Thompson's PDP-7 assembler outdid even DEC's in simplicity; it evaluated expressions and emitted the corresponding bits. There were no libraries, no loader or link editor: the entire source of a program was presented to the assembler, and the output file—with a fixed name—that emerged was directly executable. (This name, a.out , explains a bit of Unix etymology; it is the output of the assembler. Even after the system gained a linker and a means of specifying another name explicitly, it was retained as the default executable result of a compilation.)

Not long after Unix first ran on the PDP-7, in 1969, Doug McIlroy created the new system's first higher-level language: an implementation of McClure's TMG [McClure 65]. TMG is a language for writing compilers (more generally, TransMoGrifiers) in a top-down, recursive-descent style that combines context-free syntax notation with procedural elements. McIlroy and Bob Morris had used TMG to write the early PL/I compiler for Multics.

Challenged by McIlroy's feat in reproducing TMG, Thompson decided that Unix—possibly it had not even been named yet—needed a system programming language. After a rapidly scuttled attempt at Fortran, he created instead a language of his own, which he called B. B can be thought of as C without types; more accurately, it is BCPL squeezed into 8K bytes of memory and filtered through Thompson's brain. Its name most probably represents a contraction of BCPL, though an alternate theory holds that it derives from Bon [Thompson 69], an unrelated language created by Thompson during the Multics days. Bon in turn was named either after his wife Bonnie, or (according to an encyclopedia quotation in its manual), after a religion whose rituals involve the murmuring of magic formulas.

Origins: the languages

BCPL was designed by Martin Richards in the mid-1960s while he was visiting MIT, and was used during the early 1970s for several interesting projects, among them the OS6 operating system at Oxford [Stoy 72], and parts of the seminal Alto work at Xerox PARC [Thacker 79]. We became familiar with it because the MIT CTSS system [Corbato 62] on which Richards worked was used for Multics development. The original BCPL compiler was transported both to Multics and to the GE-635 GECOS system by Rudd Canaday and others at Bell Labs [Canaday 69]; during the final throes of Multics's life at Bell Labs and immediately after, it was the language of choice among the group of people who would later become involved with Unix.

BCPL, B, and C all fit firmly in the traditional procedural family typified by Fortran and Algol 60. They are particularly oriented towards system programming, are small and compactly described, and are amenable to translation by simple compilers. They are `close to the machine' in that the abstractions they introduce are readily grounded in the concrete data types and operations supplied by conventional computers, and they rely on library routines for input-output and other interactions with an operating system. With less success, they also use library procedures to specify interesting control constructs such as coroutines and procedure closures. At the same time, their abstractions lie at a sufficiently high level that, with care, portability between machines can be achieved.

BCPL, B and C differ syntactically in many details, but broadly they are similar. Programs consist of a sequence of global declarations and function (procedure) declarations. Procedures can be nested in BCPL, but may not refer to non-static objects defined in containing procedures. B and C avoid this restriction by imposing a more severe one: no nested procedures at all. Each of the languages (except for earliest versions of B) recognizes separate compilation, and provides a means for including text from named files.

Several syntactic and lexical mechanisms of BCPL are more elegant and regular than those of B and C. For example, BCPL's procedure and data declarations have a more uniform structure, and it supplies a more complete set of looping constructs. Although BCPL programs are notionally supplied from an undelimited stream of characters, clever rules allow most semicolons to be elided after statements that end on a line boundary. B and C omit this convenience, and end most statements with semicolons. In spite of the differences, most of the statements and operators of BCPL map directly into corresponding B and C.

Some of the structural differences between BCPL and B stemmed from limitations on intermediate memory. For example, BCPL declarations may take the form

let P1 be commandand P2 be commandand P3 be command...

where the program text represented by the commands contains whole procedures. The subdeclarations connected by and occur simultaneously, so the name P3 is known inside procedure P1 . Similarly, BCPL can package a group of declarations and statements into an expression that yields a value, for example

E1 := valof ( declarations ; commands ; resultis E2 ) + 1

The BCPL compiler readily handled such constructs by storing and analyzing a parsed representation of the entire program in memory before producing output. Storage limitations on the B compiler demanded a one-pass technique in which output was generated as soon as possible, and the syntactic redesign that made this possible was carried forward into C.

Certain less pleasant aspects of BCPL owed to its own technological problems and were consciously avoided in the design of B. For example, BCPL uses a `global vector' mechanism for communicating between separately compiled programs. In this scheme, the programmer explicitly associates the name of each externally visible procedure and data object with a numeric offset in the global vector; the linkage is accomplished in the compiled code by using these numeric offsets. B evaded this inconvenience initially by insisting that the entire program be presented all at once to the compiler. Later implementations of B, and all those of C, use a conventional linker to resolve external names occurring in files compiled separately, instead of placing the burden of assigning offsets on the programmer.

Other fiddles in the transition from BCPL to B were introduced as a matter of taste, and some remain controversial, for example the decision to use the single character = for assignment instead of := . Similarly, B uses /**/ to enclose comments, where BCPL uses // , to ignore text up to the end of the line. The legacy of PL/I is evident here. (C++ has resurrected the BCPL comment convention.) Fortran influenced the syntax of declarations: B declarations begin with a specifier like auto or static , followed by a list of names, and C not only followed this style but ornamented it by placing its type keywords at the start of declarations.

Not every difference between the BCPL language documented in Richards's book [Richards 79] and B was deliberate; we started from an earlier version of BCPL [Richards 67]. For example, the endcase that escapes from a BCPL switchon statement was not present in the language when we learned it in the 1960s, and so the overloading of the break keyword to escape from the B and C switch statement owes to divergent evolution rather than conscious change.

In contrast to the pervasive syntax variation that occurred during the creation of B, the core semantic content of BCPL—its type structure and expression evaluation rules—remained intact. Both languages are typeless, or rather have a single data type, the `word,' or `cell,' a fixed-length bit pattern. Memory in these languages consists of a linear array of such cells, and the meaning of the contents of a cell depends on the operation applied. The + operator, for example, simply adds its operands using the machine's integer add instruction, and the other arithmetic operations are equally unconscious of the actual meaning of their operands. Because memory is a linear array, it is possible to interpret the value in a cell as an index in this array, and BCPL supplies an operator for this purpose. In the original language it was spelled rv , and later ! , while B uses the unary * . Thus, if p is a cell containing the index of (or address of, or pointer to) another cell, *p refers to the contents of the pointed-to cell, either as a value in an expression or as the target of an assignment.

Because pointers in BCPL and B are merely integer indices in the memory array, arithmetic on them is meaningful: if p is the address of a cell, then p+1 is the address of the next cell. This convention is the basis for the semantics of arrays in both languages. When in BCPL one writes

let V = vec 10

or in B,

auto V[10];

the effect is the same: a cell named V is allocated, then another group of 10 contiguous cells is set aside, and the memory index of the first of these is placed into V . By a general rule, in B the expression

*(V+i)

adds V and i , and refers to the i -th location after V . Both BCPL and B each add special notation to sweeten such array accesses; in B an equivalent expression is

V[i]

and in BCPL

V!i

This approach to arrays was unusual even at the time; C would later assimilate it in an even less conventional way.

None of BCPL, B, or C supports character data strongly in the language; each treats strings much like vectors of integers and supplements general rules by a few conventions. In both BCPL and B a string literal denotes the address of a static area initialized with the characters of the string, packed into cells. In BCPL, the first packed byte contains the number of characters in the string; in B, there is no count and strings are terminated by a special character, which B spelled `*e '. This change was made partially to avoid the limitation on the length of a string caused by holding the count in an 8- or 9-bit slot, and partly because maintaining the count seemed, in our experience, less convenient than using a terminator.

Individual characters in a BCPL string were usually manipulated by spreading the string out into another array, one character per cell, and then repacking it later; B provided corresponding routines, but people more often used other library functions that accessed or replaced individual characters in a string.

More History

After the TMG version of B was working, Thompson rewrote B in itself (a bootstrapping step). During development, he continually struggled against memory limitations: each language addition inflated the compiler so it could barely fit, but each rewrite taking advantage of the feature reduced its size. For example, B introduced generalized assignment operators, using x=+y to add y to x . The notation came from Algol 68 [Wijngaarden 75] via McIlroy, who had incorporated it into his version of TMG. (In B and early C, the operator was spelled =+ instead of += ; this mistake, repaired in 1976, was induced by a seductively easy way of handling the first form in B's lexical analyzer.)

Thompson went a step further by inventing the ++ and -- operators, which increment or decrement; their prefix or postfix position determines whether the alteration occurs before or after noting the value of the operand. They were not in the earliest versions of B, but appeared along the way. People often guess that they were created to use the auto-increment and auto-decrement address modes provided by the DEC PDP-11 on which C and Unix first became popular. This is historically impossible, since there was no PDP-11 when B was developed. The PDP-7, however, did have a few `auto-increment' memory cells, with the property that an indirect memory reference through them incremented the cell. This feature probably suggested such operators to Thompson; the generalization to make them both prefix and postfix was his own. Indeed, the auto-increment cells were not used directly in implementation of the operators, and a stronger motivation for the innovation was probably his observation that the translation of ++x was smaller than that of x=x+1 .

The B compiler on the PDP-7 did not generate machine instructions, but instead `threaded code' [Bell 72], an interpretive scheme in which the compiler's output consists of a sequence of addresses of code fragments that perform the elementary operations. The operations typically—in particular for B—act on a simple stack machine.

On the PDP-7 Unix system, only a few things were written in B except B itself, because the machine was too small and too slow to do more than experiment; rewriting the operating system and the utilities wholly into B was too expensive a step to seem feasible. At some point Thompson relieved the address-space crunch by offering a `virtual B' compiler that allowed the interpreted program to occupy more than 8K bytes by paging the code and data within the interpreter, but it was too slow to be practical for the common utilities. Still, some utilities written in B appeared, including an early version of the variable-precision calculator dc familiar to Unix users [McIlroy 79]. The most ambitious enterprise I undertook was a genuine cross-compiler that translated B to GE-635 machine instructions, not threaded code. It was a small tour de force : a full B compiler, written in its own language and generating code for a 36-bit mainframe, that ran on an 18-bit machine with 4K words of user address space. This project was possible only because of the simplicity of the B language and its run-time system.

Although we entertained occasional thoughts about implementing one of the major languages of the time like Fortran, PL/I, or Algol 68, such a project seemed hopelessly large for our resources: much simpler and smaller tools were called for. All these languages influenced our work, but it was more fun to do things on our own.

By 1970, the Unix project had shown enough promise that we were able to acquire the new DEC PDP-11. The processor was among the first of its line delivered by DEC, and three months passed before its disk arrived. Making B programs run on it using the threaded technique required only writing the code fragments for the operators, and a simple assembler which I coded in B; soon, dc became the first interesting program to be tested, before any operating system, on our PDP-11. Almost as rapidly, still waiting for the disk, Thompson recoded the Unix kernel and some basic commands in PDP-11 assembly language. Of the 24K bytes of memory on the machine, the earliest PDP-11 Unix system used 12K bytes for the operating system, a tiny space for user programs, and the remainder as a RAM disk. This version was only for testing, not for real work; the machine marked time by enumerating closed knight's tours on chess boards of various sizes. Once its disk appeared, we quickly migrated to it after transliterating assembly-language commands to the PDP-11 dialect, and porting those already in B.

By 1971, our miniature computer center was beginning to have users. We all wanted to create interesting software more easily. Using assembler was dreary enough that B, despite its performance problems, had been supplemented by a small library of useful service routines and was being used for more and more new programs. Among the more notable results of this period was Steve Johnson's first version of the yacc parser-generator [Johnson 79a].

The Problems of B

The machines on which we first used BCPL and then B were word-addressed, and these languages' single data type, the `cell,' comfortably equated with the hardware machine word. The advent of the PDP-11 exposed several inadequacies of B's semantic model. First, its character-handling mechanisms, inherited with few changes from BCPL, were clumsy: using library procedures to spread packed strings into individual cells and then repack, or to access and replace individual characters, began to feel awkward, even silly, on a byte-oriented machine.

Second, although the original PDP-11 did not provide for floating-point arithmetic, the manufacturer promised that it would soon be available. Floating-point operations had been added to BCPL in our Multics and GCOS compilers by defining special operators, but the mechanism was possible only because on the relevant machines, a single word was large enough to contain a floating-point number; this was not true on the 16-bit PDP-11.

Finally, the B and BCPL model implied overhead in dealing with pointers: the language rules, by defining a pointer as an index in an array of words, forced pointers to be represented as word indices. Each pointer reference generated a run-time scale conversion from the pointer to the byte address expected by the hardware.

For all these reasons, it seemed that a typing scheme was necessary to cope with characters and byte addressing, and to prepare for the coming floating-point hardware. Other issues, particularly type safety and interface checking, did not seem as important then as they became later.

Aside from the problems with the language itself, the B compiler's threaded-code technique yielded programs so much slower than their assembly-language counterparts that we discounted the possibility of recoding the operating system or its central utilities in B.

In 1971 I began to extend the B language by adding a character type and also rewrote its compiler to generate PDP-11 machine instructions instead of threaded code. Thus the transition from B to C was contemporaneous with the creation of a compiler capable of producing programs fast and small enough to compete with assembly language. I called the slightly-extended language NB, for `new B.'

Embryonic C

NB existed so briefly that no full description of it was written. It supplied the types int and char , arrays of them, and pointers to them, declared in a style typified by

int i, j; char c, d; int iarray[10]; int ipointer[]; char carray[10]; char cpointer[];

The semantics of arrays remained exactly as in B and BCPL: the declarations of iarray and carray create cells dynamically initialized with a value pointing to the first of a sequence of 10 integers and characters respectively. The declarations for ipointer and cpointer omit the size, to assert that no storage should be allocated automatically. Within procedures, the language's interpretation of the pointers was identical to that of the array variables: a pointer declaration created a cell differing from an array declaration only in that the programmer was expected to assign a referent, instead of letting the compiler allocate the space and initialize the cell.

Values stored in the cells bound to array and pointer names were the machine addresses, measured in bytes, of the corresponding storage area. Therefore, indirection through a pointer implied no run-time overhead to scale the pointer from word to byte offset. On the other hand, the machine code for array subscripting and pointer arithmetic now depended on the type of the array or the pointer: to compute iarray[i] or ipointer+i implied scaling the addend i by the size of the object referred to.

These semantics represented an easy transition from B, and I experimented with them for some months. Problems became evident when I tried to extend the type notation, especially to add structured (record) types. Structures, it seemed, should map in an intuitive way onto memory in the machine, but in a structure containing an array, there was no good place to stash the pointer containing the base of the array, nor any convenient way to arrange that it be initialized. For example, the directory entries of early Unix systems might be described in C as

struct {int inumber;char name[14]; };

I wanted the structure not merely to characterize an abstract object but also to describe a collection of bits that might be read from a directory. Where could the compiler hide the pointer to name that the semantics demanded? Even if structures were thought of more abstractly, and the space for pointers could be hidden somehow, how could I handle the technical problem of properly initializing these pointers when allocating a complicated object, perhaps one that specified structures containing arrays containing structures to arbitrary depth?

The solution constituted the crucial jump in the evolutionary chain between typeless BCPL and typed C. It eliminated the materialization of the pointer in storage, and instead caused the creation of the pointer when the array name is mentioned in an expression. The rule, which survives in today's C, is that values of array type are converted, when they appear in expressions, into pointers to the first of the objects making up the array.

This invention enabled most existing B code to continue to work, despite the underlying shift in the language's semantics. The few programs that assigned new values to an array name to adjust its origin—possible in B and BCPL, meaningless in C—were easily repaired. More important, the new language retained a coherent and workable (if unusual) explanation of the semantics of arrays, while opening the way to a more comprehensive type structure.

The second innovation that most clearly distinguishes C from its predecessors is this fuller type structure and especially its expression in the syntax of declarations. NB offered the basic types int and char , together with arrays of them, and pointers to them, but no further ways of composition. Generalization was required: given an object of any type, it should be possible to describe a new object that gathers several into an array, yields it from a function, or is a pointer to it.

For each object of such a composed type, there was already a way to mention the underlying object: index the array, call the function, use the indirection operator on the pointer. Analogical reasoning led to a declaration syntax for names mirroring that of the expression syntax in which the names typically appear. Thus,

int i, *pi, **ppi;

declare an integer, a pointer to an integer, a pointer to a pointer to an integer. The syntax of these declarations reflects the observation that i , *pi , and **ppi all yield an int type when used in an expression. Similarly,

int f(), *f(), (*f)();

declare a function returning an integer, a function returning a pointer to an integer, a pointer to a function returning an integer;

int *api[10], (*pai)[10];

declare an array of pointers to integers, and a pointer to an array of integers. In all these cases the declaration of a variable resembles its usage in an expression whose type is the one named at the head of the declaration.

The scheme of type composition adopted by C owes considerable debt to Algol 68, although it did not, perhaps, emerge in a form that Algol's adherents would approve of. The central notion I captured from Algol was a type structure based on atomic types (including structures), composed into arrays, pointers (references), and functions (procedures). Algol 68's concept of unions and casts also had an influence that appeared later.

After creating the type system, the associated syntax, and the compiler for the new language, I felt that it deserved a new name; NB seemed insufficiently distinctive. I decided to follow the single-letter style and called it C, leaving open the question whether the name represented a progression through the alphabet or through the letters in BCPL.

Neonatal C

Rapid changes continued after the language had been named, for example the introduction of the && and || operators. In BCPL and B, the evaluation of expressions depends on context: within if and other conditional statements that compare an expression's value with zero, these languages place a special interpretation on the and (& ) and or (| ) operators. In ordinary contexts, they operate bitwise, but in the B statement

if (e1 & e2) ...

the compiler must evaluate e1 and if it is non-zero, evaluate e2 , and if it too is non-zero, elaborate the statement dependent on the if . The requirement descends recursively on & and | operators within e1 and e2 . The short-circuit semantics of the Boolean operators in such `truth-value' context seemed desirable, but the overloading of the operators was difficult to explain and use. At the suggestion of Alan Snyder, I introduced the && and || operators to make the mechanism more explicit.

Their tardy introduction explains an infelicity of C's precedence rules. In B one writes

if (a==b & c) ...

to check whether a equals b and c is non-zero; in such a conditional expression it is better that & have lower precedence than == . In converting from B to C, one wants to replace & by && in such a statement; to make the conversion less painful, we decided to keep the precedence of the & operator the same relative to == , and merely split the precedence of && slightly from & . Today, it seems that it would have been preferable to move the relative precedences of & and == , and thereby simplify a common C idiom: to test a masked value against another value, one must write

if ((a&mask) == b) ...

where the inner parentheses are required but easily forgotten.

Many other changes occurred around 1972-3, but the most important was the introduction of the preprocessor, partly at the urging of Alan Snyder [Snyder 74], but also in recognition of the utility of the the file-inclusion mechanisms available in BCPL and PL/I. Its original version was exceedingly simple, and provided only included files and simple string replacements: #include and #define of parameterless macros. Soon thereafter, it was extended, mostly by Mike Lesk and then by John Reiser, to incorporate macros with arguments and conditional compilation. The preprocessor was originally considered an optional adjunct to the language itself. Indeed, for some years, it was not even invoked unless the source program contained a special signal at its beginning. This attitude persisted, and explains both the incomplete integration of the syntax of the preprocessor with the rest of the language and the imprecision of its description in early reference manuals.

Portability

By early 1973, the essentials of modern C were complete. The language and compiler were strong enough to permit us to rewrite the Unix kernel for the PDP-11 in C during the summer of that year. (Thompson had made a brief attempt to produce a system coded in an early version of C—before structures—in 1972, but gave up the effort.) Also during this period, the compiler was retargeted to other nearby machines, particularly the Honeywell 635 and IBM 360/370; because the language could not live in isolation, the prototypes for the modern libraries were developed. In particular, Lesk wrote a `portable I/O package' [Lesk 72] that was later reworked to become the C `standard I/O' routines. In 1978 Brian Kernighan and I published The C Programming Language [Kernighan 78]. Although it did not describe some additions that soon became common, this book served as the language reference until a formal standard was adopted more than ten years later. Although we worked closely together on this book, there was a clear division of labor: Kernighan wrote almost all the expository material, while I was responsible for the appendix containing the reference manual and the chapter on interfacing with the Unix system.

During 1973-1980, the language grew a bit: the type structure gained unsigned, long, union, and enumeration types, and structures became nearly first-class objects (lacking only a notation for literals). Equally important developments appeared in its environment and the accompanying technology. Writing the Unix kernel in C had given us enough confidence in the language's usefulness and efficiency that we began to recode the system's utilities and tools as well, and then to move the most interesting among them to the other platforms. As described in [Johnson 78a], we discovered that the hardest problems in propagating Unix tools lay not in the interaction of the C language with new hardware, but in adapting to the existing software of other operating systems. Thus Steve Johnson began to work on pcc , a C compiler intended to be easy to retarget to new machines [Johnson 78b], while he, Thompson, and I began to move the Unix system itself to the Interdata 8/32 computer.

The language changes during this period, especially around 1977, were largely focused on considerations of portability and type safety, in an effort to cope with the problems we foresaw and observed in moving a considerable body of code to the new Interdata platform. C at that time still manifested strong signs of its typeless origins. Pointers, for example, were barely distinguished from integral memory indices in early language manuals or extant code; the similarity of the arithmetic properties of character pointers and unsigned integers made it hard to resist the temptation to identify them. The unsigned types were added to make unsigned arithmetic available without confusing it with pointer manipulation. Similarly, the early language condoned assignments between integers and pointers, but this practice began to be discouraged; a notation for type conversions (called `casts' from the example of Algol 68) was invented to specify type conversions more explicitly. Beguiled by the example of PL/I, early C did not tie structure pointers firmly to the structures they pointed to, and permitted programmers to write pointer->member almost without regard to the type of pointer ; such an expression was taken uncritically as a reference to a region of memory designated by the pointer, while the member name specified only an offset and a type.

Although the first edition of K&R described most of the rules that brought C's type structure to its present form, many programs written in the older, more relaxed style persisted, and so did compilers that tolerated it. To encourage people to pay more attention to the official language rules, to detect legal but suspicious constructions, and to help find interface mismatches undetectable with simple mechanisms for separate compilation, Steve Johnson adapted his pcc compiler to produce lint [Johnson 79b], which scanned a set of files and remarked on dubious constructions.

Growth in Usage

The success of our portability experiment on the Interdata 8/32 soon led to another by Tom London and John Reiser on the DEC VAX 11/780. This machine became much more popular than the Interdata, and Unix and the C language began to spread rapidly, both within AT&T and outside. Although by the middle 1970s Unix was in use by a variety of projects within the Bell System as well as a small group of research-oriented industrial, academic, and government organizations outside our company, its real growth began only after portability had been achieved. Of particular note were the System III and System V versions of the system from the emerging Computer Systems division of AT&T, based on work by the company's development and research groups, and the BSD series of releases by the University of California at Berkeley that derived from research organizations in Bell Laboratories.

During the 1980s the use of the C language spread widely, and compilers became available on nearly every machine architecture and operating system; in particular it became popular as a programming tool for personal computers, both for manufacturers of commercial software for these machines, and for end-users interested in programming. At the start of the decade, nearly every compiler was based on Johnson's pcc ; by 1985 there were many independently-produced compiler products.

Standardization

By 1982 it was clear that C needed formal standardization. The best approximation to a standard, the first edition of K&R, no longer described the language in actual use; in particular, it mentioned neither the void or enum types. While it foreshadowed the newer approach to structures, only after it was published did the language support assigning them, passing them to and from functions, and associating the names of members firmly with the structure or union containing them. Although compilers distributed by AT&T incorporated these changes, and most of the purveyors of compilers not based on pcc quickly picked up them up, there remained no complete, authoritative description of the language.

The first edition of K&R was also insufficiently precise on many details of the language, and it became increasingly impractical to regard pcc as a `reference compiler;' it did not perfectly embody even the language described by K&R, let alone subsequent extensions. Finally, the incipient use of C in projects subject to commercial and government contract meant that the imprimatur of an official standard was important. Thus (at the urging of M. D. McIlroy), ANSI established the X3J11 committee under the direction of CBEMA in the summer of 1983, with the goal of producing a C standard. X3J11 produced its report [ANSI 89] at the end of 1989, and subsequently this standard was accepted by ISO as ISO/IEC 9899-1990.

From the beginning, the X3J11 committee took a cautious, conservative view of language extensions. Much to my satisfaction, they took seriously their goal: `to develop a clear, consistent, and unambiguous Standard for the C programming language which codifies the common, existing definition of C and which promotes the portability of user programs across C language environments.' [ANSI 89] The committee realized that mere promulgation of a standard does not make the world change.

X3J11 introduced only one genuinely important change to the language itself: it incorporated the types of formal arguments in the type signature of a function, using syntax borrowed from C++ [Stroustrup 86]. In the old style, external functions were declared like this:

double sin();

which says only that sin is a function returning a double (that is, double-precision floating-point) value. In the new style, this better rendered

double sin(double);

to make the argument type explicit and thus encourage better type checking and appropriate conversion. Even this addition, though it produced a noticeably better language, caused difficulties. The committee justifiably felt that simply outlawing `old-style' function definitions and declarations was not feasible, yet also agreed that the new forms were better. The inevitable compromise was as good as it could have been, though the language definition is complicated by permitting both forms, and writers of portable software must contend with compilers not yet brought up to standard.

X3J11 also introduced a host of smaller additions and adjustments, for example, the type qualifiers const and volatile , and slightly different type promotion rules. Nevertheless, the standardization process did not change the character of the language. In particular, the C standard did not attempt to specify formally the language semantics, and so there can be dispute over fine points; nevertheless, it successfully accounted for changes in usage since the original description, and is sufficiently precise to base implementations on it.

Thus the core C language escaped nearly unscathed from the standardization process, and the Standard emerged more as a better, careful codification than a new invention. More important changes took place in the language's surroundings: the preprocessor and the library. The preprocessor performs macro substitution, using conventions distinct from the rest of the language. Its interaction with the compiler had never been well-described, and X3J11 attempted to remedy the situation. The result is noticeably better than the explanation in the first edition of K&R; besides being more comprehensive, it provides operations, like token concatenation, previously available only by accidents of implementation.

X3J11 correctly believed that a full and careful description of a standard C library was as important as its work on the language itself. The C language itself does not provide for input-output or any other interaction with the outside world, and thus depends on a set of standard procedures. At the time of publication of K&R, C was thought of mainly as the system programming language of Unix; although we provided examples of library routines intended to be readily transportable to other operating systems, underlying support from Unix was implicitly understood. Thus, the X3J11 committee spent much of its time designing and documenting a set of library routines required to be available in all conforming implementations.

By the rules of the standards process, the current activity of the X3J11 committee is confined to issuing interpretations on the existing standard. However, an informal group originally convened by Rex Jaeschke as NCEG (Numerical C Extensions Group) has been officially accepted as subgroup X3J11.1, and they continue to consider extensions to C. As the name implies, many of these possible extensions are intended to make the language more suitable for numerical use: for example, multi-dimensional arrays whose bounds are dynamically determined, incorporation of facilities for dealing with IEEE arithmetic, and making the language more effective on machines with vector or other advanced architectural features. Not all the possible extensions are specifically numerical; they include a notation for structure literals.

Successors

C and even B have several direct descendants, though they do not rival Pascal in generating progeny. One side branch developed early. When Steve Johnson visited the University of Waterloo on sabbatical in 1972, he brought B with him. It became popular on the Honeywell machines there, and later spawned Eh and Zed (the Canadian answers to `what follows B?'). When Johnson returned to Bell Labs in 1973, he was disconcerted to find that the language whose seeds he brought to Canada had evolved back home; even his own yacc program had been rewritten in C, by Alan Snyder.

More recent descendants of C proper include Concurrent C [Gehani 89], Objective C [Cox 86], C* [Thinking 90], and especially C++ [Stroustrup 86]. The language is also widely used as an intermediate representation (essentially, as a portable assembly language) for a wide variety of compilers, both for direct descendents like C++, and independent languages like Modula 3 [Nelson 91] and Eiffel [Meyer 88].

Critique

Two ideas are most characteristic of C among languages of its class: the relationship between arrays and pointers, and the way in which declaration syntax mimics expression syntax. They are also among its most frequently criticized features, and often serve as stumbling blocks to the beginner. In both cases, historical accidents or mistakes have exacerbated their difficulty. The most important of these has been the tolerance of C compilers to errors in type. As should be clear from the history above, C evolved from typeless languages. It did not suddenly appear to its earliest users and developers as an entirely new language with its own rules; instead we continually had to adapt existing programs as the language developed, and make allowance for an existing body of code. (Later, the ANSI X3J11 committee standardizing C would face the same problem.)

Compilers in 1977, and even well after, did not complain about usages such as assigning between integers and pointers or using objects of the wrong type to refer to structure members. Although the language definition presented in the first edition of K&R was reasonably (though not completely) coherent in its treatment of type rules, that book admitted that existing compilers didn't enforce them. Moreover, some rules designed to ease early transitions contributed to later confusion. For example, the empty square brackets in the function declaration

int f(a) int a[]; { ... }

are a living fossil, a remnant of NB's way of declaring a pointer; a is, in this special case only, interpreted in C as a pointer. The notation survived in part for the sake of compatibility, in part under the rationalization that it would allow programmers to communicate to their readers an intent to pass f a pointer generated from an array, rather than a reference to a single integer. Unfortunately, it serves as much to confuse the learner as to alert the reader.

In K&R C, supplying arguments of the proper type to a function call was the responsibility of the programmer, and the extant compilers did not check for type agreement. The failure of the original language to include argument types in the type signature of a function was a significant weakness, indeed the one that required the X3J11 committee's boldest and most painful innovation to repair. The early design is explained (if not justified) by my avoidance of technological problems, especially cross-checking between separately-compiled source files, and my incomplete assimilation of the implications of moving between an untyped to a typed language. The lint program, mentioned above, tried to alleviate the problem: among its other functions, lint checks the consistency and coherency of a whole program by scanning a set of source files, comparing the types of function arguments used in calls with those in their definitions.

An accident of syntax contributed to the perceived complexity of the language. The indirection operator, spelled * in C, is syntactically a unary prefix operator, just as in BCPL and B. This works well in simple expressions, but in more complex cases, parentheses are required to direct the parsing. For example, to distinguish indirection through the value returned by a function from calling a function designated by a pointer, one writes *fp() and (*pf)() respectively. The style used in expressions carries through to declarations, so the names might be declared

int *fp(); int (*pf)();

In more ornate but still realistic cases, things become worse:

int *(*pfp)();

is a pointer to a function returning a pointer to an integer. There are two effects occurring. Most important, C has a relatively rich set of ways of describing types (compared, say, with Pascal). Declarations in languages as expressive as C—Algol 68, for example—describe objects equally hard to understand, simply because the objects themselves are complex. A second effect owes to details of the syntax. Declarations in C must be read in an `inside-out' style that many find difficult to grasp [Anderson 80]. Sethi [Sethi 81] observed that many of the nested declarations and expressions would become simpler if the indirection operator had been taken as a postfix operator instead of prefix, but by then it was too late to change.

In spite of its difficulties, I believe that the C's approach to declarations remains plausible, and am comfortable with it; it is a useful unifying principle.

The other characteristic feature of C, its treatment of arrays, is more suspect on practical grounds, though it also has real virtues. Although the relationship between pointers and arrays is unusual, it can be learned. Moreover, the language shows considerable power to describe important concepts, for example, vectors whose length varies at run time, with only a few basic rules and conventions. In particular, character strings are handled by the same mechanisms as any other array, plus the convention that a null character terminates a string. It is interesting to compare C's approach with that of two nearly contemporaneous languages, Algol 68 and Pascal [Jensen 74]. Arrays in Algol 68 either have fixed bounds, or are `flexible:' considerable mechanism is required both in the language definition, and in compilers, to accommodate flexible arrays (and not all compilers fully implement them.) Original Pascal had only fixed-sized arrays and strings, and this proved confining [Kernighan 81]. Later, this was partially fixed, though the resulting language is not yet universally available.

C treats strings as arrays of characters conventionally terminated by a marker. Aside from one special rule about initialization by string literals, the semantics of strings are fully subsumed by more general rules governing all arrays, and as a result the language is simpler to describe and to translate than one incorporating the string as a unique data type. Some costs accrue from its approach: certain string operations are more expensive than in other designs because application code or a library routine must occasionally search for the end of a string, because few built-in operations are available, and because the burden of storage management for strings falls more heavily on the user. Nevertheless, C's approach to strings works well.

On the other hand, C's treatment of arrays in general (not just strings) has unfortunate implications both for optimization and for future extensions. The prevalence of pointers in C programs, whether those declared explicitly or arising from arrays, means that optimizers must be cautious, and must use careful dataflow techniques to achieve good results. Sophisticated compilers can understand what most pointers can possibly change, but some important usages remain difficult to analyze. For example, functions with pointer arguments derived from arrays are hard to compile into efficient code on vector machines, because it is seldom possible to determine that one argument pointer does not overlap data also referred to by another argument, or accessible externally. More fundamentally, the definition of C so specifically describes the semantics of arrays that changes or extensions treating arrays as more primitive objects, and permitting operations on them as wholes, become hard to fit into the existing language. Even extensions to permit the declaration and use of multidimensional arrays whose size is determined dynamically are not entirely straightforward [MacDonald 89] [Ritchie 90], although they would make it much easier to write numerical libraries in C. Thus, C covers the most important uses of strings and arrays arising in practice by a uniform and simple mechanism, but leaves problems for highly efficient implementations and for extensions.

Many smaller infelicities exist in the language and its description besides those discussed above, of course. There are also general criticisms to be lodged that transcend detailed points. Chief among these is that the language and its generally-expected environment provide little help for writing very large systems. The naming structure provides only two main levels, `external' (visible everywhere) and `internal' (within a single procedure). An intermediate level of visibility (within a single file of data and procedures) is weakly tied to the language definition. Thus, there is little direct support for modularization, and project designers are forced to create their own conventions.

Similarly, C itself provides two durations of storage: `automatic' objects that exist while control resides in or below a procedure, and `static,' existing throughout execution of a program. Off-stack, dynamically-allocated storage is provided only by a library routine and the burden of managing it is placed on the programmer: C is hostile to automatic garbage collection.

Whence Success?

C has become successful to an extent far surpassing any early expectations. What qualities contributed to its widespread use?

Doubtless the success of Unix itself was the most important factor; it made the language available to hundreds of thousands of people. Conversely, of course, Unix's use of C and its consequent portability to a wide variety of machines was important in the system's success. But the language's invasion of other environments suggests more fundamental merits.

Despite some aspects mysterious to the beginner and occasionally even to the adept, C remains a simple and small language, translatable with simple and small compilers. Its types and operations are well-grounded in those provided by real machines, and for people used to how computers work, learning the idioms for generating time- and space-efficient programs is not difficult. At the same time the language is sufficiently abstracted from machine details that program portability can be achieved.

Equally important, C and its central library support always remained in touch with a real environment. It was not designed in isolation to prove a point, or to serve as an example, but as a tool to write programs that did useful things; it was always meant to interact with a larger operating system, and was regarded as a tool to build larger tools. A parsimonious, pragmatic approach influenced the things that went into C: it covers the essential needs of many programmers, but does not try to supply too much.

Finally, despite the changes that it has undergone since its first published description, which was admittedly informal and incomplete, the actual C language as seen by millions of users using many different compilers has remained remarkably stable and unified compared to those of similarly widespread currency, for example Pascal and Fortran. There are differing dialects of C—most noticeably, those described by the older K&R and the newer Standard C—but on the whole, C has remained freer of proprietary extensions than other languages. Perhaps the most significant extensions are the `far' and `near' pointer qualifications intended to deal with peculiarities of some Intel processors. Although C was not originally designed with portability as a prime goal, it succeeded in expressing programs, even including operating systems, on machines ranging from the smallest personal computers through the mightiest supercomputers.

C is quirky, flawed, and an enormous success. While accidents of history surely helped, it evidently satisfied a need for a system implementation language efficient enough to displace assembly language, yet sufficiently abstract and fluent to describe algorithms and interactions in a wide variety of environments.

Acknowledgments

It is worth summarizing compactly the roles of the direct contributors to today's C language. Ken Thompson created the B language in 1969-70; it was derived directly from Martin Richards's BCPL. Dennis Ritchie turned B into C during 1971-73, keeping most of B's syntax while adding types and many other changes, and writing the first compiler. Ritchie, Alan Snyder, Steven C. Johnson, Michael Lesk, and Thompson contributed language ideas during 1972-1977, and Johnson's portable compiler remains widely used. During this period, the collection of library routines grew considerably, thanks to these people and many others at Bell Laboratories. In 1978, Brian Kernighan and Ritchie wrote the book that became the language definition for several years. Beginning in 1983, the ANSI X3J11 committee standardized the language. Especially notable in keeping its efforts on track were its officers Jim Brodie, Tom Plum, and P. J. Plauger, and the successive draft redactors, Larry Rosler and Dave Prosser.

I thank Brian Kernighan, Doug McIlroy, Dave Prosser, Peter Nelson, Rob Pike, Ken Thompson, and HOPL's referees for advice in the preparation of this paper.

References

?

[ANSI 89]
American National Standards Institute, American National Standard for Information Systems—Programming Language C, X3.159-1989.
[Anderson 80]
B. Anderson, `Type syntax in the language C: an object lesson in syntactic innovation,' SIGPLAN Notices 15 (3), March, 1980, pp. 21-27.
[Bell 72]
J. R. Bell, `Threaded Code,' C. ACM 16 (6), pp. 370-372.
[Canaday 69]
R. H. Canaday and D. M. Ritchie, `Bell Laboratories BCPL,' AT&T Bell Laboratories internal memorandum, May, 1969.
[Corbato 62]
F. J. Corbato, M. Merwin-Dagget, R. C. Daley, `An Experimental Time-sharing System,' AFIPS Conf. Proc. SJCC, 1962, pp. 335-344.
[Cox 86]
B. J. Cox and A. J. Novobilski, Object-Oriented Programming: An Evolutionary Approach, Addison-Wesley: Reading, Mass., 1986. Second edition, 1991.
[Gehani 89]
N. H. Gehani and W. D. Roome, Concurrent C, Silicon Press: Summit, NJ, 1989.
[Jensen 74]
K. Jensen and N. Wirth, Pascal User Manual and Report, Springer-Verlag: New York, Heidelberg, Berlin. Second Edition, 1974.
[Johnson 73]
S. C. Johnson and B. W. Kernighan, `The Programming Language B,' Comp. Sci. Tech. Report #8, AT&T Bell Laboratories (January 1973).
[Johnson 78a]
S. C. Johnson and D. M. Ritchie, `Portability of C Programs and the UNIX System,' Bell Sys. Tech. J. 57 (6) (part 2), July-Aug, 1978.
[Johnson 78b]
S. C. Johnson, `A Portable Compiler: Theory and Practice,' Proc. 5th ACM POPL Symposium (January 1978).
[Johnson 79a]
S. C. Johnson, `Yet another compiler-compiler,' in Unix Programmer's Manual, Seventh Edition, Vol. 2A, M. D. McIlroy and B. W. Kernighan, eds. AT&T Bell Laboratories: Murray Hill, NJ, 1979.
[Johnson 79b]
S. C. Johnson, `Lint, a Program Checker,' in Unix Programmer's Manual, Seventh Edition, Vol. 2B, M. D. McIlroy and B. W. Kernighan, eds. AT&T Bell Laboratories: Murray Hill, NJ, 1979.
[Kernighan 78]
B. W. Kernighan and D. M. Ritchie, The C Programming Language, Prentice-Hall: Englewood Cliffs, NJ, 1978. Second edition, 1988.
[Kernighan 81]
B. W. Kernighan, `Why Pascal is not my favorite programming language,' Comp. Sci. Tech. Rep. #100, AT&T Bell Laboratories, 1981.
[Lesk 73]
M. E. Lesk, `A Portable I/O Package,' AT&T Bell Laboratories internal memorandum ca. 1973.
[MacDonald 89]
T. MacDonald, `Arrays of variable length,' J. C Lang. Trans 1 (3), Dec. 1989, pp. 215-233.
[McClure 65]
R. M. McClure, `TMG—A Syntax Directed Compiler,' Proc. 20th ACM National Conf. (1965), pp. 262-274.
[McIlroy 60]
M. D. McIlroy, `Macro Instruction Extensions of Compiler Languages,' C. ACM 3 (4), pp. 214-220.
[McIlroy 79]
M. D. McIlroy and B. W. Kernighan, eds, Unix Programmer's Manual, Seventh Edition, Vol. I, AT&T Bell Laboratories: Murray Hill, NJ, 1979.
[Meyer 88]
B. Meyer, Object-oriented Software Construction, Prentice-Hall: Englewood Cliffs, NJ, 1988.
[Nelson 91]
G. Nelson, Systems Programming with Modula-3, Prentice-Hall: Englewood Cliffs, NJ, 1991.
[Organick 75]
E. I. Organick, The Multics System: An Examination of its Structure, MIT Press: Cambridge, Mass., 1975.
[Richards 67]
M. Richards, `The BCPL Reference Manual,' MIT Project MAC Memorandum M-352, July 1967.
[Richards 79]
M. Richards and C. Whitbey-Strevens, BCPL: The Language and its Compiler, Cambridge Univ. Press: Cambridge, 1979.
[Ritchie 78]
D. M. Ritchie, `UNIX: A Retrospective,' Bell Sys. Tech. J. 57 (6) (part 2), July-Aug, 1978.
[Ritchie 84]
D. M. Ritchie, `The Evolution of the UNIX Time-sharing System,' AT&T Bell Labs. Tech. J. 63 (8) (part 2), Oct. 1984.
[Ritchie 90]
D. M. Ritchie, `Variable-size arrays in C,' J. C Lang. Trans. 2 (2), Sept. 1990, pp. 81-86.
[Sethi 81]
R. Sethi, `Uniform syntax for type expressions and declarators,' Softw. Prac. and Exp. 11 (6), June 1981, pp. 623-628.
[Snyder 74]
A. Snyder, A Portable Compiler for the Language C, MIT: Cambridge, Mass., 1974.
[Stoy 72]
J. E. Stoy and C. Strachey, `OS6—An experimental operating system for a small computer. Part I: General principles and structure,' Comp J. 15 , (Aug. 1972), pp. 117-124.
[Stroustrup 86]
B. Stroustrup, The C++ Programming Language, Addison-Wesley: Reading, Mass., 1986. Second edition, 1991.
[Thacker 79]
C. P. Thacker, E. M. McCreight, B. W. Lampson, R. F. Sproull, D. R. Boggs, `Alto: A Personal Computer,' in Computer Structures: Principles and Examples, D. Sieworek, C. G. Bell, A. Newell, McGraw-Hill: New York, 1982.
[Thinking 90]
C* Programming Guide, Thinking Machines Corp.: Cambridge Mass., 1990.
[Thompson 69]
K. Thompson, `Bon—an Interactive Language,' undated AT&T Bell Laboratories internal memorandum (ca. 1969).
[Wijngaarden 75]
A. van Wijngaarden, B. J. Mailloux, J. E. Peck, C. H. Koster, M. Sintzoff, C. Lindsey, L. G. Meertens, R. G. Fisker, `Revised report on the algorithmic language Algol 68,' Acta Informatica 5 , pp. 1-236.

總結

以上是生活随笔為你收集整理的the development of c language(转)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

日韩精品一区二区av在线 | 奇米影视888欧美在线观看 | 中文精品久久久久人妻不卡 | 欧美变态另类xxxx | 免费无码一区二区三区蜜桃大 | 综合人妻久久一区二区精品 | 人人妻人人澡人人爽人人精品 | 青青青爽视频在线观看 | 亚洲一区二区三区播放 | 精品国产青草久久久久福利 | 人妻插b视频一区二区三区 | 最近中文2019字幕第二页 | 亚洲人成人无码网www国产 | 一本大道伊人av久久综合 | 娇妻被黑人粗大高潮白浆 | 亚洲国产精品无码久久久久高潮 | 国产超碰人人爽人人做人人添 | 三上悠亚人妻中文字幕在线 | 国产成人无码区免费内射一片色欲 | 无套内射视频囯产 | 欧美xxxxx精品 | 国产内射爽爽大片视频社区在线 | 任你躁国产自任一区二区三区 | 在线精品国产一区二区三区 | 天天摸天天碰天天添 | 久久精品国产一区二区三区肥胖 | 精品国产乱码久久久久乱码 | 大地资源网第二页免费观看 | 蜜桃臀无码内射一区二区三区 | 久久亚洲中文字幕无码 | 少妇久久久久久人妻无码 | 色一情一乱一伦一视频免费看 | 成人av无码一区二区三区 | 亚洲成a人片在线观看日本 | 老头边吃奶边弄进去呻吟 | 欧美人与禽zoz0性伦交 | 少女韩国电视剧在线观看完整 | 无遮挡国产高潮视频免费观看 | 精品人妻中文字幕有码在线 | 综合激情五月综合激情五月激情1 | 在教室伦流澡到高潮hnp视频 | 色综合视频一区二区三区 | 亚洲国产一区二区三区在线观看 | 999久久久国产精品消防器材 | 狠狠色丁香久久婷婷综合五月 | 亚洲日韩中文字幕在线播放 | 麻豆av传媒蜜桃天美传媒 | 免费无码的av片在线观看 | 国产内射老熟女aaaa | 日日摸天天摸爽爽狠狠97 | 无码国产激情在线观看 | 国产免费久久精品国产传媒 | 偷窥日本少妇撒尿chinese | 领导边摸边吃奶边做爽在线观看 | 久久久婷婷五月亚洲97号色 | 奇米影视7777久久精品人人爽 | 无码av岛国片在线播放 | 午夜精品一区二区三区的区别 | 国产精品第一区揄拍无码 | 无码中文字幕色专区 | 少妇久久久久久人妻无码 | 一二三四社区在线中文视频 | 四虎国产精品免费久久 | 欧洲熟妇精品视频 | 老熟妇乱子伦牲交视频 | 久久久精品成人免费观看 | 欧美日韩在线亚洲综合国产人 | 国产精品自产拍在线观看 | 色婷婷久久一区二区三区麻豆 | 久久久久se色偷偷亚洲精品av | 水蜜桃色314在线观看 | 欧美 丝袜 自拍 制服 另类 | 亚洲精品美女久久久久久久 | 98国产精品综合一区二区三区 | 性生交大片免费看l | 老司机亚洲精品影院 | 亚洲精品国偷拍自产在线麻豆 | 撕开奶罩揉吮奶头视频 | 国产午夜手机精彩视频 | 玩弄中年熟妇正在播放 | 欧美人与物videos另类 | 中文字幕乱码亚洲无线三区 | 成熟妇人a片免费看网站 | 狠狠躁日日躁夜夜躁2020 | 俺去俺来也www色官网 | 亚洲中文字幕成人无码 | 内射巨臀欧美在线视频 | 天天做天天爱天天爽综合网 | 欧洲美熟女乱又伦 | 婷婷色婷婷开心五月四房播播 | 免费无码肉片在线观看 | 欧美野外疯狂做受xxxx高潮 | 欧美zoozzooz性欧美 | 一个人免费观看的www视频 | 国产两女互慰高潮视频在线观看 | 狠狠噜狠狠狠狠丁香五月 | 成人无码影片精品久久久 | 美女张开腿让人桶 | 成 人 免费观看网站 | 亚洲精品久久久久中文第一幕 | 76少妇精品导航 | 内射白嫩少妇超碰 | 精品无码一区二区三区的天堂 | 无码中文字幕色专区 | 日韩少妇白浆无码系列 | 色偷偷人人澡人人爽人人模 | 窝窝午夜理论片影院 | 欧美国产日韩亚洲中文 | 人人妻人人藻人人爽欧美一区 | 中国大陆精品视频xxxx | 波多野结衣av在线观看 | 国产一区二区三区日韩精品 | 大屁股大乳丰满人妻 | 久久熟妇人妻午夜寂寞影院 | av无码久久久久不卡免费网站 | 少妇性荡欲午夜性开放视频剧场 | 国产亚洲欧美在线专区 | aⅴ亚洲 日韩 色 图网站 播放 | 性生交片免费无码看人 | 国产乱码精品一品二品 | 亚洲中文字幕在线观看 | 网友自拍区视频精品 | 色情久久久av熟女人妻网站 | 秋霞成人午夜鲁丝一区二区三区 | 日本爽爽爽爽爽爽在线观看免 | 久精品国产欧美亚洲色aⅴ大片 | 国产艳妇av在线观看果冻传媒 | 中国女人内谢69xxxx | 国产香蕉97碰碰久久人人 | 日本在线高清不卡免费播放 | 精品国产国产综合精品 | 国产精品久久福利网站 | av无码久久久久不卡免费网站 | 久久久精品人妻久久影视 | 午夜理论片yy44880影院 | 鲁鲁鲁爽爽爽在线视频观看 | 蜜桃视频插满18在线观看 | 亚洲精品成a人在线观看 | 国产精品99爱免费视频 | 国产无遮挡吃胸膜奶免费看 | 亚洲一区av无码专区在线观看 | 欧美人妻一区二区三区 | 东京热一精品无码av | 亚洲乱码日产精品bd | 日本护士xxxxhd少妇 | 成年美女黄网站色大免费全看 | 全黄性性激高免费视频 | 久久久成人毛片无码 | 亚洲狠狠色丁香婷婷综合 | 国产情侣作爱视频免费观看 | 国产特级毛片aaaaaaa高清 | 国产后入清纯学生妹 | 日本熟妇浓毛 | 国内精品久久毛片一区二区 | 国产偷抇久久精品a片69 | 熟女俱乐部五十路六十路av | 亚洲毛片av日韩av无码 | 欧美熟妇另类久久久久久不卡 | 在线看片无码永久免费视频 | 国产精品香蕉在线观看 | 又湿又紧又大又爽a视频国产 | 扒开双腿疯狂进出爽爽爽视频 | 久久天天躁狠狠躁夜夜免费观看 | 亚洲精品国产精品乱码视色 | 中文字幕无码日韩欧毛 | 久久www免费人成人片 | 人人澡人人妻人人爽人人蜜桃 | 日本一区二区三区免费高清 | 女人被男人爽到呻吟的视频 | 2019nv天堂香蕉在线观看 | 免费看男女做好爽好硬视频 | 亚洲欧美日韩成人高清在线一区 | 任你躁国产自任一区二区三区 | 麻豆国产丝袜白领秘书在线观看 | 熟妇女人妻丰满少妇中文字幕 | 帮老师解开蕾丝奶罩吸乳网站 | 狠狠色噜噜狠狠狠狠7777米奇 | 一本大道久久东京热无码av | 精品国产青草久久久久福利 | 人妻体内射精一区二区三四 | 粗大的内捧猛烈进出视频 | 亚洲狠狠婷婷综合久久 | 亚洲区欧美区综合区自拍区 | 国产一区二区三区精品视频 | 国产免费观看黄av片 | 亚洲啪av永久无码精品放毛片 | 国产激情一区二区三区 | 国产av无码专区亚洲a∨毛片 | 国产综合色产在线精品 | 秋霞特色aa大片 | 久久久久成人精品免费播放动漫 | 亚洲 另类 在线 欧美 制服 | 国产亚洲日韩欧美另类第八页 | 香蕉久久久久久av成人 | 久久久中文字幕日本无吗 | 亚洲а∨天堂久久精品2021 | 日本高清一区免费中文视频 | 人妻少妇精品久久 | 综合网日日天干夜夜久久 | 欧美 丝袜 自拍 制服 另类 | 国产一区二区三区四区五区加勒比 | 激情人妻另类人妻伦 | 久久久久99精品国产片 | 成人影院yy111111在线观看 | 亚洲啪av永久无码精品放毛片 | 日日躁夜夜躁狠狠躁 | 又紧又大又爽精品一区二区 | 波多野42部无码喷潮在线 | 精品人人妻人人澡人人爽人人 | 精品久久8x国产免费观看 | 老熟妇乱子伦牲交视频 | 国产精品18久久久久久麻辣 | 欧美 亚洲 国产 另类 | 97精品人妻一区二区三区香蕉 | 俺去俺来也www色官网 | 亚洲精品国偷拍自产在线麻豆 | 精品无码一区二区三区爱欲 | 亚洲爆乳大丰满无码专区 | 亚洲精品久久久久久一区二区 | 99re在线播放 | 美女毛片一区二区三区四区 | 少妇无码一区二区二三区 | 在线观看国产一区二区三区 | 午夜熟女插插xx免费视频 | 久久无码中文字幕免费影院蜜桃 | 亚洲另类伦春色综合小说 | 国产成人精品优优av | 夜夜高潮次次欢爽av女 | 久久www免费人成人片 | 我要看www免费看插插视频 | 一本久道久久综合婷婷五月 | 色综合久久久久综合一本到桃花网 | 欧美 日韩 亚洲 在线 | 国产av久久久久精东av | 亚洲国产精品毛片av不卡在线 | 在教室伦流澡到高潮hnp视频 | 青青青爽视频在线观看 | 色婷婷综合激情综在线播放 | 色综合久久中文娱乐网 | 国产特级毛片aaaaaa高潮流水 | 性色av无码免费一区二区三区 | 大地资源中文第3页 | 国产无遮挡又黄又爽免费视频 | 亚洲熟妇色xxxxx亚洲 | 久久国产精品偷任你爽任你 | 99精品国产综合久久久久五月天 | 久久亚洲中文字幕精品一区 | 2019午夜福利不卡片在线 | 国产精品高潮呻吟av久久4虎 | 国产亚洲精品精品国产亚洲综合 | 国产办公室秘书无码精品99 | 精品久久久久久亚洲精品 | 欧美熟妇另类久久久久久不卡 | 欧美日韩在线亚洲综合国产人 | 国产香蕉尹人视频在线 | 国产精品成人av在线观看 | 国产午夜无码视频在线观看 | 丁香花在线影院观看在线播放 | 久久99热只有频精品8 | 国产人妻精品一区二区三区不卡 | 国产精品-区区久久久狼 | 国产九九九九九九九a片 | 国产综合色产在线精品 | 亚洲成av人在线观看网址 | 领导边摸边吃奶边做爽在线观看 | 国产又爽又猛又粗的视频a片 | 亚洲aⅴ无码成人网站国产app | 亚拍精品一区二区三区探花 | 中文字幕乱码中文乱码51精品 | 亚洲成av人综合在线观看 | 日本一卡二卡不卡视频查询 | 国产电影无码午夜在线播放 | 久久久久av无码免费网 | 亚洲综合精品香蕉久久网 | 国产精品99久久精品爆乳 | 精品成在人线av无码免费看 | 中文字幕无线码 | 97人妻精品一区二区三区 | 性欧美熟妇videofreesex | 精品厕所偷拍各类美女tp嘘嘘 | 国产免费久久久久久无码 | 国产成人精品必看 | 内射老妇bbwx0c0ck | 在线成人www免费观看视频 | 亚洲国产精品毛片av不卡在线 | 67194成是人免费无码 | 欧洲美熟女乱又伦 | 亚洲日韩av一区二区三区中文 | 亚洲成av人片在线观看无码不卡 | 国产办公室秘书无码精品99 | 久久久久免费精品国产 | 色老头在线一区二区三区 | 久久久久久久久888 | 亚洲熟妇色xxxxx欧美老妇 | 亚洲 日韩 欧美 成人 在线观看 | 无码一区二区三区在线观看 | 日韩精品成人一区二区三区 | 成人免费视频视频在线观看 免费 | 色综合久久久久综合一本到桃花网 | 老熟女乱子伦 | 亚洲成av人影院在线观看 | 人妻互换免费中文字幕 | 精品久久久久久亚洲精品 | 亚洲日韩中文字幕在线播放 | 色狠狠av一区二区三区 | 国产真实伦对白全集 | 免费网站看v片在线18禁无码 | 中文字幕+乱码+中文字幕一区 | ass日本丰满熟妇pics | 无码成人精品区在线观看 | 九九在线中文字幕无码 | 无码帝国www无码专区色综合 | 成熟人妻av无码专区 | 欧美熟妇另类久久久久久不卡 | 黑人巨大精品欧美黑寡妇 | 久久99久久99精品中文字幕 | 精品无人国产偷自产在线 | 欧美 亚洲 国产 另类 | 久久精品国产大片免费观看 | 亚洲精品一区二区三区婷婷月 | 国产高潮视频在线观看 | 夜精品a片一区二区三区无码白浆 | 国产乡下妇女做爰 | 亚洲综合精品香蕉久久网 | 国产精品亚洲综合色区韩国 | 久久久久久亚洲精品a片成人 | 偷窥日本少妇撒尿chinese | 未满成年国产在线观看 | 人妻人人添人妻人人爱 | 无码午夜成人1000部免费视频 | 亚洲精品一区国产 | 欧美日韩久久久精品a片 | 任你躁在线精品免费 | 麻豆国产97在线 | 欧洲 | 国内少妇偷人精品视频免费 | 日本大香伊一区二区三区 | 丰满少妇女裸体bbw | 国产午夜亚洲精品不卡 | 免费无码的av片在线观看 | 精品无人区无码乱码毛片国产 | 欧美丰满熟妇xxxx性ppx人交 | 国产偷自视频区视频 | 少妇太爽了在线观看 | 亚洲成av人在线观看网址 | 成人免费视频视频在线观看 免费 | 2020久久香蕉国产线看观看 | 久久久国产精品无码免费专区 | 无码国产乱人伦偷精品视频 | 精品国产一区二区三区四区在线看 | 亚洲天堂2017无码 | 欧美人与善在线com | 欧美性生交xxxxx久久久 | 暴力强奷在线播放无码 | 天海翼激烈高潮到腰振不止 | 大乳丰满人妻中文字幕日本 | 狠狠色欧美亚洲狠狠色www | 欧美丰满老熟妇xxxxx性 | 久久久久se色偷偷亚洲精品av | а√天堂www在线天堂小说 | 欧美精品免费观看二区 | 四虎影视成人永久免费观看视频 | 久久久久人妻一区精品色欧美 | 久久久www成人免费毛片 | 亚洲人成网站色7799 | 亚洲精品美女久久久久久久 | 狠狠色色综合网站 | 亚洲成熟女人毛毛耸耸多 | 少女韩国电视剧在线观看完整 | 老熟女乱子伦 | 一本久久a久久精品vr综合 | 熟妇人妻无码xxx视频 | 在线欧美精品一区二区三区 | 亚洲中文字幕无码一久久区 | 狠狠色丁香久久婷婷综合五月 | 日韩精品无码一本二本三本色 | 久久午夜无码鲁丝片 | 麻豆国产97在线 | 欧洲 | 国产熟妇高潮叫床视频播放 | 亚洲第一网站男人都懂 | 国产精品理论片在线观看 | 国产 精品 自在自线 | 国产精品资源一区二区 | 中文字幕无码热在线视频 | 亚洲国产精品毛片av不卡在线 | 午夜丰满少妇性开放视频 | 99riav国产精品视频 | 精品久久久无码中文字幕 | 青青草原综合久久大伊人精品 | 一本精品99久久精品77 | 精品日本一区二区三区在线观看 | 亚洲一区av无码专区在线观看 | 波多野42部无码喷潮在线 | 欧美人妻一区二区三区 | 人妻少妇精品无码专区二区 | 久久久久成人精品免费播放动漫 | 久久久久免费精品国产 | 成人精品视频一区二区 | 欧美激情内射喷水高潮 | 无码乱肉视频免费大全合集 | 欧美国产亚洲日韩在线二区 | 久久久久国色av免费观看性色 | 中国女人内谢69xxxx | 日韩精品久久久肉伦网站 | 国产精品人妻一区二区三区四 | 久久成人a毛片免费观看网站 | 亚洲精品成人福利网站 | 精品成在人线av无码免费看 | 日韩精品久久久肉伦网站 | 欧美怡红院免费全部视频 | 亚洲成av人综合在线观看 | 午夜理论片yy44880影院 | 伊人久久大香线焦av综合影院 | 亚洲精品国产品国语在线观看 | 国产精品二区一区二区aⅴ污介绍 | 麻豆国产97在线 | 欧洲 | 精品欧洲av无码一区二区三区 | 精品偷自拍另类在线观看 | 久久精品女人的天堂av | 久久久久国色av免费观看性色 | 丰满岳乱妇在线观看中字无码 | 欧美精品免费观看二区 | 牛和人交xxxx欧美 | 日产国产精品亚洲系列 | 午夜时刻免费入口 | 九月婷婷人人澡人人添人人爽 | 熟女少妇人妻中文字幕 | 久久久久99精品国产片 | 蜜桃视频插满18在线观看 | 久久久亚洲欧洲日产国码αv | 午夜精品一区二区三区在线观看 | 久久99精品国产.久久久久 | 成人免费视频在线观看 | 老司机亚洲精品影院无码 | 国产熟妇高潮叫床视频播放 | 国产乱码精品一品二品 | 熟女俱乐部五十路六十路av | 国内精品久久毛片一区二区 | 久久久精品456亚洲影院 | 亚洲午夜福利在线观看 | 国产一区二区三区精品视频 | 精品无码国产自产拍在线观看蜜 | 女人被男人爽到呻吟的视频 | 免费网站看v片在线18禁无码 | 无码成人精品区在线观看 | 中文字幕人妻无码一区二区三区 | 久久婷婷五月综合色国产香蕉 | 日韩人妻无码一区二区三区久久99 | 亚洲一区二区三区偷拍女厕 | 亚洲a无码综合a国产av中文 | 日产国产精品亚洲系列 | 欧美xxxx黑人又粗又长 | 高清不卡一区二区三区 | 麻豆果冻传媒2021精品传媒一区下载 | 国产无遮挡又黄又爽免费视频 | 野外少妇愉情中文字幕 | 精品熟女少妇av免费观看 | 无人区乱码一区二区三区 | 色偷偷人人澡人人爽人人模 | 亚洲 高清 成人 动漫 | 亚洲国产精品成人久久蜜臀 | 无码国模国产在线观看 | 国产内射老熟女aaaa | 99视频精品全部免费免费观看 | 国产麻豆精品一区二区三区v视界 | 性生交大片免费看l | 日日鲁鲁鲁夜夜爽爽狠狠 | 色婷婷香蕉在线一区二区 | 国产后入清纯学生妹 | 未满小14洗澡无码视频网站 | 国产绳艺sm调教室论坛 | 欧美 日韩 亚洲 在线 | 狠狠色噜噜狠狠狠狠7777米奇 | 一本精品99久久精品77 | 色 综合 欧美 亚洲 国产 | 国产偷抇久久精品a片69 | √天堂中文官网8在线 | 亚洲综合色区中文字幕 | 领导边摸边吃奶边做爽在线观看 | 国产成人一区二区三区别 | 超碰97人人射妻 | 亚洲爆乳无码专区 | 7777奇米四色成人眼影 | 人妻少妇精品视频专区 | 久久久久久亚洲精品a片成人 | 99视频精品全部免费免费观看 | 九月婷婷人人澡人人添人人爽 | 午夜熟女插插xx免费视频 | 无码一区二区三区在线观看 | 国产9 9在线 | 中文 | 国产精品久久久久9999小说 | 欧美熟妇另类久久久久久不卡 | 久久 国产 尿 小便 嘘嘘 | 欧美一区二区三区视频在线观看 | 中文字幕无码乱人伦 | 色综合久久久无码网中文 | 国产精品美女久久久久av爽李琼 | 国产亲子乱弄免费视频 | 国产av无码专区亚洲awww | 亚洲va欧美va天堂v国产综合 | 国产av无码专区亚洲a∨毛片 | 精品偷拍一区二区三区在线看 | 久久综合给久久狠狠97色 | 久久久www成人免费毛片 | 亚洲中文字幕无码中文字在线 | 亚洲午夜久久久影院 | 国产精品资源一区二区 | 精品久久久久香蕉网 | 久久午夜夜伦鲁鲁片无码免费 | 色婷婷综合激情综在线播放 | 日韩成人一区二区三区在线观看 | 四虎影视成人永久免费观看视频 | а天堂中文在线官网 | 欧美日韩视频无码一区二区三 | 国产精品免费大片 | 97资源共享在线视频 | 国产婷婷色一区二区三区在线 | 亚洲s码欧洲m码国产av | 2020久久香蕉国产线看观看 | 国产成人一区二区三区别 | 免费视频欧美无人区码 | 亚洲日韩一区二区 | 精品无码av一区二区三区 | 国产成人精品优优av | av无码久久久久不卡免费网站 | 亚洲中文字幕在线无码一区二区 | 欧美喷潮久久久xxxxx | 未满小14洗澡无码视频网站 | 国产小呦泬泬99精品 | 亚洲精品一区二区三区婷婷月 | 久久久久久九九精品久 | 亚洲成a人一区二区三区 | 思思久久99热只有频精品66 | 久久熟妇人妻午夜寂寞影院 | 精品国产麻豆免费人成网站 | 久久精品丝袜高跟鞋 | 领导边摸边吃奶边做爽在线观看 | 九九久久精品国产免费看小说 | 曰韩无码二三区中文字幕 | 亚洲精品一区二区三区大桥未久 | 天天摸天天透天天添 | 午夜无码人妻av大片色欲 | 久久精品国产99久久6动漫 | 玩弄少妇高潮ⅹxxxyw | 亚洲精品美女久久久久久久 | 欧美激情内射喷水高潮 | 国产精品毛多多水多 | 成人免费视频视频在线观看 免费 | 精品偷自拍另类在线观看 | 国产黄在线观看免费观看不卡 | 日韩欧美中文字幕在线三区 | a片免费视频在线观看 | 2020最新国产自产精品 | 麻豆果冻传媒2021精品传媒一区下载 | 无遮无挡爽爽免费视频 | 久久综合给久久狠狠97色 | 精品无码国产自产拍在线观看蜜 | 成在人线av无码免观看麻豆 | 亚洲精品久久久久avwww潮水 | 亚洲第一无码av无码专区 | 免费男性肉肉影院 | 精品夜夜澡人妻无码av蜜桃 | 欧美精品一区二区精品久久 | 日韩在线不卡免费视频一区 | 亚洲国产综合无码一区 | 高中生自慰www网站 | 亚洲精品国产a久久久久久 | 蜜臀aⅴ国产精品久久久国产老师 | 亚洲爆乳精品无码一区二区三区 | 亚洲狠狠色丁香婷婷综合 | 日韩人妻少妇一区二区三区 | 日本欧美一区二区三区乱码 | 中文字幕久久久久人妻 | 成在人线av无码免观看麻豆 | 亚洲精品久久久久中文第一幕 | 九一九色国产 | 人妻与老人中文字幕 | 色婷婷综合中文久久一本 | 97无码免费人妻超级碰碰夜夜 | 日本精品人妻无码免费大全 | 99久久精品午夜一区二区 | 久久久久久久久蜜桃 | 老太婆性杂交欧美肥老太 | 丰满少妇高潮惨叫视频 | а√天堂www在线天堂小说 | 欧美日韩亚洲国产精品 | 一区二区三区乱码在线 | 欧洲 | 国产区女主播在线观看 | 综合激情五月综合激情五月激情1 | 亚洲精品国产品国语在线观看 | 一二三四社区在线中文视频 | 性啪啪chinese东北女人 | 小sao货水好多真紧h无码视频 | 性欧美牲交xxxxx视频 | 狠狠亚洲超碰狼人久久 | 麻豆精品国产精华精华液好用吗 | 日韩欧美中文字幕公布 | 在线精品国产一区二区三区 | 欧美亚洲国产一区二区三区 | 国产高清不卡无码视频 | 亚洲中文字幕在线观看 | 激情亚洲一区国产精品 | 国产真实乱对白精彩久久 | 国产成人亚洲综合无码 | 亚洲人成网站免费播放 | 国产热a欧美热a在线视频 | 131美女爱做视频 | 人妻人人添人妻人人爱 | 国产精品亚洲专区无码不卡 | 国产精品视频免费播放 | 亚洲熟妇色xxxxx欧美老妇y | 一本久久a久久精品vr综合 | 性史性农村dvd毛片 | 亚洲男女内射在线播放 | 日韩精品a片一区二区三区妖精 | 亚洲精品一区二区三区在线 | 亚洲s码欧洲m码国产av | 男女超爽视频免费播放 | 又色又爽又黄的美女裸体网站 | 暴力强奷在线播放无码 | 亚洲精品www久久久 | 无码人中文字幕 | 青青久在线视频免费观看 | 日产国产精品亚洲系列 | 国产精品久久福利网站 | 国产乱人伦av在线无码 | 久青草影院在线观看国产 | 午夜精品一区二区三区在线观看 | 自拍偷自拍亚洲精品10p | 日本肉体xxxx裸交 | 日韩av无码一区二区三区不卡 | 在线播放亚洲第一字幕 | 高清国产亚洲精品自在久久 | 国产真实乱对白精彩久久 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 荫蒂添的好舒服视频囗交 | 日韩人妻无码一区二区三区久久99 | 丰满肥臀大屁股熟妇激情视频 | 夜夜影院未满十八勿进 | 亚洲成av人影院在线观看 | 亚洲热妇无码av在线播放 | 日日摸日日碰夜夜爽av | 亚洲日韩一区二区三区 | 熟女体下毛毛黑森林 | 熟妇激情内射com | 特级做a爰片毛片免费69 | 狠狠综合久久久久综合网 | 国产精品久久久久无码av色戒 | 亚洲熟妇色xxxxx亚洲 | 国产综合色产在线精品 | 曰韩少妇内射免费播放 | 久久精品中文字幕一区 | 一二三四社区在线中文视频 | 麻豆蜜桃av蜜臀av色欲av | 成人三级无码视频在线观看 | 狂野欧美性猛xxxx乱大交 | 日日摸夜夜摸狠狠摸婷婷 | 久久精品人人做人人综合 | 亚洲性无码av中文字幕 | 亚洲国产精品毛片av不卡在线 | 精品无码一区二区三区的天堂 | 亚洲天堂2017无码中文 | 国产亚洲tv在线观看 | 好屌草这里只有精品 | 久久久久久亚洲精品a片成人 | 男女下面进入的视频免费午夜 | 粗大的内捧猛烈进出视频 | 久久国产精品二国产精品 | 在线天堂新版最新版在线8 | 亚洲成a人片在线观看无码 | 国产精品va在线播放 | 精品国产av色一区二区深夜久久 | 中文字幕无码日韩专区 | 中国女人内谢69xxxx | 成人无码影片精品久久久 | 激情五月综合色婷婷一区二区 | 国产在线一区二区三区四区五区 | 国产成人无码一二三区视频 | 中文亚洲成a人片在线观看 | 蜜臀av无码人妻精品 | 又粗又大又硬毛片免费看 | 亚洲色偷偷男人的天堂 | 乌克兰少妇xxxx做受 | 亚洲精品一区三区三区在线观看 | 噜噜噜亚洲色成人网站 | 中文字幕无码日韩欧毛 | 亚洲第一无码av无码专区 | 日日天干夜夜狠狠爱 | 亚洲精品午夜国产va久久成人 | 国产精品亚洲lv粉色 | 亚洲国产av美女网站 | 国产舌乚八伦偷品w中 | 暴力强奷在线播放无码 | 国产亚洲欧美日韩亚洲中文色 | 欧美性生交xxxxx久久久 | 中国大陆精品视频xxxx | 黑森林福利视频导航 | 曰韩少妇内射免费播放 | 久久久久亚洲精品中文字幕 | 亚洲一区二区三区国产精华液 | 麻豆成人精品国产免费 | 2020久久香蕉国产线看观看 | 99久久精品日本一区二区免费 | 中国女人内谢69xxxx | 国产精品爱久久久久久久 | 国产一区二区三区四区五区加勒比 | 一区二区三区乱码在线 | 欧洲 | 色欲人妻aaaaaaa无码 | 中文字幕日产无线码一区 | 亚洲国产综合无码一区 | 丰腴饱满的极品熟妇 | 亚洲中文字幕无码中字 | 亚洲精品国产精品乱码视色 | 亚洲欧洲中文日韩av乱码 | 亚洲の无码国产の无码影院 | 亚洲一区二区三区含羞草 | 国内精品人妻无码久久久影院 | 欧洲vodafone精品性 | 人妻互换免费中文字幕 | 国内揄拍国内精品少妇国语 | 永久免费观看国产裸体美女 | 亚洲s码欧洲m码国产av | 免费视频欧美无人区码 | 永久免费精品精品永久-夜色 | 丰满人妻翻云覆雨呻吟视频 | 国产av无码专区亚洲a∨毛片 | 4hu四虎永久在线观看 | 2020久久香蕉国产线看观看 | 日本欧美一区二区三区乱码 | 99久久无码一区人妻 | 亚欧洲精品在线视频免费观看 | 欧美日韩一区二区综合 | 牛和人交xxxx欧美 | 高清国产亚洲精品自在久久 | 国产真实夫妇视频 | 亚拍精品一区二区三区探花 | 国产精品国产自线拍免费软件 | 日韩av无码一区二区三区不卡 | 丝袜 中出 制服 人妻 美腿 | 国产亚洲日韩欧美另类第八页 | 麻豆国产丝袜白领秘书在线观看 | 久久aⅴ免费观看 | 四虎影视成人永久免费观看视频 | 夫妻免费无码v看片 | 国产成人无码一二三区视频 | 国产精品久久久久久久9999 | 欧美三级a做爰在线观看 | 漂亮人妻洗澡被公强 日日躁 | 亚洲国产欧美在线成人 | 久久久久久久人妻无码中文字幕爆 | 两性色午夜免费视频 | 亚洲乱码中文字幕在线 | 超碰97人人做人人爱少妇 | 国产精华av午夜在线观看 | 无码av岛国片在线播放 | 四虎影视成人永久免费观看视频 | 熟妇女人妻丰满少妇中文字幕 | 免费看男女做好爽好硬视频 | 久久国产36精品色熟妇 | 一本久久a久久精品亚洲 | 人妻插b视频一区二区三区 | 日日摸日日碰夜夜爽av | 国产综合色产在线精品 | 无码帝国www无码专区色综合 | 久久久精品国产sm最大网站 | 欧美日韩一区二区综合 | 中文字幕无码免费久久99 | 久久久久久国产精品无码下载 | 狠狠躁日日躁夜夜躁2020 | 99国产精品白浆在线观看免费 | 粉嫩少妇内射浓精videos | 奇米影视7777久久精品人人爽 | 中文字幕中文有码在线 | 少妇性l交大片 | 亚洲中文字幕在线无码一区二区 | 亚洲国产综合无码一区 | 日本丰满护士爆乳xxxx | 美女毛片一区二区三区四区 | 人妻与老人中文字幕 | 在线观看免费人成视频 | 国内揄拍国内精品少妇国语 | 撕开奶罩揉吮奶头视频 | 国产精品无码永久免费888 | 亚洲熟妇色xxxxx欧美老妇 | 国产亚洲精品久久久久久久久动漫 | 久青草影院在线观看国产 | 亚洲色大成网站www | 蜜桃av抽搐高潮一区二区 | 在线欧美精品一区二区三区 | 久久亚洲精品中文字幕无男同 | 国产在热线精品视频 | 欧美日韩精品 | 性生交片免费无码看人 | 亚洲国产精品美女久久久久 | 亚洲春色在线视频 | 日韩人妻无码中文字幕视频 | aa片在线观看视频在线播放 | 一个人看的视频www在线 | 亚洲精品午夜国产va久久成人 | 亚洲精品www久久久 | 亚洲色欲色欲欲www在线 | 国产精品a成v人在线播放 | 国产偷抇久久精品a片69 | 精品无码一区二区三区的天堂 | 荫蒂添的好舒服视频囗交 | 97久久国产亚洲精品超碰热 | 国产精品手机免费 | 亚洲国产欧美国产综合一区 | 极品嫩模高潮叫床 | 国产真实伦对白全集 | 亚洲一区二区三区偷拍女厕 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 色偷偷人人澡人人爽人人模 | 国产色在线 | 国产 | 亚洲爆乳大丰满无码专区 | 日韩av无码一区二区三区不卡 | 无码午夜成人1000部免费视频 | 国产精品久久久一区二区三区 | 亚洲色www成人永久网址 | 无码成人精品区在线观看 | 国精产品一区二区三区 | 国产精品亚洲综合色区韩国 | 图片小说视频一区二区 | 在线天堂新版最新版在线8 | 丰满妇女强制高潮18xxxx | 精品无码一区二区三区爱欲 | 无遮挡啪啪摇乳动态图 | 大肉大捧一进一出视频出来呀 | 午夜精品久久久久久久 | 两性色午夜视频免费播放 | 97久久超碰中文字幕 | 精品国产福利一区二区 | 国产精品久久久久影院嫩草 | 无码福利日韩神码福利片 | 久久视频在线观看精品 | 漂亮人妻洗澡被公强 日日躁 | 精品国产aⅴ无码一区二区 | 国产成人无码午夜视频在线观看 | 99精品视频在线观看免费 | 中文字幕av伊人av无码av | 精品人妻av区 | 98国产精品综合一区二区三区 | 欧美精品无码一区二区三区 | 国产精品鲁鲁鲁 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 无遮挡国产高潮视频免费观看 | 精品日本一区二区三区在线观看 | 永久黄网站色视频免费直播 | 久久无码中文字幕免费影院蜜桃 | 国产舌乚八伦偷品w中 | 国产午夜无码视频在线观看 | 夜精品a片一区二区三区无码白浆 | 亚洲成av人综合在线观看 | 精品国产一区二区三区四区在线看 | 日本精品人妻无码免费大全 | 亚洲精品中文字幕久久久久 | 精品人人妻人人澡人人爽人人 | 双乳奶水饱满少妇呻吟 | 精品成在人线av无码免费看 | 成人无码影片精品久久久 | 精品无人区无码乱码毛片国产 | 无码国内精品人妻少妇 | 人人妻人人澡人人爽欧美一区九九 | 99精品久久毛片a片 | 性史性农村dvd毛片 | 日本丰满护士爆乳xxxx | 久久伊人色av天堂九九小黄鸭 | 欧美国产日韩久久mv | 正在播放东北夫妻内射 | 久久亚洲中文字幕无码 | 久久久无码中文字幕久... | 成在人线av无码免观看麻豆 | 日本欧美一区二区三区乱码 | aa片在线观看视频在线播放 | 乌克兰少妇xxxx做受 | 99在线 | 亚洲 | 日产精品99久久久久久 | www国产亚洲精品久久网站 | 麻豆av传媒蜜桃天美传媒 | 日日麻批免费40分钟无码 | 人妻无码αv中文字幕久久琪琪布 | 国产精品人妻一区二区三区四 | 亚洲色大成网站www国产 | 天堂久久天堂av色综合 | 国产av人人夜夜澡人人爽麻豆 | 亚洲国产精品久久久久久 | 久久精品国产一区二区三区 | 成 人 网 站国产免费观看 | 在线欧美精品一区二区三区 | 国产乱子伦视频在线播放 | 国产午夜精品一区二区三区嫩草 | 国产av无码专区亚洲a∨毛片 | 国产人成高清在线视频99最全资源 | 图片小说视频一区二区 | 久久综合激激的五月天 | 夜夜夜高潮夜夜爽夜夜爰爰 | 国语精品一区二区三区 | 国产人妻久久精品二区三区老狼 | 久久久久成人精品免费播放动漫 | 香蕉久久久久久av成人 | 九月婷婷人人澡人人添人人爽 | 97精品人妻一区二区三区香蕉 | 欧美亚洲国产一区二区三区 | 国产精品亚洲专区无码不卡 | 一本精品99久久精品77 | 欧美成人免费全部网站 | 九九综合va免费看 | 精品无码一区二区三区的天堂 | 无套内谢的新婚少妇国语播放 | 久久精品人人做人人综合 | 国产无av码在线观看 | 玩弄中年熟妇正在播放 | 色窝窝无码一区二区三区色欲 | 青春草在线视频免费观看 | 日本熟妇乱子伦xxxx | 亚洲一区二区三区偷拍女厕 | 亚洲热妇无码av在线播放 | 色窝窝无码一区二区三区色欲 | 天天躁日日躁狠狠躁免费麻豆 | 久久久中文久久久无码 | 丰满少妇熟乱xxxxx视频 | 欧美精品一区二区精品久久 | 国产精品爱久久久久久久 | 久久国产精品_国产精品 | а天堂中文在线官网 | 乌克兰少妇xxxx做受 | 国产尤物精品视频 | 影音先锋中文字幕无码 | 国产超碰人人爽人人做人人添 | 成人免费视频在线观看 | 十八禁真人啪啪免费网站 | 西西人体www44rt大胆高清 | 亚洲第一无码av无码专区 | 正在播放东北夫妻内射 | 熟妇人妻中文av无码 | 香港三级日本三级妇三级 | 久久久亚洲欧洲日产国码αv | a片在线免费观看 | 国产成人精品一区二区在线小狼 | 国产精品久久久久影院嫩草 | 国精品人妻无码一区二区三区蜜柚 | 日日碰狠狠躁久久躁蜜桃 | 亚洲欧美日韩国产精品一区二区 | 国产麻豆精品精东影业av网站 | 老司机亚洲精品影院无码 | 国产精品高潮呻吟av久久4虎 | 国内老熟妇对白xxxxhd | 国内丰满熟女出轨videos | 精品偷拍一区二区三区在线看 | 人人爽人人爽人人片av亚洲 | 久久久久久av无码免费看大片 | 99精品久久毛片a片 | 国产乱子伦视频在线播放 | 国产绳艺sm调教室论坛 | 水蜜桃亚洲一二三四在线 | 丰满人妻被黑人猛烈进入 | 婷婷色婷婷开心五月四房播播 | 无码精品人妻一区二区三区av | 欧美日韩一区二区综合 | 日本又色又爽又黄的a片18禁 | 国产极品美女高潮无套在线观看 | 亚洲欧洲日本综合aⅴ在线 | 无码av中文字幕免费放 | 国产免费观看黄av片 | 亚洲一区二区三区香蕉 | 99精品国产综合久久久久五月天 | 国产精品人妻一区二区三区四 | 欧美xxxxx精品 | 色综合视频一区二区三区 | 激情国产av做激情国产爱 | 久久久久亚洲精品中文字幕 | 国产极品美女高潮无套在线观看 | 1000部啪啪未满十八勿入下载 | 中文亚洲成a人片在线观看 | 亚洲国产精品无码一区二区三区 | 日韩人妻系列无码专区 | 日本一区二区更新不卡 | 国产小呦泬泬99精品 | 99久久亚洲精品无码毛片 | 日本丰满熟妇videos | 久久综合色之久久综合 | 国产精品久久久久久久影院 | 亚洲日韩精品欧美一区二区 | 自拍偷自拍亚洲精品10p | 国产欧美精品一区二区三区 | 未满小14洗澡无码视频网站 | 国产偷国产偷精品高清尤物 | 波多野42部无码喷潮在线 | 在线看片无码永久免费视频 | 中文字幕乱妇无码av在线 | 日日摸天天摸爽爽狠狠97 | 精品人妻中文字幕有码在线 | 国内少妇偷人精品视频 | 亚无码乱人伦一区二区 | 永久免费观看美女裸体的网站 | 国产三级久久久精品麻豆三级 | 麻豆人妻少妇精品无码专区 | 亚洲成av人在线观看网址 | 成人无码视频在线观看网站 | 亚洲狠狠婷婷综合久久 | 性欧美videos高清精品 | 欧美精品国产综合久久 | 夜夜夜高潮夜夜爽夜夜爰爰 | 欧美zoozzooz性欧美 | 色诱久久久久综合网ywww | 国产人妻精品一区二区三区不卡 | av香港经典三级级 在线 | 国产成人无码av一区二区 | 久久无码专区国产精品s | 3d动漫精品啪啪一区二区中 | 大地资源中文第3页 | 欧美国产日韩久久mv | 国产色视频一区二区三区 | 日日噜噜噜噜夜夜爽亚洲精品 | 日本一区二区更新不卡 | 日本一卡2卡3卡四卡精品网站 | 国产亚洲欧美在线专区 | 少妇无码一区二区二三区 | 久久婷婷五月综合色国产香蕉 | 国产精品多人p群无码 | 东北女人啪啪对白 | 久久国语露脸国产精品电影 | 99久久人妻精品免费一区 | 性色欲网站人妻丰满中文久久不卡 | 欧美一区二区三区视频在线观看 | 国产日产欧产精品精品app | 国产亚洲欧美日韩亚洲中文色 | 中文字幕日韩精品一区二区三区 | 性色欲情网站iwww九文堂 | 野狼第一精品社区 | 乱人伦人妻中文字幕无码久久网 | 色五月丁香五月综合五月 | 乱人伦中文视频在线观看 | 日本护士毛茸茸高潮 | 日本一区二区三区免费高清 | 日韩人妻少妇一区二区三区 | 欧美丰满少妇xxxx性 | 性生交大片免费看女人按摩摩 | 色欲av亚洲一区无码少妇 | 久久人妻内射无码一区三区 | 人人妻人人澡人人爽欧美一区九九 | 日产国产精品亚洲系列 | 日本www一道久久久免费榴莲 | 亚洲人成影院在线无码按摩店 | 日韩成人一区二区三区在线观看 | 人人妻人人澡人人爽欧美精品 | 少妇无码av无码专区在线观看 | 性欧美熟妇videofreesex | 亚洲成色在线综合网站 | 成人综合网亚洲伊人 | 精品无码一区二区三区爱欲 | 久久久久久av无码免费看大片 | 国产精品资源一区二区 | 精品人妻av区 | 亚洲熟妇色xxxxx欧美老妇 | 无码毛片视频一区二区本码 | 国产精品美女久久久久av爽李琼 | 久久久成人毛片无码 | 欧美国产日韩亚洲中文 | 国产人妻大战黑人第1集 | 亚洲 a v无 码免 费 成 人 a v | 国产精品沙发午睡系列 | 77777熟女视频在线观看 а天堂中文在线官网 | 精品国产一区av天美传媒 | 亚洲а∨天堂久久精品2021 | 撕开奶罩揉吮奶头视频 | 色综合久久久无码中文字幕 | 少妇性荡欲午夜性开放视频剧场 | 日本一本二本三区免费 | 欧美国产日韩久久mv | 中文字幕av无码一区二区三区电影 | 中文毛片无遮挡高清免费 | 久久国产精品萌白酱免费 | 亚洲日韩av片在线观看 | 色婷婷av一区二区三区之红樱桃 | 爆乳一区二区三区无码 | 国产特级毛片aaaaaaa高清 | 亚洲成a人片在线观看无码3d | 奇米影视7777久久精品人人爽 | 国精品人妻无码一区二区三区蜜柚 | 久久综合色之久久综合 | 国产办公室秘书无码精品99 | 精品偷拍一区二区三区在线看 | 亚洲欧美国产精品久久 | 亚洲国产午夜精品理论片 | 国产国语老龄妇女a片 | 激情内射日本一区二区三区 | 亚洲男女内射在线播放 | 久久精品人人做人人综合 | 无码精品人妻一区二区三区av | 四虎永久在线精品免费网址 | 亚洲一区二区三区 | 夜先锋av资源网站 | 欧美高清在线精品一区 | 亚洲毛片av日韩av无码 | 日本精品少妇一区二区三区 | 永久免费精品精品永久-夜色 | 亚洲爆乳大丰满无码专区 | 成人无码精品1区2区3区免费看 | 国产精品18久久久久久麻辣 | 中文字幕无线码免费人妻 | 欧美午夜特黄aaaaaa片 | 97se亚洲精品一区 | 亚洲阿v天堂在线 | 少妇一晚三次一区二区三区 | 国产舌乚八伦偷品w中 | 东京热一精品无码av | 国产精品久久久久无码av色戒 | 国产精品va在线观看无码 | 日日摸夜夜摸狠狠摸婷婷 | 婷婷丁香六月激情综合啪 | 丰满肥臀大屁股熟妇激情视频 | 国产亚洲美女精品久久久2020 | yw尤物av无码国产在线观看 | 精品久久综合1区2区3区激情 | 奇米影视888欧美在线观看 | 国产超碰人人爽人人做人人添 | 亚洲中文字幕在线观看 | 午夜精品一区二区三区在线观看 | 台湾无码一区二区 | 日本xxxx色视频在线观看免费 | 55夜色66夜色国产精品视频 | 丰腴饱满的极品熟妇 | 精品国精品国产自在久国产87 | 国产亚洲精品久久久闺蜜 | 青青青爽视频在线观看 | 亚洲色无码一区二区三区 | 国产免费久久久久久无码 | 成人免费无码大片a毛片 | 精品厕所偷拍各类美女tp嘘嘘 | 精品国产一区二区三区四区 | 久9re热视频这里只有精品 | 中文字幕av日韩精品一区二区 | 国产三级久久久精品麻豆三级 | 欧美zoozzooz性欧美 | 亚洲一区二区三区在线观看网站 | 久久综合色之久久综合 | 无码人妻精品一区二区三区不卡 | 四虎影视成人永久免费观看视频 | 亚洲国产欧美日韩精品一区二区三区 | 无码av免费一区二区三区试看 | 2020久久香蕉国产线看观看 | 性做久久久久久久久 | 亚洲精品美女久久久久久久 | 亚洲另类伦春色综合小说 | 国产欧美精品一区二区三区 | 永久免费观看美女裸体的网站 | 国产精品久久国产精品99 | 精品水蜜桃久久久久久久 | 免费中文字幕日韩欧美 | 暴力强奷在线播放无码 | 黑人巨大精品欧美黑寡妇 | 小sao货水好多真紧h无码视频 | 午夜成人1000部免费视频 | 久久无码中文字幕免费影院蜜桃 | aa片在线观看视频在线播放 | 亚洲呦女专区 | 无码人妻精品一区二区三区下载 | 荫蒂被男人添的好舒服爽免费视频 | 特级做a爰片毛片免费69 | 老司机亚洲精品影院无码 | 大色综合色综合网站 | 亚洲国产欧美在线成人 | 日本肉体xxxx裸交 | 强辱丰满人妻hd中文字幕 | 真人与拘做受免费视频 | 亚洲国产精品成人久久蜜臀 | 成人无码精品一区二区三区 | 在线天堂新版最新版在线8 | 午夜福利试看120秒体验区 | 蜜桃臀无码内射一区二区三区 | 在线精品国产一区二区三区 | 亚洲一区二区三区四区 | 天堂久久天堂av色综合 | 少妇厨房愉情理9仑片视频 | 无码人妻出轨黑人中文字幕 | 无人区乱码一区二区三区 | 国产成人综合色在线观看网站 | 亚洲日韩精品欧美一区二区 | 精品乱子伦一区二区三区 | 俺去俺来也在线www色官网 | 国产乱人无码伦av在线a | 欧美黑人性暴力猛交喷水 | 国内揄拍国内精品人妻 | 天天摸天天透天天添 | 亚洲色大成网站www国产 | 国产99久久精品一区二区 | 熟妇人妻无码xxx视频 | 一本色道久久综合亚洲精品不卡 | 日本精品人妻无码77777 天堂一区人妻无码 | 欧美大屁股xxxxhd黑色 | a在线观看免费网站大全 | 人人妻人人澡人人爽人人精品 | 国产成人精品优优av | 欧美精品免费观看二区 | 欧美日韩视频无码一区二区三 | 少妇激情av一区二区 | 内射老妇bbwx0c0ck | 丰满岳乱妇在线观看中字无码 | 中国大陆精品视频xxxx | 玩弄少妇高潮ⅹxxxyw | 国产乱子伦视频在线播放 | 国内精品人妻无码久久久影院 | 亚洲自偷自偷在线制服 | 无码吃奶揉捏奶头高潮视频 | 亚洲一区二区三区无码久久 | 国产精品久久久久影院嫩草 | 国产黑色丝袜在线播放 | 国产真实伦对白全集 | 中文字幕人妻丝袜二区 | 国产精品高潮呻吟av久久4虎 | 一本一道久久综合久久 | 人妻人人添人妻人人爱 | 强伦人妻一区二区三区视频18 | 色欲av亚洲一区无码少妇 | 欧美zoozzooz性欧美 | 强辱丰满人妻hd中文字幕 | 思思久久99热只有频精品66 | 久久成人a毛片免费观看网站 | 亚洲成a人一区二区三区 | 欧美人与禽猛交狂配 | 亚洲另类伦春色综合小说 | 精品久久8x国产免费观看 | 午夜福利试看120秒体验区 | 偷窥日本少妇撒尿chinese | 一本色道婷婷久久欧美 | 色五月丁香五月综合五月 | 久久久无码中文字幕久... | 狠狠躁日日躁夜夜躁2020 | 国产无套内射久久久国产 | 色偷偷人人澡人人爽人人模 | 高清无码午夜福利视频 | 日日橹狠狠爱欧美视频 | 国产色视频一区二区三区 | 久久久久久九九精品久 | 色情久久久av熟女人妻网站 | 免费观看又污又黄的网站 | 亚洲欧美精品aaaaaa片 | 成人精品天堂一区二区三区 | 国产 精品 自在自线 | 欧美亚洲国产一区二区三区 | 欧美阿v高清资源不卡在线播放 | 动漫av一区二区在线观看 | 在线观看国产一区二区三区 | 性色欲情网站iwww九文堂 | 一本加勒比波多野结衣 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 国产在热线精品视频 | 色狠狠av一区二区三区 | 18禁止看的免费污网站 | 久久久久久久人妻无码中文字幕爆 | 国内精品久久毛片一区二区 | 人人妻人人澡人人爽人人精品 | 清纯唯美经典一区二区 | 国产精品久久久久久久影院 | 无码福利日韩神码福利片 | 内射白嫩少妇超碰 | 久久久久se色偷偷亚洲精品av | 欧美日韩色另类综合 | 又紧又大又爽精品一区二区 | 亚洲日韩一区二区三区 | 亚洲 a v无 码免 费 成 人 a v | 无码一区二区三区在线 | 一二三四在线观看免费视频 | 国产午夜视频在线观看 | 中文精品无码中文字幕无码专区 | 5858s亚洲色大成网站www | 无码任你躁久久久久久久 | 国产性生交xxxxx无码 | 欧美日韩在线亚洲综合国产人 | 无码精品国产va在线观看dvd | 最新版天堂资源中文官网 | 久久伊人色av天堂九九小黄鸭 | 国产亚av手机在线观看 | 波多野结衣一区二区三区av免费 | 波多野结衣乳巨码无在线观看 | 欧美人与动性行为视频 | 中文字幕久久久久人妻 | 日日摸天天摸爽爽狠狠97 | 国产精品无套呻吟在线 | 午夜精品一区二区三区的区别 | 久久五月精品中文字幕 | 18禁止看的免费污网站 | 大肉大捧一进一出视频出来呀 | 香蕉久久久久久av成人 | 少妇无码一区二区二三区 | 国产精品办公室沙发 | 思思久久99热只有频精品66 | 美女扒开屁股让男人桶 | 兔费看少妇性l交大片免费 | 国产亚洲日韩欧美另类第八页 | 久久久久成人精品免费播放动漫 | 久久99精品久久久久久动态图 | 日韩欧美成人免费观看 | 激情人妻另类人妻伦 | 鲁大师影院在线观看 | 亚洲gv猛男gv无码男同 | 国产综合在线观看 | 亚洲国产精品美女久久久久 | 久久综合色之久久综合 | 成人欧美一区二区三区黑人免费 | 中文字幕无码视频专区 | 国产亚洲人成在线播放 | 性色av无码免费一区二区三区 | 亚洲自偷精品视频自拍 | 夜先锋av资源网站 | 日韩欧美中文字幕公布 | 黑人巨大精品欧美一区二区 | 国产农村妇女高潮大叫 | 免费视频欧美无人区码 | 人妻插b视频一区二区三区 | 4hu四虎永久在线观看 | 国产热a欧美热a在线视频 | 免费无码的av片在线观看 | 国色天香社区在线视频 | 麻豆成人精品国产免费 | 骚片av蜜桃精品一区 | 又大又紧又粉嫩18p少妇 | 日日摸天天摸爽爽狠狠97 | 久久久国产精品无码免费专区 | 2020久久香蕉国产线看观看 | 国产suv精品一区二区五 | 亚洲色无码一区二区三区 | 国产莉萝无码av在线播放 | 东京热无码av男人的天堂 | 成人一在线视频日韩国产 | 欧美熟妇另类久久久久久不卡 | 在线精品亚洲一区二区 | 色妞www精品免费视频 | 成人精品天堂一区二区三区 | 色婷婷av一区二区三区之红樱桃 | 无码帝国www无码专区色综合 | 无码福利日韩神码福利片 | 性色av无码免费一区二区三区 | 装睡被陌生人摸出水好爽 | 中文字幕日韩精品一区二区三区 | 国产又爽又黄又刺激的视频 | 香港三级日本三级妇三级 | 亚洲日韩av一区二区三区四区 | 人人妻人人澡人人爽人人精品 | 国产精品亚洲专区无码不卡 | 无码av免费一区二区三区试看 | 午夜福利试看120秒体验区 | 亚无码乱人伦一区二区 | 18黄暴禁片在线观看 | 成人亚洲精品久久久久 | aa片在线观看视频在线播放 | www一区二区www免费 | 国产亲子乱弄免费视频 | 久久无码中文字幕免费影院蜜桃 | 欧美日韩人成综合在线播放 | 日本大香伊一区二区三区 | 免费看男女做好爽好硬视频 | 午夜精品一区二区三区的区别 | 亚洲人成人无码网www国产 | 日本精品久久久久中文字幕 | 少妇高潮喷潮久久久影院 | 熟妇人妻激情偷爽文 | 青青草原综合久久大伊人精品 | 精品人人妻人人澡人人爽人人 | 俺去俺来也www色官网 | 影音先锋中文字幕无码 | 国精产品一品二品国精品69xx | 国产深夜福利视频在线 | 亚洲人成网站免费播放 | 久久午夜无码鲁丝片 | 人妻插b视频一区二区三区 | 欧美高清在线精品一区 | 在线观看欧美一区二区三区 | 日本一卡二卡不卡视频查询 | 熟女俱乐部五十路六十路av | 999久久久国产精品消防器材 | 亚洲精品国偷拍自产在线麻豆 | 欧美一区二区三区 | 无码午夜成人1000部免费视频 | 中文字幕 亚洲精品 第1页 | 国产午夜无码精品免费看 | 欧美freesex黑人又粗又大 | 国产精品无码一区二区三区不卡 | 久久精品成人欧美大片 | 男人的天堂av网站 | 欧美日韩一区二区免费视频 | 日本熟妇浓毛 | 中文字幕无码av波多野吉衣 | 中文字幕人妻丝袜二区 | 日本xxxx色视频在线观看免费 | 亚洲乱码国产乱码精品精 | 欧美自拍另类欧美综合图片区 | 日韩精品久久久肉伦网站 | 中文字幕av伊人av无码av | 国产av无码专区亚洲awww | 亚洲自偷自偷在线制服 | 亚洲成av人影院在线观看 | 亚洲人亚洲人成电影网站色 | 夜精品a片一区二区三区无码白浆 | 日日夜夜撸啊撸 | 中文字幕无码av波多野吉衣 | yw尤物av无码国产在线观看 | 国产精品99爱免费视频 | 国产精品国产三级国产专播 | 日韩精品a片一区二区三区妖精 | 色欲av亚洲一区无码少妇 | 午夜免费福利小电影 | 在教室伦流澡到高潮hnp视频 | 欧美日韩亚洲国产精品 | 少妇厨房愉情理9仑片视频 | 在教室伦流澡到高潮hnp视频 | 夜夜夜高潮夜夜爽夜夜爰爰 | 国产亚洲人成在线播放 | 55夜色66夜色国产精品视频 | 蜜桃av抽搐高潮一区二区 | 亚洲最大成人网站 | 夜夜影院未满十八勿进 | 欧美人妻一区二区三区 | 九一九色国产 | 色欲人妻aaaaaaa无码 | 久热国产vs视频在线观看 | 又粗又大又硬又长又爽 | 久久综合给久久狠狠97色 | 久久人人爽人人爽人人片av高清 | 亚洲の无码国产の无码影院 | 国产在线精品一区二区三区直播 | 日韩欧美中文字幕在线三区 | 中文字幕无码免费久久9一区9 | 国产舌乚八伦偷品w中 | 樱花草在线播放免费中文 | 亚洲中文字幕无码中文字在线 | 久久视频在线观看精品 | 无码人妻精品一区二区三区不卡 | 伊人久久大香线蕉av一区二区 | 国产肉丝袜在线观看 | 天天摸天天碰天天添 | 好爽又高潮了毛片免费下载 | 图片小说视频一区二区 | 日本免费一区二区三区最新 | 亚洲阿v天堂在线 | 未满成年国产在线观看 | 荫蒂被男人添的好舒服爽免费视频 | 在线观看免费人成视频 | 天下第一社区视频www日本 | 俄罗斯老熟妇色xxxx | 久久天天躁夜夜躁狠狠 | 亚洲色在线无码国产精品不卡 | 国产黄在线观看免费观看不卡 | 欧美丰满老熟妇xxxxx性 | 国产偷国产偷精品高清尤物 | 日本丰满熟妇videos | 领导边摸边吃奶边做爽在线观看 | 亚洲精品一区二区三区大桥未久 | 鲁鲁鲁爽爽爽在线视频观看 | 亚洲国产精品美女久久久久 | 纯爱无遮挡h肉动漫在线播放 | 国色天香社区在线视频 | 少妇无套内谢久久久久 | 久久综合激激的五月天 | 99精品视频在线观看免费 | 男女下面进入的视频免费午夜 | 一区二区三区乱码在线 | 欧洲 | 久青草影院在线观看国产 | 亚洲狠狠色丁香婷婷综合 | 乱中年女人伦av三区 | 欧美猛少妇色xxxxx | 久久久www成人免费毛片 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 亚洲精品一区二区三区在线 | 乱码av麻豆丝袜熟女系列 | 亚无码乱人伦一区二区 | 日本欧美一区二区三区乱码 | 欧美日韩在线亚洲综合国产人 | 欧洲熟妇精品视频 | 内射后入在线观看一区 | 55夜色66夜色国产精品视频 | 久久综合香蕉国产蜜臀av | 欧美亚洲国产一区二区三区 | 熟女少妇人妻中文字幕 | 亚洲成色www久久网站 | 日本饥渴人妻欲求不满 | 中国女人内谢69xxxxxa片 | 亚洲经典千人经典日产 | 久久精品人人做人人综合 | 131美女爱做视频 | 中文字幕人成乱码熟女app | 国产精品久久精品三级 | 中文精品无码中文字幕无码专区 | 特级做a爰片毛片免费69 | 日韩人妻系列无码专区 | 鲁大师影院在线观看 | 欧美人与善在线com | 67194成是人免费无码 | 少妇太爽了在线观看 | 性欧美大战久久久久久久 | av无码不卡在线观看免费 | 精品久久综合1区2区3区激情 | 中文字幕色婷婷在线视频 | 久久国产精品偷任你爽任你 | 亚洲成av人在线观看网址 | 久久久久亚洲精品中文字幕 | 在线精品国产一区二区三区 | 久久 国产 尿 小便 嘘嘘 | 国产精品久久久久9999小说 | 97久久超碰中文字幕 | 精品亚洲成av人在线观看 | 狠狠躁日日躁夜夜躁2020 | 久久 国产 尿 小便 嘘嘘 | 日韩成人一区二区三区在线观看 | 精品无码av一区二区三区 | 欧美兽交xxxx×视频 | 精品aⅴ一区二区三区 | 欧美阿v高清资源不卡在线播放 | 国产热a欧美热a在线视频 | 亚洲区小说区激情区图片区 | 国产乱子伦视频在线播放 | a国产一区二区免费入口 | 乱人伦人妻中文字幕无码久久网 | 国产乱人伦av在线无码 | 又黄又爽又色的视频 | 久久国产精品_国产精品 | 欧美亚洲国产一区二区三区 | 久9re热视频这里只有精品 | 日本熟妇浓毛 | 鲁鲁鲁爽爽爽在线视频观看 | 久久五月精品中文字幕 | 少妇无套内谢久久久久 | 亚洲人成影院在线观看 | 在线 国产 欧美 亚洲 天堂 | 国产艳妇av在线观看果冻传媒 | 中文字幕av日韩精品一区二区 | 无码av岛国片在线播放 | 国产精品久久久久久无码 | 国产精品鲁鲁鲁 | 内射白嫩少妇超碰 | aa片在线观看视频在线播放 | 中文字幕日韩精品一区二区三区 | 鲁鲁鲁爽爽爽在线视频观看 | 国内老熟妇对白xxxxhd | 永久免费观看国产裸体美女 | 人妻夜夜爽天天爽三区 | 香蕉久久久久久av成人 | 在线播放亚洲第一字幕 | 亚洲精品欧美二区三区中文字幕 | 人人妻人人澡人人爽欧美一区 | 天海翼激烈高潮到腰振不止 | 国产在线精品一区二区高清不卡 | 老熟女重囗味hdxx69 | 亚洲精品国产精品乱码不卡 | 久久精品丝袜高跟鞋 | 亚洲国产欧美日韩精品一区二区三区 | 久久午夜夜伦鲁鲁片无码免费 | 日本免费一区二区三区最新 | 岛国片人妻三上悠亚 | 亚洲精品美女久久久久久久 | 日日碰狠狠躁久久躁蜜桃 | 精品乱子伦一区二区三区 | 欧洲精品码一区二区三区免费看 | 精品国产成人一区二区三区 | 亚洲国产欧美在线成人 | 久久久久亚洲精品男人的天堂 | 精品乱码久久久久久久 | 熟妇人妻激情偷爽文 | 乱码av麻豆丝袜熟女系列 | 亚洲综合久久一区二区 | 成人aaa片一区国产精品 | 久久综合色之久久综合 | 日韩人妻少妇一区二区三区 | 欧美日韩综合一区二区三区 | av在线亚洲欧洲日产一区二区 | 内射后入在线观看一区 | 欧洲熟妇色 欧美 | 亚洲 另类 在线 欧美 制服 | 2020久久香蕉国产线看观看 | 国产精品亚洲а∨无码播放麻豆 | 自拍偷自拍亚洲精品10p | 欧美人与禽zoz0性伦交 | 欧美日韩人成综合在线播放 | 性开放的女人aaa片 | 特级做a爰片毛片免费69 | 久久久久久久人妻无码中文字幕爆 | 男女猛烈xx00免费视频试看 | 欧美性猛交内射兽交老熟妇 | 久久精品无码一区二区三区 | 亚洲综合无码一区二区三区 | 久在线观看福利视频 | 天堂а√在线地址中文在线 | 日韩人妻无码一区二区三区久久99 | 国产精品久久久一区二区三区 | 国产猛烈高潮尖叫视频免费 | 熟女俱乐部五十路六十路av | 国产精品理论片在线观看 | 一本色道久久综合亚洲精品不卡 | 麻豆精产国品 | 十八禁真人啪啪免费网站 | 无码人妻黑人中文字幕 | 成人aaa片一区国产精品 | 亚洲爆乳精品无码一区二区三区 | 国产香蕉97碰碰久久人人 | 国产精品人人妻人人爽 | 少妇邻居内射在线 | 色诱久久久久综合网ywww | 无码av中文字幕免费放 | 成人精品视频一区二区三区尤物 | 国内综合精品午夜久久资源 | 四虎永久在线精品免费网址 | 国产精品第一国产精品 | 一区二区三区乱码在线 | 欧洲 | 国产亚洲精品久久久ai换 | 性生交片免费无码看人 | 亚洲国产精品久久久久久 | 精品欧洲av无码一区二区三区 | 中文字幕av日韩精品一区二区 | 欧美黑人性暴力猛交喷水 | 中文字幕无码av波多野吉衣 | 97夜夜澡人人双人人人喊 | 少妇愉情理伦片bd | 精品人人妻人人澡人人爽人人 | 东京热男人av天堂 | 狠狠噜狠狠狠狠丁香五月 | 国产又爽又黄又刺激的视频 | 亚洲精品国产第一综合99久久 | 欧美午夜特黄aaaaaa片 | 大肉大捧一进一出好爽视频 | 无遮挡国产高潮视频免费观看 | 亚洲国产精品久久久久久 | 亚洲精品一区二区三区在线观看 | 国产精品二区一区二区aⅴ污介绍 | 中文字幕av日韩精品一区二区 | 亚洲一区二区三区 | 久久精品女人天堂av免费观看 | 免费无码一区二区三区蜜桃大 | 自拍偷自拍亚洲精品10p | 亚洲中文字幕av在天堂 | 国产成人综合在线女婷五月99播放 | 亚洲中文字幕在线观看 | 精品人人妻人人澡人人爽人人 | 久久久婷婷五月亚洲97号色 | 久久久国产精品无码免费专区 | 亚洲成av人综合在线观看 | 在线观看国产一区二区三区 | 国产乱人伦av在线无码 | 99麻豆久久久国产精品免费 | 中文字幕无码乱人伦 | 欧洲欧美人成视频在线 | 少妇被黑人到高潮喷出白浆 | 国产麻豆精品一区二区三区v视界 | 欧美丰满熟妇xxxx | 国产成人无码av一区二区 | 免费中文字幕日韩欧美 | 性生交大片免费看女人按摩摩 | 国产精品久久久 | 狠狠色丁香久久婷婷综合五月 | 国产在线精品一区二区三区直播 | 国产综合色产在线精品 | 牛和人交xxxx欧美 | 色婷婷综合激情综在线播放 | 中文字幕无码乱人伦 | 西西人体www44rt大胆高清 | 欧美亚洲国产一区二区三区 | 一本久久伊人热热精品中文字幕 | 少妇愉情理伦片bd | 无码帝国www无码专区色综合 | 色妞www精品免费视频 | 麻豆av传媒蜜桃天美传媒 | 一本久久a久久精品vr综合 | 综合人妻久久一区二区精品 | 日日夜夜撸啊撸 | 欧美日韩视频无码一区二区三 | 欧美人妻一区二区三区 | 亚洲一区二区三区含羞草 | 天天摸天天碰天天添 | 国产乱码精品一品二品 | 国产97色在线 | 免 | 熟妇人妻激情偷爽文 | 99国产精品白浆在线观看免费 | 国产精品无码mv在线观看 | 欧洲美熟女乱又伦 | 亚洲人成无码网www | 亚洲人成人无码网www国产 | 久久久无码中文字幕久... |