久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

Common Trace Format

發(fā)布時(shí)間:2023/12/20 编程问答 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Common Trace Format 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>

Common Trace Format (CTF) Specification (v1.8.1)Mathieu Desnoyers, EfficiOS Inc.The goal of the present document is to specify a trace format that suits the needs of the embedded, telecom, high-performance and kernel communities. It is based on the Common Trace Format Requirements (v1.4) document. It is designed to allow traces to be natively generated by the Linux kernel, Linux user-space applications written in C/C++, and hardware components. One major element of CTF is the Trace Stream Description Language (TSDL) which flexibility enables description of various binary trace stream layouts.The latest version of this document can be found at:git tree: git://git.efficios.com/ctf.gitgitweb: http://git.efficios.com/?p=ctf.gitA reference implementation of a library to read and write this trace format is being implemented within the BabelTrace project, a converter between trace formats. The development tree is available at:git tree: git://git.efficios.com/babeltrace.gitgitweb: http://git.efficios.com/?p=babeltrace.gitThe CE Workgroup of the Linux Foundation, Ericsson, and EfficiOS have sponsored this work.Table of Contents1. Preliminary definitions 2. High-level representation of a trace 3. Event stream 4. Types4.1 Basic types4.1.1 Type inheritance4.1.2 Alignment4.1.3 Byte order4.1.4 Size4.1.5 Integers4.1.6 GNU/C bitfields4.1.7 Floating point4.1.8 Enumerations 4.2 Compound types4.2.1 Structures4.2.2 Variants (Discriminated/Tagged Unions)4.2.3 Arrays4.2.4 Sequences4.2.5 Strings 5. Event Packet Header5.1 Event Packet Header Description5.2 Event Packet Context Description 6. Event Structure6.1 Event Header6.1.1 Type 1 - Few event IDs6.1.2 Type 2 - Many event IDs6.2 Event Context6.3 Event Payload6.3.1 Padding6.3.2 Alignment 7. Trace Stream Description Language (TSDL)7.1 Meta-data7.2 Declaration vs Definition7.3 TSDL Scopes7.3.1 Lexical Scope7.3.2 Static and Dynamic Scopes7.4 TSDL Examples 8. Clocks1. Preliminary definitions- Event Trace: An ordered sequence of events.- Event Stream: An ordered sequence of events, containing a subset of thetrace event types.- Event Packet: A sequence of physically contiguous events within an eventstream.- Event: This is the basic entry in a trace. (aka: a trace record).- An event identifier (ID) relates to the class (a type) of event withinan event stream.e.g. event: irq_entry.- An event (or event record) relates to a specific instance of an eventclass.e.g. event: irq_entry, at time X, on CPU Y- Source Architecture: Architecture writing the trace.- Reader Architecture: Architecture reading the trace.2. High-level representation of a traceA trace is divided into multiple event streams. Each event stream contains a subset of the trace event types.The final output of the trace, after its generation and optional transport over the network, is expected to be either on permanent or temporary storage in a virtual file system. Because each event stream is appended to while a trace is being recorded, each is associated with a distinct set of files for output. Therefore, a stored trace can be represented as a directory containing zero, one or more files per stream.Meta-data description associated with the trace contains information on trace event types expressed in the Trace Stream Description Language (TSDL). This language describes:- Trace version. - Types available. - Per-trace event header description. - Per-stream event header description. - Per-stream event context description. - Per-event- Event type to stream mapping.- Event type to name mapping.- Event type to ID mapping.- Event context description.- Event fields description.3. Event streamAn event stream can be divided into contiguous event packets of variable size. These subdivisions have a variable size. An event packet can contain a certain amount of padding at the end. The stream header is repeated at the beginning of each event packet. The rationale for the event stream design choices is explained in Appendix B. Stream Header Rationale.The event stream header will therefore be referred to as the "event packet header" throughout the rest of this document.4. TypesTypes are organized as type classes. Each type class belong to either of two kind of types: basic types or compound types.4.1 Basic typesA basic type is a scalar type, as described in this section. It includes integers, GNU/C bitfields, enumerations, and floating point values.4.1.1 Type inheritanceType specifications can be inherited to allow deriving types from a type class. For example, see the uint32_t named type derived from the "integer" type class below ("Integers" section). Types have a precise binary representation in the trace. A type class has methods to read and write these types, but must be derived into a type to be usable in an event field.4.1.2 AlignmentWe define "byte-packed" types as aligned on the byte size, namely 8-bit. We define "bit-packed" types as following on the next bit, as defined by the "Integers" section.Each basic type must specify its alignment, in bits. Examples of possible alignments are: bit-packed (align = 1), byte-packed (align = 8), or word-aligned (e.g. align = 32 or align = 64). The choice depends on the architecture preference and compactness vs performance trade-offs of the implementation. Architectures providing fast unaligned write byte-packed basic types to save space, aligning each type on byte boundaries (8-bit). Architectures with slow unaligned writes align types on specific alignment values. If no specific alignment is declared for a type, it is assumed to be bit-packed for integers with size not multiple of 8 bits and for gcc bitfields. All other basic types are byte-packed by default. It is however recommended to always specify the alignment explicitly. Alignment values must be power of two. Compound types are aligned as specified in their individual specification.TSDL meta-data attribute representation of a specific alignment:align = value; /* value in bits */4.1.3 Byte orderBy default, the native endianness of the source architecture the trace is used. Byte order can be overridden for a basic type by specifying a "byte_order" attribute. Typical use-case is to specify the network byte order (big endian: "be") to save data captured from the network into the trace without conversion. If not specified, the byte order is native.TSDL meta-data representation:byte_order = native OR network OR be OR le; /* network and be are aliases */4.1.4 SizeType size, in bits, for integers and floats is that returned by "sizeof()" in C multiplied by CHAR_BIT. We require the size of "char" and "unsigned char" types (CHAR_BIT) to be fixed to 8 bits for cross-endianness compatibility.TSDL meta-data representation:size = value; (value is in bits)4.1.5 IntegersSigned integers are represented in two-complement. Integer alignment, size, signedness and byte ordering are defined in the TSDL meta-data. Integers aligned on byte size (8-bit) and with length multiple of byte size (8-bit) correspond to the C99 standard integers. In addition, integers with alignment and/or size that are _not_ a multiple of the byte size are permitted; these correspond to the C99 standard bitfields, with the added specification that the CTF integer bitfields have a fixed binary representation. A MIT-licensed reference implementation of the CTF portable bitfields is available at:http://git.efficios.com/?p=babeltrace.git;a=blob;f=include/babeltrace/bitfield.hBinary representation of integers:- On little and big endian:- Within a byte, high bits correspond to an integer high bits, and low bitscorrespond to low bits. - On little endian:- Integer across multiple bytes are placed from the less significant to themost significant.- Consecutive integers are placed from lower bits to higher bits (even withina byte). - On big endian:- Integer across multiple bytes are placed from the most significant to theless significant.- Consecutive integers are placed from higher bits to lower bits (even withina byte).This binary representation is derived from the bitfield implementation in GCC for little and big endian. However, contrary to what GCC does, integers can cross units boundaries (no padding is required). Padding can be explicitly added (see 4.1.6 GNU/C bitfields) to follow the GCC layout if needed.TSDL meta-data representation:integer {signed = true OR false; /* default false */byte_order = native OR network OR be OR le; /* default native */size = value; /* value in bits, no default */align = value; /* value in bits *//* based used for pretty-printing output, default: decimal. */base = decimal OR dec OR OR d OR i OR u OR 10 OR hexadecimal OR hex OR x OR X OR p OR 16OR octal OR oct OR o OR 8 OR binary OR b OR 2;/* character encoding, default: none */encoding = none or UTF8 or ASCII;}Example of type inheritance (creation of a uint32_t named type):typealias integer {size = 32;signed = false;align = 32; } := uint32_t;Definition of a named 5-bit signed bitfield:typealias integer {size = 5;signed = true;align = 1; } := int5_t;The character encoding field can be used to specify that the integer must be printed as a text character when read. e.g.:typealias integer {size = 8;align = 8;signed = false;encoding = UTF8; } := utf_char;4.1.6 GNU/C bitfieldsThe GNU/C bitfields follow closely the integer representation, with a particularity on alignment: if a bitfield cannot fit in the current unit, the unit is padded and the bitfield starts at the following unit. The unit size is defined by the size of the type "unit_type".TSDL meta-data representation:unit_type name:size;As an example, the following structure declared in C compiled by GCC:struct example {short a:12;short b:5; };The example structure is aligned on the largest element (short). The second bitfield would be aligned on the next unit boundary, because it would not fit in the current unit.4.1.7 Floating pointThe floating point values byte ordering is defined in the TSDL meta-data.Floating point values follow the IEEE 754-2008 standard interchange formats. Description of the floating point values include the exponent and mantissa size in bits. Some requirements are imposed on the floating point values:- FLT_RADIX must be 2. - mant_dig is the number of digits represented in the mantissa. It is specifiedby the ISO C99 standard, section 5.2.4, as FLT_MANT_DIG, DBL_MANT_DIG andLDBL_MANT_DIG as defined by <float.h>. - exp_dig is the number of digits represented in the exponent. Given thatmant_dig is one bit more than its actual size in bits (leading 1 is notneeded) and also given that the sign bit always takes one bit, exp_dig can bespecified as:- sizeof(float) * CHAR_BIT - FLT_MANT_DIG- sizeof(double) * CHAR_BIT - DBL_MANT_DIG- sizeof(long double) * CHAR_BIT - LDBL_MANT_DIGTSDL meta-data representation:floating_point {exp_dig = value;mant_dig = value;byte_order = native OR network OR be OR le;align = value; }Example of type inheritance:typealias floating_point {exp_dig = 8; /* sizeof(float) * CHAR_BIT - FLT_MANT_DIG */mant_dig = 24; /* FLT_MANT_DIG */byte_order = native;align = 32; } := float;TODO: define NaN, +inf, -inf behavior.Bit-packed, byte-packed or larger alignments can be used for floating point values, similarly to integers.4.1.8 EnumerationsEnumerations are a mapping between an integer type and a table of strings. The numerical representation of the enumeration follows the integer type specified by the meta-data. The enumeration mapping table is detailed in the enumeration description within the meta-data. The mapping table maps inclusive value ranges (or single values) to strings. Instead of being limited to simple "value -> string" mappings, these enumerations map "[ start_value ... end_value ] -> string", which map inclusive ranges of values to strings. An enumeration from the C language can be represented in this format by having the same start_value and end_value for each element, which is in fact a range of size 1. This single-value range is supported without repeating the start and end values with the value = string declaration.enum name : integer_type {somestring = start_value1 ... end_value1,"other string" = start_value2 ... end_value2,yet_another_string, /* will be assigned to end_value2 + 1 */"some other string" = value,... };If the values are omitted, the enumeration starts at 0 and increment of 1 for each entry:enum name : unsigned int {ZERO,ONE,TWO,TEN = 10,ELEVEN, };Overlapping ranges within a single enumeration are implementation defined.A nameless enumeration can be declared as a field type or as part of a typedef:enum : integer_type {... }Enumerations omitting the container type ": integer_type" use the "int" type (for compatibility with C99). The "int" type must be previously declared. E.g.:typealias integer { size = 32; align = 32; signed = true } := int;enum {... }4.2 Compound typesCompound are aggregation of type declarations. Compound types include structures, variant, arrays, sequences, and strings.4.2.1 StructuresStructures are aligned on the largest alignment required by basic types contained within the structure. (This follows the ISO/C standard for structures)TSDL meta-data representation of a named structure:struct name {field_type field_name;field_type field_name;... }; Example:struct example {integer { /* Nameless type */size = 16;signed = true;align = 16;} first_field_name;uint64_t second_field_name; /* Named type declared in the meta-data */ };The fields are placed in a sequence next to each other. They each possess a field name, which is a unique identifier within the structure. The identifier is not allowed to use any reserved keyword (see Section C.1.2). Replacing reserved keywords with underscore-prefixed field names is recommended. Fields starting with an underscore should have their leading underscore removed by the CTF trace readers.A nameless structure can be declared as a field type or as part of a typedef:struct {... }Alignment for a structure compound type can be forced to a minimum value by adding an "align" specifier after the declaration of a structure body. This attribute is read as: align(value). The value is specified in bits. The structure will be aligned on the maximum value between this attribute and the alignment required by the basic types contained within the structure. e.g.struct {... } align(32)4.2.2 Variants (Discriminated/Tagged Unions)A CTF variant is a selection between different types. A CTF variant must always be defined within the scope of a structure or within fields contained within a structure (defined recursively). A "tag" enumeration field must appear in either the same static scope, prior to the variant field (in field declaration order), in an upper static scope , or in an upper dynamic scope (see Section 7.3.2). The type selection is indicated by the mapping from the enumeration value to the string used as variant type selector. The field to use as tag is specified by the "tag_field", specified between "< >" after the "variant" keyword for unnamed variants, and after "variant name" for named variants.The alignment of the variant is the alignment of the type as selected by the tag value for the specific instance of the variant. The alignment of the type containing the variant is independent of the variant alignment. The size of the variant is the size as selected by the tag value for the specific instance of the variant.Each variant type selector possess a field name, which is a unique identifier within the variant. The identifier is not allowed to use any reserved keyword (see Section C.1.2). Replacing reserved keywords with underscore-prefixed field names is recommended. Fields starting with an underscore should have their leading underscore removed by the CTF trace readers.A named variant declaration followed by its definition within a structure declaration:variant name {field_type sel1;field_type sel2;field_type sel3;... };struct {enum : integer_type { sel1, sel2, sel3, ... } tag_field;...variant name <tag_field> v; }An unnamed variant definition within a structure is expressed by the following TSDL meta-data:struct {enum : integer_type { sel1, sel2, sel3, ... } tag_field;...variant <tag_field> {field_type sel1;field_type sel2;field_type sel3;...} v; }Example of a named variant within a sequence that refers to a single tag field:variant example {uint32_t a;uint64_t b;short c; };struct {enum : uint2_t { a, b, c } choice;unsigned int seqlen;variant example <choice> v[seqlen]; }Example of an unnamed variant:struct {enum : uint2_t { a, b, c, d } choice;/* Unrelated fields can be added between the variant and its tag */int32_t somevalue;variant <choice> {uint32_t a;uint64_t b;short c;struct {unsigned int field1;uint64_t field2;} d;} s; }Example of an unnamed variant within an array:struct {enum : uint2_t { a, b, c } choice;variant <choice> {uint32_t a;uint64_t b;short c;} v[10]; }Example of a variant type definition within a structure, where the defined type is then declared within an array of structures. This variant refers to a tag located in an upper static scope. This example clearly shows that a variant type definition referring to the tag "x" uses the closest preceding field from the static scope of the type definition.struct {enum : uint2_t { a, b, c, d } x;typedef variant <x> { /** "x" refers to the preceding "x" enumeration in the* static scope of the type definition.*/uint32_t a;uint64_t b;short c;} example_variant;struct {enum : int { x, y, z } x; /* This enumeration is not used by "v". */example_variant v; /** "v" uses the "enum : uint2_t { a, b, c, d }"* tag.*/} a[10]; }4.2.3 ArraysArrays are fixed-length. Their length is declared in the type declaration within the meta-data. They contain an array of "inner type" elements, which can refer to any type not containing the type of the array being declared (no circular dependency). The length is the number of elements in an array.TSDL meta-data representation of a named array:typedef elem_type name[length];A nameless array can be declared as a field type within a structure, e.g.:uint8_t field_name[10];Arrays are always aligned on their element alignment requirement.4.2.4 SequencesSequences are dynamically-sized arrays. They refer to a a "length" unsigned integer field, which must appear in either the same static scope, prior to the sequence field (in field declaration order), in an upper static scope, or in an upper dynamic scope (see Section 7.3.2). This length field represents the number of elements in the sequence. The sequence per se is an array of "inner type" elements.TSDL meta-data representation for a sequence type definition:struct {unsigned int length_field;typedef elem_type typename[length_field];typename seq_field_name; }A sequence can also be declared as a field type, e.g.:struct {unsigned int length_field;long seq_field_name[length_field]; }Multiple sequences can refer to the same length field, and these length fields can be in a different upper dynamic scope:e.g., assuming the stream.event.header defines:stream {...id = 1;event.header := struct {uint16_t seq_len;}; };event {...stream_id = 1;fields := struct {long seq_a[stream.event.header.seq_len];char seq_b[stream.event.header.seq_len];}; };The sequence elements follow the "array" specifications.4.2.5 StringsStrings are an array of bytes of variable size and are terminated by a '\0' "NULL" character. Their encoding is described in the TSDL meta-data. In absence of encoding attribute information, the default encoding is UTF-8.TSDL meta-data representation of a named string type:typealias string {encoding = UTF8 OR ASCII; } := name;A nameless string type can be declared as a field type:string field_name; /* Use default UTF8 encoding */Strings are always aligned on byte size.5. Event Packet HeaderThe event packet header consists of two parts: the "event packet header" is the same for all streams of a trace. The second part, the "event packet context", is described on a per-stream basis. Both are described in the TSDL meta-data. The packets are aligned on architecture-page-sized addresses.Event packet header (all fields are optional, specified by TSDL meta-data):- Magic number (CTF magic number: 0xC1FC1FC1) specifies that this is aCTF packet. This magic number is optional, but when present, it shouldcome at the very beginning of the packet. - Trace UUID, used to ensure the event packet match the meta-data used.(note: we cannot use a meta-data checksum in every cases instead of aUUID because meta-data can be appended to while tracing is active)This field is optional. - Stream ID, used as reference to stream description in meta-data.This field is optional if there is only one stream description in themeta-data, but becomes required if there are more than one stream inthe TSDL meta-data description.Event packet context (all fields are optional, specified by TSDL meta-data):- Event packet content size (in bits). - Event packet size (in bits, includes padding). - Event packet content checksum. Checksum excludes the event packetheader. - Per-stream event packet sequence count (to deal with UDP packet loss). Thenumber of significant sequence counter bits should also be present, sowrap-arounds are dealt with correctly. - Time-stamp at the beginning and time-stamp at the end of the event packet.Both timestamps are written in the packet header, but sampled respectivelywhile (or before) writing the first event and while (or after) writing thelast event in the packet. The inclusive range between these timestamps shouldinclude all event timestamps assigned to events contained within the packet. - Events discarded count- Snapshot of a per-stream free-running counter, counting the number ofevents discarded that were supposed to be written in the stream prior tothe first event in the event packet.* Note: producer-consumer buffer full condition should fill the currentevent packet with padding so we know exactly where events have beendiscarded. - Lossless compression scheme used for the event packet content. Applieddirectly to raw data. New types of compression can be added in followingversions of the format.0: no compression scheme1: bzip22: gzip3: xz - Cypher used for the event packet content. Applied after compression.0: no encryption1: AES - Checksum scheme used for the event packet content. Applied after encryption.0: no checksum1: md52: sha13: crc325.1 Event Packet Header DescriptionThe event packet header layout is indicated by the trace packet.header field. Here is a recommended structure type for the packet header with the fields typically expected (although these fields are each optional):struct event_packet_header {uint32_t magic;uint8_t uuid[16];uint32_t stream_id; };trace {...packet.header := struct event_packet_header; };If the magic number is not present, tools such as "file" will have no mean to discover the file type.If the uuid is not present, no validation that the meta-data actually corresponds to the stream is performed.If the stream_id packet header field is missing, the trace can only contain a single stream. Its "id" field can be left out, and its events don't need to declare a "stream_id" field.5.2 Event Packet Context DescriptionEvent packet context example. These are declared within the stream declaration in the meta-data. All these fields are optional. If the packet size field is missing, the whole stream only contains a single packet. If the content size field is missing, the packet is filled (no padding). The content and packet sizes include all headers.An example event packet context type:struct event_packet_context {uint64_t timestamp_begin;uint64_t timestamp_end;uint32_t checksum;uint32_t stream_packet_count;uint32_t events_discarded;uint32_t cpu_id;uint32_t/uint16_t content_size;uint32_t/uint16_t packet_size;uint8_t compression_scheme;uint8_t encryption_scheme;uint8_t checksum_scheme; };6. Event StructureThe overall structure of an event is:1 - Stream Packet Context (as specified by the stream meta-data)2 - Event Header (as specified by the stream meta-data)3 - Stream Event Context (as specified by the stream meta-data)4 - Event Context (as specified by the event meta-data)5 - Event Payload (as specified by the event meta-data)This structure defines an implicit dynamic scoping, where variants located in inner structures (those with a higher number in the listing above) can refer to the fields of outer structures (with lower number in the listing above). See Section 7.3 TSDL Scopes for more detail.6.1 Event HeaderEvent headers can be described within the meta-data. We hereby propose, as an example, two types of events headers. Type 1 accommodates streams with less than 31 event IDs. Type 2 accommodates streams with 31 or more event IDs.One major factor can vary between streams: the number of event IDs assigned to a stream. Luckily, this information tends to stay relatively constant (modulo event registration while trace is being recorded), so we can specify different representations for streams containing few event IDs and streams containing many event IDs, so we end up representing the event ID and time-stamp as densely as possible in each case.The header is extended in the rare occasions where the information cannot be represented in the ranges available in the standard event header. They are also used in the rare occasions where the data required for a field could not be collected: the flag corresponding to the missing field within the missing_fields array is then set to 1.Types uintX_t represent an X-bit unsigned integer, as declared with either:typealias integer { size = X; align = X; signed = false } := uintX_t;ortypealias integer { size = X; align = 1; signed = false } := uintX_t;6.1.1 Type 1 - Few event IDs- Aligned on 32-bit (or 8-bit if byte-packed, depending on the architecturepreference).- Native architecture byte ordering.- For "compact" selection- Fixed size: 32 bits.- For "extended" selection- Size depends on the architecture and variant alignment.struct event_header_1 {/** id: range: 0 - 30.* id 31 is reserved to indicate an extended header.*/enum : uint5_t { compact = 0 ... 30, extended = 31 } id;variant <id> {struct {uint27_t timestamp;} compact;struct {uint32_t id; /* 32-bit event IDs */uint64_t timestamp; /* 64-bit timestamps */} extended;} v; } align(32); /* or align(8) */6.1.2 Type 2 - Many event IDs- Aligned on 16-bit (or 8-bit if byte-packed, depending on the architecturepreference).- Native architecture byte ordering.- For "compact" selection- Size depends on the architecture and variant alignment.- For "extended" selection- Size depends on the architecture and variant alignment.struct event_header_2 {/** id: range: 0 - 65534.* id 65535 is reserved to indicate an extended header.*/enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;variant <id> {struct {uint32_t timestamp;} compact;struct {uint32_t id; /* 32-bit event IDs */uint64_t timestamp; /* 64-bit timestamps */ } extended;} v; } align(16); /* or align(8) */6.2 Event ContextThe event context contains information relative to the current event. The choice and meaning of this information is specified by the TSDL stream and event meta-data descriptions. The stream context is applied to all events within the stream. The stream context structure follows the event header. The event context is applied to specific events. Its structure follows the stream context structure.An example of stream-level event context is to save the event payload size with each event, or to save the current PID with each event. These are declared within the stream declaration within the meta-data:stream {...event.context := struct {uint pid;uint16_t payload_size;};};An example of event-specific event context is to declare a bitmap of missing fields, only appended after the stream event context if the extended event header is selected. NR_FIELDS is the number of fields within the event (a numeric value).event {context = struct {variant <id> {struct { } compact;struct {uint1_t missing_fields[NR_FIELDS]; /* missing event fields bitmap */} extended;} v;};...}6.3 Event PayloadAn event payload contains fields specific to a given event type. The fields belonging to an event type are described in the event-specific meta-data within a structure type.6.3.1 PaddingNo padding at the end of the event payload. This differs from the ISO/C standard for structures, but follows the CTF standard for structures. In a trace, even though it makes sense to align the beginning of a structure, it really makes no sense to add padding at the end of the structure, because structures are usually not followed by a structure of the same type.This trick can be done by adding a zero-length "end" field at the end of the C structures, and by using the offset of this field rather than using sizeof() when calculating the size of a structure (see Appendix "A. Helper macros").6.3.2 AlignmentThe event payload is aligned on the largest alignment required by types contained within the payload. (This follows the ISO/C standard for structures)7. Trace Stream Description Language (TSDL)The Trace Stream Description Language (TSDL) allows expression of the binary trace streams layout in a C99-like Domain Specific Language (DSL).7.1 Meta-dataThe trace stream layout description is located in the trace meta-data. The meta-data is itself located in a stream identified by its name: "metadata".The meta-data description can be expressed in two different formats: text-only and packet-based. The text-only description facilitates generation of meta-data and provides a convenient way to enter the meta-data information by hand. The packet-based meta-data provides the CTF stream packet facilities (checksumming, compression, encryption, network-readiness) for meta-data stream generated and transported by a tracer.The text-only meta-data file is a plain-text TSDL description. This file must begin with the following characters to identify the file as a CTF TSDL text-based metadata file (without the double-quotes) :"/* CTF"It must be followed by a space, and the version of the specification followed by the CTF trace, e.g.:" 1.8"These characters allow automated discovery of file type and CTF specification version. They are interpreted as a the beginning of a comment by the TSDL metadata parser. The comment can be continued to contain extra commented characters before it is closed.The packet-based meta-data is made of "meta-data packets", which each start with a meta-data packet header. The packet-based meta-data description is detected by reading the magic number "0x75D11D57" at the beginning of the file. This magic number is also used to detect the endianness of the architecture by trying to read the CTF magic number and its counterpart in reversed endianness. The events within the meta-data stream have no event header nor event context. Each event only contains a "sequence" payload, which is a sequence of bits using the "trace.packet.header.content_size" field as a placeholder for its length (the packet header size should be substracted). The formatting of this sequence of bits is a plain-text representation of the TSDL description. Each meta-data packet start with a special packet header, specific to the meta-data stream, which contains, exactly:struct metadata_packet_header {uint32_t magic; /* 0x75D11D57 */uint8_t uuid[16]; /* Unique Universal Identifier */uint32_t checksum; /* 0 if unused */uint32_t content_size; /* in bits */uint32_t packet_size; /* in bits */uint8_t compression_scheme; /* 0 if unused */uint8_t encryption_scheme; /* 0 if unused */uint8_t checksum_scheme; /* 0 if unused */uint8_t major; /* CTF spec version major number */uint8_t minor; /* CTF spec version minor number */ };The packet-based meta-data can be converted to a text-only meta-data by concatenating all the strings in contains.In the textual representation of the meta-data, the text contained within "/*" and "*/", as well as within "//" and end of line, are treated as comments. Boolean values can be represented as true, TRUE, or 1 for true, and false, FALSE, or 0 for false. Within the string-based meta-data description, the trace UUID is represented as a string of hexadecimal digits and dashes "-". In the event packet header, the trace UUID is represented as an array of bytes.7.2 Declaration vs DefinitionA declaration associates a layout to a type, without specifying where this type is located in the event structure hierarchy (see Section 6). This therefore includes typedef, typealias, as well as all type specifiers. In certain circumstances (typedef, structure field and variant field), a declaration is followed by a declarator, which specify the newly defined type name (for typedef), or the field name (for declarations located within structure and variants). Array and sequence, declared with square brackets ("[" "]"), are part of the declarator, similarly to C99. The enumeration base type is specified by ": enum_base", which is part of the type specifier. The variant tag name, specified between "<" ">", is also part of the type specifier.A definition associates a type to a location in the event structure hierarchy (see Section 6). This association is denoted by ":=", as shown in Section 7.3.7.3 TSDL ScopesTSDL uses three different types of scoping: a lexical scope is used for declarations and type definitions, and static and dynamic scopes are used for variants references to tag fields (with relative and absolute path lookups) and for sequence references to length fields.7.3.1 Lexical ScopeEach of "trace", "env", "stream", "event", "struct" and "variant" have their own nestable declaration scope, within which types can be declared using "typedef" and "typealias". A root declaration scope also contains all declarations located outside of any of the aforementioned declarations. An inner declaration scope can refer to type declared within its container lexical scope prior to the inner declaration scope. Redefinition of a typedef or typealias is not valid, although hiding an upper scope typedef or typealias is allowed within a sub-scope.7.3.2 Static and Dynamic ScopesA local static scope consists in the scope generated by the declaration of fields within a compound type. A static scope is a local static scope augmented with the nested sub-static-scopes it contains.A dynamic scope consists in the static scope augmented with the implicit event structure definition hierarchy presented at Section 6.Multiple declarations of the same field name within a local static scope is not valid. It is however valid to re-use the same field name in different local scopes.Nested static and dynamic scopes form lookup paths. These are used for variant tag and sequence length references. They are used at the variant and sequence definition site to look up the location of the tag field associated with a variant, and to lookup up the location of the length field associated with a sequence.Variants and sequences can refer to a tag field either using a relative path or an absolute path. The relative path is relative to the scope in which the variant or sequence performing the lookup is located. Relative paths are only allowed to lookup within the same static scope, which includes its nested static scopes. Lookups targeting parent static scopes need to be performed with an absolute path.Absolute path lookups use the full path including the dynamic scope followed by a "." and then the static scope. Therefore, variants (or sequences) in lower levels in the dynamic scope (e.g. event context) can refer to a tag (or length) field located in upper levels (e.g. in the event header) by specifying, in this case, the associated tag with <stream.event.header.field_name>. This allows, for instance, the event context to define a variant referring to the "id" field of the event header as selector.The dynamic scope prefixes are thus:- Trace Environment: <env. >,- Trace Packet Header: <trace.packet.header. >,- Stream Packet Context: <stream.packet.context. >,- Event Header: <stream.event.header. >,- Stream Event Context: <stream.event.context. >,- Event Context: <event.context. >,- Event Payload: <event.fields. >.The target dynamic scope must be specified explicitly when referring to a field outside of the static scope (absolute scope reference). No conflict can occur between relative and dynamic paths, because the keywords "trace", "stream", and "event" are reserved, and thus not permitted as field names. It is recommended that field names clashing with CTF and C99 reserved keywords use an underscore prefix to eliminate the risk of generating a description containing an invalid field name. Consequently, fields starting with an underscore should have their leading underscore removed by the CTF trace readers.The information available in the dynamic scopes can be thought of as the current tracing context. At trace production, information about the current context is saved into the specified scope field levels. At trace consumption, for each event, the current trace context is therefore readable by accessing the upper dynamic scopes.7.4 TSDL ExamplesThe grammar representing the TSDL meta-data is presented in Appendix C. TSDL Grammar. This section presents a rather lighter reading that consists in examples of TSDL meta-data, with template values.The stream "id" can be left out if there is only one stream in the trace. The event "id" field can be left out if there is only one event in a stream.trace {major = value; /* CTF spec version major number */minor = value; /* CTF spec version minor number */uuid = "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"; /* Trace UUID */byte_order = be OR le; /* Endianness (required) */packet.header := struct {uint32_t magic;uint8_t uuid[16];uint32_t stream_id;}; };/** The "env" (environment) scope contains assignment expressions. The* field names and content are implementation-defined.*/ env {pid = value; /* example */proc_name = "name"; /* example */... };stream {id = stream_id;/* Type 1 - Few event IDs; Type 2 - Many event IDs. See section 6.1. */event.header := event_header_1 OR event_header_2;event.context := struct {...};packet.context := struct {...}; };event {name = "event_name";id = value; /* Numeric identifier within the stream */stream_id = stream_id;loglevel = value;context := struct {...};fields := struct {...}; };/* More detail on types in section 4. Types *//** Named types:** Type declarations behave similarly to the C standard.*/typedef aliased_type_specifiers new_type_declarators;/* e.g.: typedef struct example new_type_name[10]; *//** typealias** The "typealias" declaration can be used to give a name (including* pointer declarator specifier) to a type. It should also be used to* map basic C types (float, int, unsigned long, ...) to a CTF type.* Typealias is a superset of "typedef": it also allows assignment of a* simple variable identifier to a type.*/typealias type_class {... } := type_specifiers type_declarator;/** e.g.: * typealias integer {* size = 32;* align = 32;* signed = false;* } := struct page *;** typealias integer {* size = 32;* align = 32;* signed = true;* } := int;*/struct name {... };variant name {... };enum name : integer_type {... };/** Unnamed types, contained within compound type fields, typedef or typealias.*/struct {... }struct {... } align(value)variant {... }enum : integer_type {... }typedef type new_type[length];struct {type field_name[length]; }typedef type new_type[length_type];struct {type field_name[length_type]; }integer {... }floating_point {... }struct {integer_type field_name:size; /* GNU/C bitfield */ }struct {string field_name; }8. ClocksClock metadata allows to describe the clock topology of the system, as well as to detail each clock parameter. In absence of clock description, it is assumed that all fields named "timestamp" use the same clock source, which increments once per nanosecond.Describing a clock and how it is used by streams is threefold: first, the clock and clock topology should be described in a "clock" description block, e.g.:clock {name = cycle_counter_sync;uuid = "62189bee-96dc-11e0-91a8-cfa3d89f3923";description = "Cycle counter synchronized across CPUs";freq = 1000000000; /* frequency, in Hz *//* precision in seconds is: 1000 * (1/freq) */precision = 1000;/** clock value offset from Epoch is:* offset_s + (offset * (1/freq))*/offset_s = 1326476837;offset = 897235420;absolute = FALSE; };The mandatory "name" field specifies the name of the clock identifier, which can later be used as a reference. The optional field "uuid" is the unique identifier of the clock. It can be used to correlate different traces that use the same clock. An optional textual description string can be added with the "description" field. The "freq" field is the initial frequency of the clock, in Hz. If the "freq" field is not present, the frequency is assumed to be 1000000000 (providing clock increment of 1 ns). The optional "precision" field details the uncertainty on the clock measurements, in (1/freq) units. The "offset_s" and "offset" fields indicate the offset from POSIX.1 Epoch, 1970-01-01 00:00:00 +0000 (UTC), to the zero of value of the clock. The "offset_s" field is in seconds. The "offset" field is in (1/freq) units. If any of the "offset_s" or "offset" field is not present, it is assigned the 0 value. The field "absolute" is TRUE if the clock is a global reference across different clock uuid (e.g. NTP time). Otherwise, "absolute" is FALSE, and the clock can be considered as synchronized only with other clocks that have the same uuid.Secondly, a reference to this clock should be added within an integer type:typealias integer {size = 64; align = 1; signed = false;map = clock.cycle_counter_sync.value; } := uint64_ccnt_t;Thirdly, stream declarations can reference the clock they use as a time-stamp source:struct packet_context {uint64_ccnt_t ccnt_begin;uint64_ccnt_t ccnt_end;/* ... */ };stream {/* ... */event.header := struct {uint64_ccnt_t timestamp;/* ... */}packet.context := struct packet_context; };For a N-bit integer type referring to a clock, if the integer overflows compared to the N low order bits of the clock prior value, then it is assumed that one, and only one, overflow occurred. It is therefore important that events encoding time on a small number of bits happen frequently enough to detect when more than one N-bit overflow occurs.In a packet context, clock field names ending with "_begin" and "_end" have a special meaning: this refers to the time-stamps at, respectively, the beginning and the end of each packet.A. Helper macrosThe two following macros keep track of the size of a GNU/C structure without padding at the end by placing HEADER_END as the last field. A one byte end field is used for C90 compatibility (C99 flexible arrays could be used here). Note that this does not affect the effective structure size, which should always be calculated with the header_sizeof() helper.#define HEADER_END char end_field #define header_sizeof(type) offsetof(typeof(type), end_field)B. Stream Header RationaleAn event stream is divided in contiguous event packets of variable size. These subdivisions allow the trace analyzer to perform a fast binary search by time within the stream (typically requiring to index only the event packet headers) without reading the whole stream. These subdivisions have a variable size to eliminate the need to transfer the event packet padding when partially filled event packets must be sent when streaming a trace for live viewing/analysis. An event packet can contain a certain amount of padding at the end. Dividing streams into event packets is also useful for network streaming over UDP and flight recorder mode tracing (a whole event packet can be swapped out of the buffer atomically for reading).The stream header is repeated at the beginning of each event packet to allow flexibility in terms of:- streaming support,- allowing arbitrary buffers to be discarded without making the traceunreadable,- allow UDP packet loss handling by either dealing with missing event packetor asking for re-transmission.- transparently support flight recorder mode,- transparently support crash dump.C. TSDL Grammar/** Common Trace Format (CTF) Trace Stream Description Language (TSDL) Grammar.** Inspired from the C99 grammar:* http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf (Annex A)* and c++1x grammar (draft)* http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3291.pdf (Annex A)** Specialized for CTF needs by including only constant and declarations from* C99 (excluding function declarations), and by adding support for variants,* sequences and CTF-specific specifiers. Enumeration container types* semantic is inspired from c++1x enum-base.*/1) Lexical grammar1.1) Lexical elementstoken:keywordidentifierconstantstring-literalpunctuator1.2) Keywordskeyword: is one ofalign const char clock double enum env event floating_point float integer int long short signed stream string struct trace typealias typedef unsigned variant void _Bool _Complex _Imaginary1.3) Identifiersidentifier:identifier-nondigitidentifier identifier-nondigitidentifier digitidentifier-nondigit:nondigituniversal-character-nameany other implementation-defined charactersnondigit:_[a-zA-Z] /* regular expression */digit:[0-9] /* regular expression */1.4) Universal character namesuniversal-character-name:\u hex-quad\U hex-quad hex-quadhex-quad:hexadecimal-digit hexadecimal-digit hexadecimal-digit hexadecimal-digit1.5) Constantsconstant:integer-constantenumeration-constantcharacter-constantinteger-constant:decimal-constant integer-suffix-optoctal-constant integer-suffix-opthexadecimal-constant integer-suffix-optdecimal-constant:nonzero-digitdecimal-constant digitoctal-constant:0octal-constant octal-digithexadecimal-constant:hexadecimal-prefix hexadecimal-digithexadecimal-constant hexadecimal-digithexadecimal-prefix:0x0Xnonzero-digit:[1-9]integer-suffix:unsigned-suffix long-suffix-optunsigned-suffix long-long-suffixlong-suffix unsigned-suffix-optlong-long-suffix unsigned-suffix-optunsigned-suffix:uUlong-suffix:lLlong-long-suffix:llLLenumeration-constant:identifierstring-literalcharacter-constant:' c-char-sequence 'L' c-char-sequence 'c-char-sequence:c-charc-char-sequence c-charc-char:any member of source charset except single-quote ('), backslash(\), or new-line character.escape-sequenceescape-sequence:simple-escape-sequenceoctal-escape-sequencehexadecimal-escape-sequenceuniversal-character-namesimple-escape-sequence: one of\' \" \? \\ \a \b \f \n \r \t \voctal-escape-sequence:\ octal-digit\ octal-digit octal-digit\ octal-digit octal-digit octal-digithexadecimal-escape-sequence:\x hexadecimal-digithexadecimal-escape-sequence hexadecimal-digit1.6) String literalsstring-literal:" s-char-sequence-opt "L" s-char-sequence-opt "s-char-sequence:s-chars-char-sequence s-chars-char:any member of source charset except double-quote ("), backslash(\), or new-line character.escape-sequence1.7) Punctuatorspunctuator: one of[ ] ( ) { } . -> * + - < > : ; ... = ,2) Phrase structure grammarprimary-expression:identifierconstantstring-literal( unary-expression )postfix-expression:primary-expressionpostfix-expression [ unary-expression ]postfix-expression . identifierpostfix-expressoin -> identifierunary-expression:postfix-expressionunary-operator postfix-expressionunary-operator: one of+ -assignment-operator:=type-assignment-operator::=constant-expression-range:unary-expression ... unary-expression2.2) Declarations:declaration:declaration-specifiers declarator-list-opt ;ctf-specifier ;declaration-specifiers:storage-class-specifier declaration-specifiers-opttype-specifier declaration-specifiers-opttype-qualifier declaration-specifiers-optdeclarator-list:declaratordeclarator-list , declaratorabstract-declarator-list:abstract-declaratorabstract-declarator-list , abstract-declaratorstorage-class-specifier:typedeftype-specifier:voidcharshortintlongfloatdoublesignedunsigned_Bool_Complex_Imaginarystruct-specifiervariant-specifierenum-specifiertypedef-namectf-type-specifieralign-attribute:align ( unary-expression )struct-specifier:struct identifier-opt { struct-or-variant-declaration-list-opt } align-attribute-optstruct identifier align-attribute-optstruct-or-variant-declaration-list:struct-or-variant-declarationstruct-or-variant-declaration-list struct-or-variant-declarationstruct-or-variant-declaration:specifier-qualifier-list struct-or-variant-declarator-list ;declaration-specifiers-opt storage-class-specifier declaration-specifiers-opt declarator-list ;typealias declaration-specifiers abstract-declarator-list type-assignment-operator declaration-specifiers abstract-declarator-list ;typealias declaration-specifiers abstract-declarator-list type-assignment-operator declarator-list ;specifier-qualifier-list:type-specifier specifier-qualifier-list-opttype-qualifier specifier-qualifier-list-optstruct-or-variant-declarator-list:struct-or-variant-declaratorstruct-or-variant-declarator-list , struct-or-variant-declaratorstruct-or-variant-declarator:declaratordeclarator-opt : unary-expressionvariant-specifier:variant identifier-opt variant-tag-opt { struct-or-variant-declaration-list }variant identifier variant-tagvariant-tag:< unary-expression >enum-specifier:enum identifier-opt { enumerator-list }enum identifier-opt { enumerator-list , }enum identifierenum identifier-opt : declaration-specifiers { enumerator-list }enum identifier-opt : declaration-specifiers { enumerator-list , }enumerator-list:enumeratorenumerator-list , enumeratorenumerator:enumeration-constantenumeration-constant assignment-operator unary-expressionenumeration-constant assignment-operator constant-expression-rangetype-qualifier:constdeclarator:pointer-opt direct-declaratordirect-declarator:identifier( declarator )direct-declarator [ unary-expression ]abstract-declarator:pointer-opt direct-abstract-declaratordirect-abstract-declarator:identifier-opt( abstract-declarator )direct-abstract-declarator [ unary-expression ]direct-abstract-declarator [ ]pointer:* type-qualifier-list-opt* type-qualifier-list-opt pointertype-qualifier-list:type-qualifiertype-qualifier-list type-qualifiertypedef-name:identifier2.3) CTF-specific declarationsctf-specifier:clock { ctf-assignment-expression-list-opt }event { ctf-assignment-expression-list-opt }stream { ctf-assignment-expression-list-opt }env { ctf-assignment-expression-list-opt }trace { ctf-assignment-expression-list-opt }typealias declaration-specifiers abstract-declarator-list type-assignment-operator declaration-specifiers abstract-declarator-listtypealias declaration-specifiers abstract-declarator-list type-assignment-operator declarator-listctf-type-specifier:floating_point { ctf-assignment-expression-list-opt }integer { ctf-assignment-expression-list-opt }string { ctf-assignment-expression-list-opt }stringctf-assignment-expression-list:ctf-assignment-expression ;ctf-assignment-expression-list ctf-assignment-expression ;ctf-assignment-expression:unary-expression assignment-operator unary-expressionunary-expression type-assignment-operator type-specifierdeclaration-specifiers-opt storage-class-specifier declaration-specifiers-opt declarator-listtypealias declaration-specifiers abstract-declarator-list type-assignment-operator declaration-specifiers abstract-declarator-listtypealias declaration-specifiers abstract-declarator-list type-assignment-operator declarator-list

轉(zhuǎn)載于:https://my.oschina.net/u/263896/blog/53175

總結(jié)

以上是生活随笔為你收集整理的Common Trace Format的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。

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