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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

用YACC/LEX 设计计算机语言

發(fā)布時間:2025/6/15 编程问答 18 豆豆
生活随笔 收集整理的這篇文章主要介紹了 用YACC/LEX 设计计算机语言 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

用YACC/LEX 設(shè)計計算機(jī)語言

前言:

YACC?(Yet Another Compiler Compiler) 是1974年在?Unix?下設(shè)計出來的一個優(yōu)秀的計算機(jī)語法分析工具。LEX?是相應(yīng)的詞法分析工具。在?Linux?下,也有?YACC/LEX?的實現(xiàn)版本及相關(guān)資料。通過這套工具,可以在只編寫出計算機(jī)語言的語法后,就可以生成自底向上的語法分析程序(詞法分析類似),可以大大加快計算機(jī)語言的實現(xiàn)速度。

Turbo Pascal/Free Pascal/Delphi?程序員請注意:?Pascal?語言下的?YACC/LEX?實現(xiàn)可以在?http://www.musikwissenschaft.uni-mainz.de/~ag/tply/?地址下找到詳細(xì)信息。

有關(guān)YACC?和?LEX?的語法我們附在后面。這里,我們主要討論一個具體的語言(如?Basic),如何用?YACC/LEX?編程實現(xiàn)。 代碼存放在下載欄目中(c語言,用GCC?編譯通過),可以任意使用,其它的源代碼和例子也可以在那里找到。

有關(guān)問題:

1、??首要問題:編譯還是解釋。如果選擇編譯,那么生成了目標(biāo)機(jī)器上的可執(zhí)行代碼。如果選擇解釋,那么在解釋過程中(或完成后)執(zhí)行中間代碼。Java和.NET?已經(jīng)混淆了這兩方面的區(qū)分。

2、??數(shù)據(jù)屬性問題:一個普通的編譯/解釋器必須隨時跟蹤變量、表達(dá)式的數(shù)據(jù)類型、作用范圍等問題。最頭疼的就是數(shù)據(jù)類型了。因為編譯/解釋器必須自己處理不同數(shù)據(jù)類型的轉(zhuǎn)換工作,如果有六種數(shù)據(jù)類型如?Char、Byte、SmallInt、Word、LongInt、Dword,就必須處理32種計算方法。所以現(xiàn)在新的的語言如(VBScript?等)都采用了?Variant?數(shù)據(jù)類型,這樣在計算過程中,不需要考慮過多的數(shù)據(jù)類型轉(zhuǎn)換問題,在執(zhí)行時才做類型檢查。因為我們當(dāng)時還不知道GCC的?Lib?中支持?Variant?數(shù)據(jù)類型,因此自己實現(xiàn)了Variant數(shù)據(jù)類型。

// Variant?數(shù)據(jù)類型
#define NOTYPE 0
#define CHARTYPE 1
#define BYTETYPE 2
#define INTEGERTYPE 3
#define DWORDTYPE 4
#define REALTYPE 5
#define STRINGTYPE 6
#define INFOTYPE 7
#define TMPSTRINGSIZE 128

/* Variant Structure */
typedef struct {
??????? int ValueType;
??????? union {
??????????????? Char Character;
??????????????? Byte BYTE;
??????????????? int Integer;
??????????????? DWord DWORD;
??????????????? double Real;
??????????????? PTString pString;
??????????????? void *pInfo;
??????? } Value;
} TVariant, *PVariant;

// Variant?過程
PVariant VarNew(void);
void VarFree(PVariant p);
int VarGetType(PVariant p);
void VarSetType(PVariant p,int tp);
void VarAssign(PVariant dest,PVariant src);
Char VarGetChar(PVariant p);
Byte VarGetByte(PVariant p);
int VarGetInteger(PVariant p);
DWord VarGetDWord(PVariant p);
double VarGetReal(PVariant p);
Char *VarGetString(PVariant p);
void *VarGetInfo(PVariant p);
void VarSetChar(PVariant p,Char c);
void VarSetByte(PVariant p,Byte b);
void VarSetInteger(PVariant p,int n);
void VarSetDWord(PVariant p,DWord d);
void VarSetReal(PVariant p,double e);
void VarSetString(PVariant p,Char *s);
void VarSetInfo(PVariant p,void *q);
int VarTypeCast(PVariant p,int datatype);
int VarMakeEqual(PVariant a,PVariant b);
void VarStrSetLength(PVariant p,DWord len);
void VarStrCompress(PVariant p);
DWord VarStrlen(PVariant p);
void VarStrToUpper(PVariant p);
void VarStrToLower(PVariant p);
int? VarStrCompare(PVariant p,PVariant q);
int VarStrCompareCase(PVariant p,PVariant q);
void VarStrAssign(PVariant dest,PVariant src);
void VarStrCat(PVariant dest,PVariant src);
void VarStrDelete(PVariant p,DWord begin,DWord len);
void VarStrGetChar(PVariant p,DWord offset);
void VarStrSetChar(PVariant p,DWord offset,Char c);
DWord VarStrLocChar(PVariant p,DWord begin,Char c);
DWord VarStrSubStr(PVariant p,PVariant sub);

3、??符號表:符號表用來登記各種常量、變量、函數(shù)、過程、結(jié)構(gòu)的有關(guān)屬性,因為一些數(shù)據(jù)類型是其它數(shù)據(jù)類型的導(dǎo)出,所以這里采用二叉數(shù)存放、檢索信息。為了解決導(dǎo)出類型問題,此二叉數(shù)必須穿線。
typedef enum {
??????? eNoDefine,eConstDefine,eTypeDefine,eVarDefine,eValParamDefine,
??????? eVarParamDefine,eFieldDefine,
??????? eProgDefine,eFuncDefine,eProcDefine
} TDefineKey;
typedef enum {
??????? eDeclare,eForward,eStandard
} TRoutineKey;
typedef enum {
??????? eNoForm,eScalarForm,eEnumForm,eSubRangeForm,
??????? eArrayForm,eRecordForm
} TypeForm;
typedef struct {
??????? TDefineKey Key;
??????? union {
??????????????? PVariant pValue;?
??????????????? struct {
??????????????????????? TRoutineKey Key;
??????????????????????? int ParamCount;
??????????????????????? int TotalParamSize;
??????????????????????? int TotalLocalSize;
??????????????????????? struct tagTSymbolTable *Params;
??????????????????????? struct tagTSymbolTable *Locals;
??????????????????????? struct tagTSymbolTable *LocalSymtab;
??????????????????????? void *CodeSegment;
??????????????? } Routine;?
??????????????? struct {
??????????????????????? int Offset;
??????????????????????? struct tagTSymbolTable *RecordIDP;
??????????????? } Data;?
??????? }Info;
} TDefineStruct, *PDefineStruct;

typedef struct tagTypeStruct {
??????? TypeForm Form;
??????? int Size;
??????? struct tagTSymbolTable *TypeIDP;
??????? union {
??????????????? struct {
??????????????????????? struct TypeStruct *ConstIDP;
??????????????????????? int Max;
??????????????? } Enum;
??????????????? struct {
??????????????????????? struct tagTypeStruct *IndexType,*ElemType;
??????????????????????? int MinIndex,MaxIndex;
??????????????????????? int ElemCount;
??????????????? } Array;
??????????????? struct {
?????????????????????? struct tagTSymbolTable *FieldSymtab;
??????????????? } Record;
??????? } Info;
} TypeStruct, *PTypeStruct;

typedef struct tagTSymbolTable {
??????? char *Name;
??????? struct tagTSymbolTable *Left,*Right,*Next;? //?穿線二叉數(shù)
??????? char *Info;
??????? TDefineStruct Define;
??????? PTypeStruct TypeP;
??????? int Level;
??????? int LabelIndex;
} TSymbolTable, *PSymbolTable;

PSymbolTable NewSymtab(char *s);
void InitSymtabRoot(void);
extern TSymbolTable Root;
PSymbolTable SearchSymtab(char *s);
PSymbolTable EnterSymtab(char *s);
DWord GetVar(char *s);
void EnterVar(char *s,DWord index);

4、??虛擬計算機(jī):如果生成的代碼目標(biāo)平臺無法執(zhí)行或執(zhí)行有困難,可以考慮生成虛擬計算機(jī)的代碼,然后用自己的虛擬計算機(jī)執(zhí)行。我們這里的虛擬計算機(jī)采用了棧結(jié)構(gòu)方式。可以使?YACC?在分析過程中同步生成代碼。我們的虛擬機(jī)器代碼和JAVA很相似(JAVA在?SUN?中的實現(xiàn),起初肯定是YACC)。這臺虛擬計算機(jī)連Print?命令都認(rèn)識。

//?計算機(jī)的標(biāo)志寄存器和控制寄存器
typedef struct tagTFlags {
??????? Char EQ,NE,LE,LT,GE,GT;
??????? Char Debug,Trace,Step;
} TFlags;
//?只有四個寄存器:當(dāng)前代碼地址、堆棧頂部、Stack? Frame Top、標(biāo)志及控制。
typedef struct tagTCPU {
??????? DWord EIP;
??????? DWord ESP;
??????? DWord EBP;
??????? TFlags Flags;
} TCPU, *PCPU;

//?全局的?CPU?變量
extern TCPU CPU;
// CPU?的動作
void Reset(void);
void Start(void);
void DeCode(DWord d);
void SetFlags(double r);
void Print(PVariant p);
void EnterProc(DWord n);?
void LeaveProc(void);

void PushChar(Char c);
void PushByte(Byte b);
void PushInteger(int value);
void PushDWord(DWord d);
void PushReal(double r);
void PushString(char *s);
void PushVar(PVariant p);
PVariant PopVar(void);
PVariant GetTosVar(void);

// CPU?認(rèn)識的指令
#define C_PUSHCHAR 101
#define C_PUSHBYTE 102
#define C_PUSHINTEGER 103
#define C_PUSHDWORD 104
#define C_PUSHREAL 105
#define C_PUSHSTRING 106

#define C_PUSHVAR 110
#define C_POPVAR 120
#define C_POPCMP 121

#define C_RELOP 200
#define C_ADDOP 201
#define C_MULOP 202
#define C_SIGNOP 203

#define C_PRINT_LINE 300
#define C_PRINT_COMMA 301
#define C_PRINT_SEMICOLON 302
#define C_PRINT_EXPR 303

#define C_JMP 400
#define C_JEQ 401
#define C_JNE 402

5、??詞法分析:我們使用LEX來做詞法分析,查看LEX的代碼后發(fā)現(xiàn),它本身是用YACC生成的,很有意思。

extern YYSTYPE yylval;

int yywrap(void) {
??????? return 1;
}

void SetReal(double r) {
??????? yylval.Real=r;
??????? yylval.Info.Type=REALTYPE;
}
void SetInteger(int n) {
??????? yylval.Integer=n;
??????? yylval.Info.Type=INTEGERTYPE;
}
void SetDWord(DWord n) {
??????? yylval.UnsignedNumber=n;
??????? yylval.Info.Type=DWORDTYPE;
}
void SetString(char *s) {
??????? yylval.String=strdup(s);
??????? yylval.Info.Type=STRINGTYPE;
}

/*???????? Delete any character in yyrval, normally is
??????? doublequota in string, etc:
??????? "AAAAA""aaaaaaa" =>? AAAAA"aaaaaaa
*/
void DeleteChar(char c) {
char *s;
int i,j;
??????? s=yylval.String;
??????? i=strlen(s);
??????? i-=2;
??????? memmove(s,s+1,sizeof(Char)*i);
??????? s[i]=0;
??????? if(strlen(s)<2)
??????????????? return;
??????? for(i=0,j=0;*(s+j);i++,j++) {
??????????????? *(s+i)=*(s+j);
??????????????? if((*(s+j)==c)&&(*(s+j+1)==c))
??????????????????????? j++;
??????? }
??????? *(s+i)=0;
}
%}
SPACE???????? [ \r\n\t\f]
NQUOTE???????? [^\"\n]
Digit??????? [0-9]
DecDigit [1-9]
Zero??????? [0]
OctDigit [0-7]
HexPrev??????? [x|X]
HexDigit [0-7A-Fa-f]
Char??????? [ -~]
Letter??????? [A-Za-z_]
Id??????? [A-Za-z0-9_]

%%
"=="??????? { SetInteger(EQUAL);return EQUAL; }
"="??????? { SetInteger(ASSIGN);return ASSIGN; }
"<"??????? { SetInteger(LT);return LT; }
"<="??????? { SetInteger(LE);return LE; }
"<>"??????? { SetInteger(NE);return NE; }
">="??????? { SetInteger(GE);return GE; }
">"??????? { SetInteger(GT);return GT; }
"+"??????? { SetInteger(PLUS);return PLUS; }
"-"??????? { SetInteger(MINUS);return MINUS; }
"*"??????? { SetInteger(STAR);return STAR; }
"/"??????? { SetInteger(SLASH);return SLASH; }
"%"??????? { SetInteger(MOD);return MOD; }
"<<"??????? { SetInteger(SHL);return SHL; }
">>"??????? { SetInteger(SHR);return SHR; }
"&"??????? { SetInteger(BITAND);return BITAND; }
"|"??????? { SetInteger(BITOR);return BITOR; }
"!"??????? { SetInteger(BITNOT);return BITNOT; }
"("??????? { SetInteger(LPAREN);return LPAREN; }
")"??????? { SetInteger(RPAREN);return RPAREN; }
"["??????? { SetInteger(LBRACKET);return LBRACKET; }
"]"??????? { SetInteger(RBRACKET);return RBRACKET; }
"{"??????? { SetInteger(BIGLPAREN);return BIGLPAREN; }
"}"??????? { SetInteger(BIGRPAREN); return BIGRPAREN; }
","??????? { SetInteger(COMMA);return COMMA; }
";"??????? { SetInteger(SEMICOLON);return SEMICOLON; }
":"??????? { SetInteger(COLON);return COLON; }
"."??????? { SetInteger(DOT);return DOT;}

"and"??????? { SetInteger(AND);return AND; }
"not"??????? { SetInteger(NOT);return NOT; }
"or"??????? { SetInteger(OR);return OR; }

"dim"??????? { SetInteger(DIM);return DIM; }
"array" { SetInteger(ARRAY);return ARRAY; }
"as"??????? { SetInteger(AS);return AS; }
"byval" { SetInteger(BYVAL);return BYVAL;}
"case"? { SetInteger(CASE);return CASE; }
"const" { SetInteger(CONST);return CONST; }
"function" { SetInteger(FUNCTION);return FUNCTION;}
"goto"? { SetInteger(GOTO);return GOTO;}
"label"??????? { SetInteger(LABEL);return LABEL;}
"procedure" { SetInteger(PROCEDURE);return PROCEDURE;}
"program" { SetInteger(PROGRAM);return PROGRAM; }

"char"????????? { SetInteger(CHAR);return CHAR; }
"byte"??? { SetInteger(BYTE);return BYTE; }
"integer" { SetInteger(INTEGER);return INTEGER; }
"dword"?? { SetInteger(DWORD);return DWORD; }
"real"????????? { SetInteger(REAL);return REAL; }
"string"? { SetInteger(STRING);return STRING; }

"if"??????? { SetInteger(IF);return IF; }
"then"??????? { SetInteger(THEN);return THEN; }
"else"??????? { SetInteger(ELSE);return ELSE; }
"for"???????? { SetInteger(FOR);return FOR; }
"while" { SetInteger(WHILE);return WHILE; }
"to"??????? { SetInteger(TO);return TO; }
"downto" { SetInteger(DOWNTO);return DOWNTO; }
"do"??????? { SetInteger(DO);return DO; }
"of"??????? { SetInteger(OF);return OF; }
"record" { SetInteger(RECORD);return RECORD; }
"with"? { SetInteger(WITH);return WITH;}

("quit"|"q")? { SetInteger(EXIT);return EXIT; }
("exit"|"e")? { SetInteger(EXIT);return EXIT; }
("print"|"?") {SetInteger(PRINT);return PRINT;}
"run"??????? { SetInteger(RUN);return RUN;}

{Letter}{Id}*??????????????????????? {
??????????????????????????????????????? /* ID */
??????????????????????????????????????? SetString(yytext);
??????????????????????????????????????? return ID;
??????????????????????????????? }
\"({NQUOTE}|\"\")*\"???????????????? {
??????????????????????????????????????? /* short string */
??????????????????????????????????????? SetString(yytext);
??????????????????????????????????????? DeleteChar('\"');
??????????????????????????????????????? return SHORTSTRING;
??????????????????????????????? }
{DecDigit}{Digit}*??????????????????????? {
??????????????????????????????????????? /* dec */
??????????????????????????????????????? SetDWord(strtoul(yytext,NULL,10));
??????????????????????????????????????? return(UNSIGNED_NUMBER);
??????????????????????????????? }
{Zero}{OctDigit}*??????????????? {??????? /* oct */
??????????????????????????????????????? SetDWord(strtoul(yytext,NULL,8));
??????????????????????????????????????? return(UNSIGNED_NUMBER);
??????????????????????????????? }
{Zero}{HexPrev}{HexDigit}+??????? {??????? /* hex */
??????????????????????????????????????? SetDWord(strtoul(yytext,NULL,16));
??????????????????????????????????????? return(UNSIGNED_NUMBER);
??????????????????????????????? }
{Digit}+"."{Digit}+??????????????? {
??????????????????????????????????????? /* float */
??????????????????????????????????????? SetReal(atof(yytext));
??????????????????????????????????????? return(REALNUMBER);
??????????????????????????????? }
{Digit}+"."{Digit}+[Ee][+-]?{Digit}+??????? {
??????????????????????????????????????? /* sce */
??????????????????????????????????????? SetReal(atof(yytext));
??????????????????????????????????????? return(REALNUMBER);
??????????????????????????????? }
"//".*??????????????????????????????? ;??????? { /* line comments */ }
{SPACE}??????????????????????????????? ;
.??????????????????????????????? |
%%

6、??語法分析:使用YACC來生成語法數(shù)。這里同時就生成了代碼,沒有考慮代碼優(yōu)化的問題。

%{
%}
//?這是?Token?的數(shù)據(jù)結(jié)構(gòu)
%Union {
??????? int Integer;
??????? DWord UnsignedNumber;
??????? double Real;
??????? Char *String;
??????? struct {
??????????????? double noused;
??????????????? int Type;
??????? } Info;
}

%token UNSIGNED_NUMBER REALNUMBER SHORTSTRING ID
%token LT LE EQUAL NE GE GT ASSIGN
%token PLUS MINUS STAR SLASH MOD SHL SHR BITNOT BITAND BITOR
%token LPAREN RPAREN OR AND NOT COMMA SEMICOLON COLON DOT
%token LBRACKET RBRACKET BIGLPAREN BIGRPAREN
%token DIM AS ARRAY CASE FUNCTION PROCEDURE PROGRAM LABEL
%token CHAR BYTE INTEGER DWORD REAL STRING
%token RECORD CONST BYVAL
%token IF THEN ELSE FOR TO DOWNTO DO WHILE OF GOTO WITH
%token EXIT PRINT RUN

%type <Real> REALNUMBER
%type <UnsignedNumber> UNSIGNED_NUMBER
%type <String> SHORTSTRING ID
%type <Integer> LT LE EQUAL NE GE GT ASSIGN
%type <Integer> PLUS MINUS STAR SLASH MOD SHL SHR BITNOT BITAND BITOR
%type <Integer> LPAREN RPAREN OR AND NOT COMMA SEMICOLON COLON DOT
%type <Integer> LBRACKET RBRACKET BIGLPAREN BIGRPAREN
%type <Integer> DIM AS ARRAY CASE FUNCTION PROCEDURE PROGRAM LABEL
%type <Integer> CHAR BYTE INTEGER DWORD REAL STRING
%type <Integer> IF THEN ELSE FOR TO DOWNTO WHILE OF GOTO WITH
%type <Integer> RECORD CONST BYVAL
%type <Integer> EXIT PRINT RUN

%type <Integer> relop addop mulop signop datatype logicop
%type <Integer> variable variable_list label
%type <Integer> primary factor term expression simple_expression expr expr_list
%type <Integer> compilation_unit program program_header block
%type <Integer> decl_sect_list decl_sect proc_decl func_decl param_list
%type <Integer> proc_header func_header proc_block fp_list fp_sect_list fp_sect
%type <Integer> compound_statement stmt_list stmt normal_stmt
%type <Integer> dim_statement goto_statement for_statement if_statement
%type <Integer> while_statement with_statement assign_statement proccall_statement
%type <Integer> run_statement
%type <Integer> print_statement print_expr_list print_dot
%right THEN ELSE??????? //?個別需要右結(jié)合的?Token

%%

compilation_unit:program
;
program:program_header block
??????? ;
program_header: {}
??????? |PROGRAM
??????? |PROGRAM ID SEMICOLON
??????? ;
block??????? :decl_sect_list compound_statement
??????? ;
decl_sect_list: {}
??????? |decl_sect_list decl_sect
??????? ;
decl_sect:proc_decl
??????? |func_decl
??????? ;
proc_decl:proc_header proc_block
??????? ;
func_decl:func_header proc_block
??????? ;
proc_header:PROCEDURE ID fp_list
??????? ;
func_header:FUNCTION ID fp_list AS datatype
??????? ;
proc_block:block
??????? ;
fp_list:{}
??????? |LPAREN fp_sect_list RPAREN
??????? ;
fp_sect_list:fp_sect
??????? |fp_sect_list SEMICOLON fp_sect
??????? ;
fp_sect:variable_list AS datatype
??????? |BYVAL variable_list AS datatype
??????? ;
compound_statement:BIGLPAREN stmt_list BIGRPAREN
??????? ;
stmt_list:stmt
??????? |stmt_list SEMICOLON stmt
??????? ;
stmt:normal_stmt
??????? |label COLON normal_stmt
??????? ;
normal_stmt:{}??????? /* empty */
??????? |dim_statement
??????? |assign_statement
??????? |proccall_statement
??????? |goto_statement
??????? |compound_statement
??????? |if_statement
??????? |for_statement
??????? |while_statement
??????? |with_statement
??????? |print_statement
??????? |run_statement
??????? ;
run_statement:RUN {exec();}
??????? |EXIT {exit(0);}
print_statement:PRINT print_expr_list { WriteCode(C_PRINT_LINE); }
??????? ;
print_expr_list:expr { WriteCode(C_PRINT_EXPR);}
??????? |print_expr_list print_dot expr {WriteCode(C_PRINT_EXPR);}
??????? ;
print_dot:COMMA {WriteCode(C_PRINT_COMMA);}
??????? |COLON {WriteCode(C_PRINT_SEMICOLON);}
??????? ;
dim_statement:DIM variable AS datatype? {
PVariant p;
??????? p=GetData($2);
??????? VarSetType(p,$4);
}
??????? ;
assign_statement:variable ASSIGN expr {
??????? WriteCode2(C_POPVAR,$1);
}
??????? ;
proccall_statement:ID param_list {}
??????? ;
goto_statement:GOTO label {WriteCode2(C_JMP,$2);}
??????? ;
label??????? :ID {
DWord d;
??????? d=GetVar($1);
??????? if(d==OUTOFSTRINGINDEX) {
??????????????? d=GetIP();
??????????????? EnterVar($1,d);
??????? }
??????? $$=d;
}
??????? ;
if_statement:IF? expr {
??????? WriteCode(C_POPCMP);
??????? $2=GetIP();
??????? WriteCode2(C_JEQ,0);
} THEN stmt {
??????? SetCode($2+1,GetIP());
}
??????? ;
while_statement:WHILE {
??????? $1=GetIP();
} expr {
??????? WriteCode(C_POPCMP);
??????? $2=GetIP();
???????? WriteCode2(C_JEQ,0);
} DO stmt {
??????? WriteCode2(C_JMP,$1);
??????? SetCode($2+1,GetIP());
}
??????? ;
for_statement:FOR variable ASSIGN expr {
??????? $4=GetIP();
??????? WriteCode2(C_POPVAR,$2);
??????? WriteCode2(C_PUSHVAR,$2);
} TO expr {
??????? WriteCode2(C_RELOP,LE);
}
DO {
??????? WriteCode(C_POPCMP);
??????? $6=GetIP();
??????? WriteCode2(C_JEQ,0);
} stmt {
??????? WriteCode2(C_PUSHVAR,$2);
??????? WriteCode2(C_PUSHINTEGER,1);
??????? WriteCode2(C_ADDOP,PLUS);
??????? WriteCode2(C_JMP,$4);
??????? SetCode($6+1,GetIP());
}
??????? ;
with_statement:WITH variable DO stmt
??????? ;
param_list:??????? {}/* empty */
??????? |LPAREN expr_list RPAREN
??????? ;
expr_list:expr
??????? |expr_list COMMA expr
??????? ;
expr:simple_expression
??????? |NOT simple_expression
??????? |expr logicop simple_expression
??????? ;
simple_expression:expression
??????? |expression relop expression {WriteCode2(C_RELOP,$2);}
??????? ;
expression:term
??????? |expression addop term {WriteCode2(C_ADDOP,$2);}
??????? ;
term??????? :factor
??????? |term mulop factor? { WriteCode2(C_MULOP,$2);}
??????? |BITNOT factor
??????? ;
factor??????? :signop factor {WriteCode2(C_SIGNOP,$1);}
??????? |primary
??????? ;
primary??????? :variable {WriteCode2(C_PUSHVAR,$1);}
??????? |UNSIGNED_NUMBER {? WriteCode2(C_PUSHINTEGER,$1);}
??????? |REALNUMBER??????? {
??????? double r;
??????? DWord *d;
??????????????? WriteCode(C_PUSHREAL);
??????????????? r=$1;
??????????????? d=(DWord *)&r;
??????????????? WriteCode2(*d,*(d+1));
}
??????? |SHORTSTRING???????? {
??????? char *s;
??????????????? s=strdup($1);
??????????????? WriteCode(C_PUSHSTRING);
??????????????? WriteCode((DWord)s);
}
??????? |LPAREN expr RPAREN
??????? |ID LPAREN expr_list RPAREN {}???????? /* type cast, function call */
??????? ;
logicop :AND
??????? |OR
??????? ;
relop??????? :EQUAL
??????? |NE
??????? |LT
??????? |LE
??????? |GT
??????? |GE
??????? ;
addop??????? :PLUS
??????? |MINUS
??????? ;
mulop??????? :STAR
??????? |SLASH
??????? |MOD
??????? |SHL
??????? |SHR
??????? |BITAND
??????? |BITOR
??????? ;
signop??????? :addop
??????? ;
variable_list:variable
??????? |variable_list COMMA variable
??????? ;
variable:ID {
PSymbolTable q;
PVariant p;
DWord d;
??????? d=GetVar($1);
??????? if(d==OUTOFSTRINGINDEX) {
??????????????? d=GetFreeDIP();
??????????????? EnterVar($1,d);
??????????????? InitData(d,NOTYPE);
??????? }
??????? $$=d;
}
??????? |variable LBRACKET expr_list RBRACKET???????? /* array */
??????? |variable DOT ID??????????????????????? /* record */
??????? |variable '^'????????????????????????????????? /* pointer */
??????? |ID LPAREN variable RPAREN {}??????????????? /* type cast */
??????? ;
datatype:CHAR {$$=CHARTYPE;}
??????? |BYTE {$$=BYTETYPE;}
??????? |STRING {$$=STRINGTYPE;}
??????? |INTEGER {$$=INTEGERTYPE;}
??????? |DWORD {$$=DWORDTYPE;}
??????? |REAL {$$=REALTYPE;}
??????? ;
%%

void main() {
??????? InitSymtabRoot();
??????? ResetIP();
??????? yyparse();
??????? exec();
}
yyerror(char *s) {
??????? printf("Error> %s\n",s);
}
exec() {
?????? Reset();
??????? Start();
/*??????? ResetIP();*/
}
W(char *s) {
??????? printf("%s\n",s);
??????? fflush(stdout);
}
P(void) {
int i;
?????? for(i=0;i<GetIP();i++)
??????????????? printf("%d:%d? ",i,CodeSegment[i]);
}

?

7、??內(nèi)存組織和代碼生成:我們的內(nèi)存中有三個邏輯段:數(shù)據(jù)、堆棧、代碼,數(shù)據(jù)和堆棧共用同一個物理段,棧頂向下生長,代碼段單獨分開。在語法分析時,向內(nèi)存中寫入指令和數(shù)據(jù),在執(zhí)行時,再讀出來。代碼生成時如果遇到不可知跳轉(zhuǎn)(如If、While、For等等),就使用預(yù)添0技術(shù),先在這個位置填寫?Nop,在遇到語句結(jié)束后,知道了地址,再在這里添入要跳轉(zhuǎn)的代碼。需要注意的是數(shù)據(jù)/堆棧段的每個內(nèi)存單元存儲的是指向?Variant?數(shù)據(jù)類型的指針(這臺虛擬計算機(jī)的每個內(nèi)存單元都有四個字節(jié)大)。

#define MAXCODESEGMENTSIZE 65536
#define MAXDATASEGMENTSIZE 65536

extern DWord CodeSegment[MAXCODESEGMENTSIZE];
extern DWord sIP;
extern PVariant DataSegment[MAXDATASEGMENTSIZE];

void WriteCode(DWord c);
void WriteCode2(DWord c1,DWord c2);
void SetCode(DWord offset,DWord op);
DWord GetIP();
void SetIP(DWord ip);
DWord ReadCode();
void ResetIP(void);

DWord GetFreeDIP();
PVariant GetData(DWord offset);
void SetData(DWord offset,PVariant val);
void InitData(DWord offset,int datatype);
void FreeData(DWord offset);
void InitDataSegment(void);
void ReleaseDataSegment(void);

程序編譯及執(zhí)行:
首先用?Lex?編譯?calc.l?生成lex.yy.c?,然后用?yacc?編譯?calc.y?生成?y.tab.h、y.tab.c和y.code.c?(如果你沒有修改,可省略)。
用?gcc?編譯所有c文件。
執(zhí)行時缺省從?stdin?讀入,解釋完成后,如果沒有錯誤,就會執(zhí)行看到結(jié)果,如果要執(zhí)行文件,請使用重定向。

大家注意:我們的Basis語言更像Pascal語言。請看例子:

例一:
program aaa;
{
dim a as integer;
dim b as real;
dim c as string;

a=12;
b=a*2.2;
c="aaa";
c=c+a+b;
? a,b,c;
}

例二:
program aaa;
{
dim a as Integer;
dim b as Real;
dim ccc as string;
a=1;
a=a+1;
a=a*(a+20);
a=-a;
b=a;
b=b*2.71828;
ccc=ccc+"ASDF"" DED";
dim ddd as real;
ddd=0.123;
ddd=ddd*(ddd-2*ddd);
print a,b,ccc,ddd;
}

例三:
program aaa;
{
dim a as integer;
a=1;
while a<10? do {
??????? print a;
??????? a=a+1;
}
}

例四:
program t5;
{
dim a as integer;
a=1;
loop:
print a;
a=a+1;
if a<10 then goto loop;
print "Done";
}

例五:
program aaa;
{
dim a as integer;
for a=-2 to 2 do print a*a;
}

后記:

本來想詳細(xì)寫一下如何使用YACC,但我覺得這些應(yīng)該是已經(jīng)有的話題,所以這里將?TPLY 4.1?版本的幫助附在后面,它很詳細(xì),我沒什么可補(bǔ)充的。

自從96.5?第一次遇到?Delphi 1.0?以后,我一直在?Delphi?下編寫程序。但我總覺得想做一個合格的?Delphi?程序員,也應(yīng)該也從其它地方學(xué)習(xí),才能有所進(jìn)步。


????? TP Lex and Yacc - The Compiler Writer's Tools for Turbo Pascal

????? == === === ==== = === ======== ======== ===== === ===== ======

?

???????????????????? Version 4.1 User Manual

???????????????????? ======= === ==== ======

?

???????????????????????? Albert Graef

???????????????? Department of Musicinformatics

?????????????? Johannes Gutenberg-University Mainz

?

???????????????ag@muwiinfa.geschichte.uni-mainz.de

?

????????????????????????? April 1998

?

?

Introduction

============

?

This document describes the TP Lex and Yacc compiler generator toolset. These

tools are designed especially to help you prepare compilers and similar

programs like text processing utilities and command language interpreters with

the Turbo Pascal (TM) programming language.

?

TP Lex and Yacc are Turbo Pascal adaptions of the well-known UNIX (TM)

utilities Lex and Yacc, which were written by M.E. Lesk and S.C. Johnson at

Bell Laboratories, and are used with the C programming language. TP Lex and

Yacc are intended to be approximately "compatible" with these programs.

However, they are an independent development of the author, based on the

techniques described in the famous "dragon book" of Aho, Sethi and Ullman

(Aho, Sethi, Ullman: "Compilers : principles, techniques and tools," Reading

(Mass.), Addison-Wesley, 1986).

?

Version 4.1 of TP Lex and Yacc works with all recent flavours of Turbo/Borland

Pascal, including Delphi, and with the Free Pascal Compiler, a free Turbo

Pascal-compatible compiler which currently runs on DOS and Linux (other ports

are under development). Recent information about TP Lex/Yacc, and the sources

are available from the TPLY homepage:

?

???http://www.musikwissenschaft.uni-mainz.de/~ag/tply

?

For information about the Free Pascal Compiler, please refer to:

?

???http://www.freepascal.org

?

TP Lex and Yacc, like any other tools of this kind, are not intended for

novices or casual programmers; they require extensive programming experience

as well as a thorough understanding of the principles of parser design and

implementation to be put to work successfully. But if you are a seasoned Turbo

Pascal programmer with some background in compiler design and formal language

theory, you will almost certainly find TP Lex and Yacc to be a powerful

extension of your Turbo Pascal toolset.

?

This manual tells you how to get started with the TP Lex and Yacc programs and

provides a short description of these programs. Some knowledge about the C

versions of Lex and Yacc will be useful, although not strictly necessary. For

further reading, you may also refer to:

?

- Aho, Sethi and Ullman: "Compilers : principles, techniques and tools."

? Reading (Mass.), Addison-Wesley, 1986.

?

- Johnson, S.C.: "Yacc - yet another compiler-compiler." CSTR-32, Bell

? Telephone Laboratories, 1974.

?

- Lesk, M.E.: "Lex - a lexical analyser generator." CSTR-39, Bell Telephone

? Laboratories, 1975.

?

- Schreiner, Friedman: "Introduction to compiler construction with UNIX."

? Prentice-Hall, 1985.

?

- The Unix Programmer's Manual, Sections `Lex' and `Yacc'.

?

?

Credits

-------

?

I would like to thank Berend de Boer (berend@pobox.com), who adapted TP Lex

and Yacc to take advantage of the large memory models in Borland Pascal 7.0

and Delphi, and Michael Van Canneyt (Michael.VanCanneyt@fys.kuleuven.ac.be),

the maintainer of the Linux version of the Free Pascal compiler, who is

responsible for the Free Pascal port. And of course thanks are due to the many

TP Lex/Yacc users all over the world for their support and comments which

helped to improve these programs.

?

?

Getting Started

---------------

?

Instructions on how to compile and install TP Lex and Yacc on all supported

platforms can be found in the README file contained in the distribution.

?

Once you have installed TP Lex and Yacc on your system, you can compile your

first TP Lex and Yacc program expr. Expr is a simple desktop calculator

program contained in the distribution, which consists of a lexical analyzer in

the TP Lex source file exprlex.l and the parser and main program in the TP

Yacc source file expr.y. To compile these programs, issue the commands

?

?? lex exprlex

?? yacc expr

?

That's it! You now have the Turbo Pascal sources (exprlex.pas and expr.pas)

for the expr program. Use the Turbo Pascal compiler to compile these programs

as usual:

?

?? tpc expr

?

(Of course, the precise compilation command depends on the type of compiler

you are using. Thus you may have to replace tpc with bpc, dcc or dcc32,

depending on the version of the Turbo/Borland/Delphi compiler you have, and

with ppc386 for the Free Pascal compiler. If you are using TP Lex and Yacc

with Free Pascal under Linux, the corresponding commands are:

?

?? plex exprlex

?? pyacc expr

?? ppc386 expr

?

Note that in the Linux version, the programs are named plex and pyacc to

avoid name clashes with the corresponding UNIX utilities.)

?

Having compiled expr.pas, you can execute the expr program and type some

expressions to see it work (terminate the program with an empty line). There

is a number of other sample TP Lex and Yacc programs (.l and .y files) in the

distribution, including a TP Yacc cross reference utility and a complete

parser for Standard Pascal.

?

The TP Lex and Yacc programs recognize some options which may be specified

anywhere on the command line. E.g.,

?

?? lex -o exprlex

?

runs TP Lex with "DFA optimization" and

?

?? yacc -v expr

?

runs TP Yacc in "verbose" mode (TP Yacc generates a readable description of

the generated parser).

?

The TP Lex and Yacc programs use the following default filename extensions:

- .l:?? TP Lex input files

- .y:?? TP Yacc input files

- .pas: TP Lex and Yacc output files

?

As usual, you may overwrite default filename extensions by explicitly

specifying suffixes.

?

If you ever forget how to run TP Lex and Yacc, you can issue the command lex

or yacc (resp. plex or pyacc) without arguments to get a short summary of the

command line syntax.

?

?

?

TP Lex

======

?

This section describes the TP Lex lexical analyzer generator.

?

?

Usage

-----

?

lex [options] lex-file[.l] [output-file[.pas]]

?

?

Options

-------

?

-v? "Verbose:" Lex generates a readable description of the generated

??? lexical analyzer, written to lex-file with new extension `.lst'.

?

-o? "Optimize:" Lex optimizes DFA tables to produce a minimal DFA.

?

?

Description

-----------

?

TP Lex is a program generator that is used to generate the Turbo Pascal source

code for a lexical analyzer subroutine from the specification of an input

language by a regular expression grammar.

?

TP Lex parses the source grammar contained in lex-file (with default suffix

.l) and writes the constructed lexical analyzer subroutine to the specified

output-file (with default suffix .pas); if no output file is specified, output

goes to lex-file with new suffix .pas. If any errors are found during

compilation, error messages are written to the list file (lex-file with new

suffix .lst).

?

The generated output file contains a lexical analyzer routine, yylex,

implemented as:

?

? function yylex : Integer;

?

This routine has to be called by your main program to execute the lexical

analyzer. The return value of the yylex routine usually denotes the number

of a token recognized by the lexical analyzer (see the return routine in the

LexLib unit). At end-of-file the yylex routine normally returns 0.

?

The code template for the yylex routine may be found in the yylex.cod

file. This file is needed by TP Lex when it constructs the output file. It

must be present either in the current directory or in the directory from which

TP Lex was executed (TP Lex searches these directories in the indicated

order). (NB: For the Linux/Free Pascal version, the code template is searched

in some directory defined at compile-time instead of the execution path,

usually /usr/lib/fpc/lexyacc.)

?

The TP Lex library (LexLib) unit is required by programs using Lex-generated

lexical analyzers; you will therefore have to put an appropriate uses clause

into your program or unit that contains the lexical analyzer routine. The

LexLib unit also provides various useful utility routines; see the file

lexlib.pas for further information.

?

?

Lex Source

----------

?

A TP Lex program consists of three sections separated with the %% delimiter:

?

definitions

%%

rules

%%

auxiliary procedures

?

All sections may be empty. The TP Lex language is line-oriented; definitions

and rules are separated by line breaks. There is no special notation for

comments, but (Turbo Pascal style) comments may be included as Turbo Pascal

fragments (see below).

?

The definitions section may contain the following elements:

?

- regular definitions in the format:

?

???? name?? substitution

?

? which serve to abbreviate common subexpressions. The {name} notation

? causes the corresponding substitution from the definitions section to

? be inserted into a regular expression. The name must be a legal

? identifier (letter followed by a sequence of letters and digits;

? the underscore counts as a letter; upper- and lowercase are distinct).

? Regular definitions must be non-recursive.

?

- start state definitions in the format:

?

???? %start name ...

?

? which are used in specifying start conditions on rules (described

? below). The %start keyword may also be abbreviated as %s or %S.

?

- Turbo Pascal declarations enclosed between %{ and %}. These will be

? inserted into the output file (at global scope). Also, any line that

? does not look like a Lex definition (e.g., starts with blank or tab)

? will be treated as Turbo Pascal code. (In particular, this also allows

? you to include Turbo Pascal comments in your Lex program.)

?

The rules section of a TP Lex program contains the actual specification of

the lexical analyzer routine. It may be thought of as a big CASE statement

discriminating over the different patterns to be matched and listing the

corresponding statements (actions) to be executed. Each rule consists of a

regular expression describing the strings to be matched in the input, and a

corresponding action, a Turbo Pascal statement to be executed when the

expression matches. Expression and statement are delimited with whitespace

(blanks and/or tabs). Thus the format of a Lex grammar rule is:

?

?? expression????? statement;

?

Note that the action must be a single Turbo Pascal statement terminated

with a semicolon (use begin ... end for compound statements). The statement

may span multiple lines if the successor lines are indented with at least

one blank or tab. The action may also be replaced by the | character,

indicating that the action for this rule is the same as that for the next

one.

?

The TP Lex library unit provides various variables and routines which are

useful in the programming of actions. In particular, the yytext string

variable holds the text of the matched string, and the yyleng Byte variable

its length.

?

Regular expressions are used to describe the strings to be matched in a

grammar rule. They are built from the usual constructs describing character

classes and sequences, and operators specifying repetitions and alternatives.

The precise format of regular expressions is described in the next section.

?

The rules section may also start with some Turbo Pascal declarations

(enclosed in %{ %}) which are treated as local declarations of the

actions routine.

?

Finally, the auxiliary procedures section may contain arbitrary Turbo

Pascal code (such as supporting routines or a main program) which is

simply tacked on to the end of the output file. The auxiliary procedures

section is optional.

?

?

Regular Expressions

-------------------

?

The following table summarizes the format of the regular expressions

recognized by TP Lex (also compare Aho, Sethi, Ullman 1986, fig. 3.48).

c stands for a single character, s for a string, r for a regular expression,

and n,m for nonnegative integers.

?

expression?? matches??????????????????????? example

----------?? ----------------------------?? -------

c??????????? any non-operator character c?? a

\c?????????? character c literally????????? \*

"s"????????? string s literally???????????? "**"

.??????????? any character but newline????? a.*b

^??????????? beginning of line????????????? ^abc

$??????????? end of line??????????????????? abc$

[s]????????? any character in s???????????? [abc]

[^s]???????? any character not in s???????? [^abc]

r*?????????? zero or more r's?????????????? a*

r+?????????? one or more r's??????????????? a+

r??????????? zero or one r????????????????? a?

r{m,n}?????? m to n occurrences of r??????? a{1,5}

r{m}???????? m occurrences of r???????????? a{5}

r1r2???????? r1 then r2???????????????????? ab

r1|r2??????? r1 or r2?????????????????????? a|b

(r)????????? r????????????????????????????? (a|b)

r1/r2??????? r1 when followed by r2???????? a/b

<x>r???????? r when in start condition x??? <x>abc

---------------------------------------------------

?

The operators *, +, ? and {} have highest precedence, followed by

concatenation. The | operator has lowest precedence. Parentheses ()

may be used to group expressions and overwrite default precedences.

The <> and / operators may only occur once in an expression.

?

The usual C-like escapes are recognized:

?

\n???? denotes newline

\r???? denotes carriage return

\t???? denotes tab

\b???? denotes backspace

\f???? denotes form feed

\NNN?? denotes character no. NNN in octal base

?

You can also use the \ character to quote characters which would otherwise

be interpreted as operator symbols. In character classes, you may use

the - character to denote ranges of characters. For instance, [a-z]

denotes the class of all lowercase letters.

?

The expressions in a TP Lex program may be ambigious, i.e. there may be inputs

which match more than one rule. In such a case, the lexical analyzer prefers

the longest match and, if it still has the choice between different rules,

it picks the first of these. If no rule matches, the lexical analyzer

executes a default action which consists of copying the input character

to the output unchanged. Thus, if the purpose of a lexical analyzer is

to translate some parts of the input, and leave the rest unchanged, you

only have to specify the patterns which have to be treated specially. If,

however, the lexical analyzer has to absorb its whole input, you will have

to provide rules that match everything. E.g., you might use the rules

?

?? .?? |

?? \n? ;

?

which match "any other character" (and ignore it).

?

Sometimes certain patterns have to be analyzed differently depending on some

amount of context in which the pattern appears. In such a case the / operator

is useful. For instance, the expression a/b matches a, but only if followed

by b. Note that the b does not belong to the match; rather, the lexical

analyzer, when matching an a, will look ahead in the input to see whether

it is followed by a b, before it declares that it has matched an a. Such

lookahead may be arbitrarily complex (up to the size of the LexLib input

buffer). E.g., the pattern a/.*b matches an a which is followed by a b

somewhere on the same input line. TP Lex also has a means to specify left

context which is described in the next section.

?

?

Start Conditions

----------------

?

TP Lex provides some features which make it possible to handle left context.

The ^ character at the beginning of a regular expression may be used to

denote the beginning of the line. More distant left context can be described

conveniently by using start conditions on rules.

?

Any rule which is prefixed with the <> construct is only valid if the lexical

analyzer is in the denoted start state. For instance, the expression <x>a

can only be matched if the lexical analyzer is in start state x. You can have

multiple start states in a rule; e.g., <x,y>a can be matched in start states

x or y.

?

Start states have to be declared in the definitions section by means of

one or more start state definitions (see above). The lexical analyzer enters

a start state through a call to the LexLib routine start. E.g., you may

write:

?

%start x y

%%

<x>a??? start(y);

<y>b??? start(x);

%%

begin

? start(x); if yylex=0 then ;

end.

?

Upon initialization, the lexical analyzer is put into state x. It then

proceeds in state x until it matches an a which puts it into state y.

In state y it may match a b which puts it into state x again, etc.

?

Start conditions are useful when certain constructs have to be analyzed

differently depending on some left context (such as a special character

at the beginning of the line), and if multiple lexical analyzers have to

work in concert. If a rule is not prefixed with a start condition, it is

valid in all user-defined start states, as well as in the lexical analyzer's

default start state.

?

?

Lex Library

-----------

?

The TP Lex library (LexLib) unit provides various variables and routines

which are used by Lex-generated lexical analyzers and application programs.

It provides the input and output streams and other internal data structures

used by the lexical analyzer routine, and supplies some variables and utility

routines which may be used by actions and application programs. Refer to

the file lexlib.pas for a closer description.

?

You can also modify the Lex library unit (and/or the code template in the

yylex.cod file) to customize TP Lex to your target applications. E.g.,

you might wish to optimize the code of the lexical analyzer for some

special application, make the analyzer read from/write to memory instead

of files, etc.

?

?

Implementation Restrictions

---------------------------

?

Internal table sizes and the main memory available limit the complexity of

source grammars that TP Lex can handle. There is currently no possibility to

change internal table sizes (apart from modifying the sources of TP Lex

itself), but the maximum table sizes provided by TP Lex seem to be large

enough to handle most realistic applications. The actual table sizes depend on

the particular implementation (they are much larger than the defaults if TP

Lex has been compiled with one of the 32 bit compilers such as Delphi 2 or

Free Pascal), and are shown in the statistics printed by TP Lex when a

compilation is finished. The units given there are "p" (positions, i.e. items

in the position table used to construct the DFA), "s" (DFA states) and "t"

(transitions of the generated DFA).

?

As implemented, the generated DFA table is stored as a typed array constant

which is inserted into the yylex.cod code template. The transitions in each

state are stored in order. Of course it would have been more efficient to

generate a big CASE statement instead, but I found that this may cause

problems with the encoding of large DFA tables because Turbo Pascal has

a quite rigid limit on the code size of individual procedures. I decided to

use a scheme in which transitions on different symbols to the same state are

merged into one single transition (specifying a character set and the

corresponding next state). This keeps the number of transitions in each state

quite small and still allows a fairly efficient access to the transition

table.

?

The TP Lex program has an option (-o) to optimize DFA tables. This causes a

minimal DFA to be generated, using the algorithm described in Aho, Sethi,

Ullman (1986). Although the absolute limit on the number of DFA states that TP

Lex can handle is at least 300, TP Lex poses an additional restriction (100)

on the number of states in the initial partition of the DFA optimization

algorithm. Thus, you may get a fatal `integer set overflow' message when using

the -o option even when TP Lex is able to generate an unoptimized DFA. In such

cases you will just have to be content with the unoptimized DFA. (Hopefully,

this will be fixed in a future version. Anyhow, using the merged transitions

scheme described above, TP Lex usually constructs unoptimized DFA's which are

not far from being optimal, and thus in most cases DFA optimization won't have

a great impact on DFA table sizes.)

?

?

Differences from UNIX Lex

-------------------------

?

Major differences between TP Lex and UNIX Lex are listed below.

?

- TP Lex produces output code for Turbo Pascal, rather than for C.

?

- Character tables (%T) are not supported; neither are any directives

? to determine internal table sizes (%p, %n, etc.).

?

- Library routines are named differently from the UNIX version (e.g.,

? the `start' routine takes the place of the `BEGIN' macro of UNIX

? Lex), and, of course, all macros of UNIX Lex (ECHO, REJECT, etc.) had

? to be implemented as procedures.

?

- The TP Lex library unit starts counting line numbers at 0, incrementing

? the count BEFORE a line is read (in contrast, UNIX Lex initializes

? yylineno to 1 and increments it AFTER the line end has been read). This

? is motivated by the way in which TP Lex maintains the current line,

? and will not affect your programs unless you explicitly reset the

? yylineno value (e.g., when opening a new input file). In such a case

? you should set yylineno to 0 rather than 1.

?

?

?

?

TP Yacc

=======

?

This section describes the TP Yacc compiler compiler.

?

?

Usage

-----

?

yacc [options] yacc-file[.y] [output-file[.pas]]

?

?

Options

-------

?

-v? "Verbose:" TP Yacc generates a readable description of the generated

??? parser, written to yacc-file with new extension .lst.

?

-d? "Debug:" TP Yacc generates parser with debugging output.

?

?

Description

-----------

?

TP Yacc is a program that lets you prepare parsers from the description

of input languages by BNF-like grammars. You simply specify the grammar

for your target language, augmented with the Turbo Pascal code necessary

to process the syntactic constructs, and TP Yacc translates your grammar

into the Turbo Pascal code for a corresponding parser subroutine named

yyparse.

?

TP Yacc parses the source grammar contained in yacc-file (with default

suffix .y) and writes the constructed parser subroutine to the specified

output-file (with default suffix .pas); if no output file is specified,

output goes to yacc-file with new suffix .pas. If any errors are found

during compilation, error messages are written to the list file (yacc-file

with new suffix .lst).

?

The generated parser routine, yyparse, is declared as:

?

?? function yyparse : Integer;

?

This routine may be called by your main program to execute the parser.

The return value of the yyparse routine denotes success or failure of

the parser (possible return values: 0 = success, 1 = unrecoverable syntax

error or parse stack overflow).

?

Similar to TP Lex, the code template for the yyparse routine may be found in

the yyparse.cod file. The rules for locating this file are analogous to those

of TP Lex (see Section `TP Lex').

?

The TP Yacc library (YaccLib) unit is required by programs using Yacc-

generated parsers; you will therefore have to put an appropriate uses clause

into your program or unit that contains the parser routine. The YaccLib unit

also provides some routines which may be used to control the actions of the

parser. See the file yacclib.pas for further information.

?

?

Yacc Source

-----------

?

A TP Yacc program consists of three sections separated with the %% delimiter:

?

definitions

%%

rules

%%

auxiliary procedures

?

?

The TP Yacc language is free-format: whitespace (blanks, tabs and newlines)

is ignored, except if it serves as a delimiter. Comments have the C-like

format /* ... */. They are treated as whitespace. Grammar symbols are denoted

by identifiers which have the usual form (letter, including underscore,

followed by a sequence of letters and digits; upper- and lowercase is

distinct). The TP Yacc language also has some keywords which always start

with the % character. Literals are denoted by characters enclosed in single

quotes. The usual C-like escapes are recognized:

?

\n???? denotes newline

\r???? denotes carriage return

\t???? denotes tab

\b???? denotes backspace

\f???? denotes form feed

\NNN?? denotes character no. NNN in octal base

?

?

Definitions

-----------

?

The first section of a TP Yacc grammar serves to define the symbols used in

the grammar. It may contain the following types of definitions:

?

- start symbol definition: A definition of the form

?

???? %start symbol

?

? declares the start nonterminal of the grammar (if this definition is

? omitted, TP Yacc assumes the left-hand side nonterminal of the first

? grammar rule as the start symbol of the grammar).

?

- terminal definitions: Definitions of the form

?

???? %token symbol ...

?

? are used to declare the terminal symbols ("tokens") of the target

? language. Any identifier not introduced in a %token definition will

? be treated as a nonterminal symbol.

?

? As far as TP Yacc is concerned, tokens are atomic symbols which do not

? have an innert structure. A lexical analyzer must be provided which

? takes on the task of tokenizing the input stream and return the

? individual tokens and literals to the parser (see Section `Lexical

? Analysis').

?

- precedence definitions: Operator symbols (terminals) may be associated

? with a precedence by means of a precedence definition which may have

? one of the following forms

?

???? %left symbol ...

???? %right symbol ...

???? %nonassoc symbol ...

?

? which are used to declare left-, right- and nonassociative operators,

? respectively. Each precedence definition introduces a new precedence

? level, lowest precedence first. E.g., you may write:

?

???? %nonassoc '<' '>' '=' GEQ LEQ NEQ? /* relational operators */

???? %left???? '+' '-'? OR????????????? /* addition operators */

???? %left???? '*' '/' AND????????????? /* multiplication operators */

???? %right??? NOT UMINUS?????????????? /* unary operators */

?

? A terminal identifier introduced in a precedence definition may, but

? need not, appear in a %token definition as well.

?

- type definitions: Any (terminal or nonterminal) grammar symbol may be

? associated with a type identifier which is used in the processing of

? semantic values. Type tags of the form <name> may be used in token and

? precedence definitions to declare the type of a terminal symbol, e.g.:

?

???? %token <Real>? NUM

???? %left? <AddOp> '+' '-'

?

? To declare the type of a nonterminal symbol, use a type definition of

? the form:

?

???? %type <name> symbol ...

?

? e.g.:

?

???? %type <Real> expr

?

? In a %type definition, you may also omit the nonterminals, i.e. you

? may write:

?

???? %type <name>

?

? This is useful when a given type is only used with type casts (see

? Section `Grammar Rules and Actions'), and is not associated with a

? specific nonterminal.

?

- Turbo Pascal declarations: You may also include arbitrary Turbo Pascal

? code in the definitions section, enclosed in %{ %}. This code will be

? inserted as global declarations into the output file, unchanged.

?

?

Grammar Rules and Actions

-------------------------

?

The second part of a TP Yacc grammar contains the grammar rules for the

target language. Grammar rules have the format

?

?? name : symbol ... ;

?

The left-hand side of a rule must be an identifier (which denotes a

nonterminal symbol). The right-hand side may be an arbitrary (possibly

empty) sequence of nonterminal and terminal symbols (including literals

enclosed in single quotes). The terminating semicolon may also be omitted.

Different rules for the same left-hand side symbols may be written using

the | character to separate the different alternatives:

?

?? name : symbol ...

??????? | symbol ...

??????? ...

??????? ;

?

For instance, to specify a simple grammar for arithmetic expressions, you

may write:

?

%left '+' '-'

%left '*' '/'

%token NUM

%%

expr : expr '+' expr

???? | expr '-' expr

???? | expr '*' expr

???? | expr '/' expr

???? | '(' expr ')'

???? | NUM

???? ;

?

(The %left definitions at the beginning of the grammar are needed to specify

the precedence and associativity of the operator symbols. This will be

discussed in more detail in Section `Ambigious Grammars'.)

?

Grammar rules may contain actions - Turbo Pascal statements enclosed in

{ } - to be executed as the corresponding rules are recognized. Furthermore,

rules may return values, and access values returned by other rules. These

"semantic" values are written as $$ (value of the left-hand side nonterminal)

and $i (value of the ith right-hand side symbol). They are kept on a special

value stack which is maintained automatically by the parser.

?

Values associated with terminal symbols must be set by the lexical analyzer

(more about this in Section `Lexical Analysis'). Actions of the form $$ := $1

can frequently be omitted, since it is the default action assumed by TP Yacc

for any rule that does not have an explicit action.

?

By default, the semantic value type provided by Yacc is Integer. You can

also put a declaration like

?

?? %{

?? type YYSType = Real;

?? %}

?

into the definitions section of your Yacc grammar to change the default value

type. However, if you have different value types, the preferred method is to

use type definitions as discussed in Section `Definitions'. When such type

definitions are given, TP Yacc handles all the necessary details of the

YYSType definition and also provides a fair amount of type checking which

makes it easier to find type errors in the grammar.

?

For instance, we may declare the symbols NUM and expr in the example above

to be of type Real, and then use these values to evaluate an expression as

it is parsed.

?

%left '+' '-'

%left '*' '/'

%token <Real> NUM

%type? <Real> expr

%%

expr : expr '+' expr?? { $$ := $1+$3; }

???? | expr '-' expr?? { $$ := $1-$3; }

???? | expr '*' expr?? { $$ := $1*$3; }

???? | expr '/' expr?? { $$ := $1/$3; }

???? | '(' expr ')'??? { $$ := $2;??? }

???? | NUM

???? ;

?

(Note that we omitted the action of the last rule. The "copy action"

$$ := $1 required by this rule is automatically added by TP Yacc.)

?

Actions may not only appear at the end, but also in the middle of a rule

which is useful to perform some processing before a rule is fully parsed.

Such actions inside a rule are treated as special nonterminals which are

associated with an empty right-hand side. Thus, a rule like

?

?? x : y { action; } z

?

will be treated as:

?

? x : y $act z

? $act : { action; }

?

Actions inside a rule may also access values to the left of the action,

and may return values by assigning to the $$ value. The value returned

by such an action can then be accessed by other actions using the usual $i

notation. E.g., we may write:

?

?? x : y { $$ := 2*$1; } z { $$ := $2+$3; }

?

which has the effect of setting the value of x to

?

?? 2*(the value of y)+(the value of z).

?

Sometimes it is desirable to access values in enclosing rules. This can be

done using the notation $i with i<=0. $0 refers to the first value "to the

left" of the current rule, $-1 to the second, and so on. Note that in this

case the referenced value depends on the actual contents of the parse stack,

so you have to make sure that the requested values are always where you

expect them.

?

There are some situations in which TP Yacc cannot easily determine the

type of values (when a typed parser is used). This is true, in particular,

for values in enclosing rules and for the $$ value in an action inside a

rule. In such cases you may use a type cast to explicitly specify the type

of a value. The format for such type casts is $<name>$ (for left-hand side

values) and $<name>i (for right-hand side values) where name is a type

identifier (which must occur in a %token, precedence or %type definition).

?

?

Auxiliary Procedures

--------------------

?

The third section of a TP Yacc program is optional. If it is present, it

may contain any Turbo Pascal code (such as supporting routines or a main

program) which is tacked on to the end of the output file.

?

?

Lexical Analysis

----------------

?

For any TP Yacc-generated parser, the programmer must supply a lexical

analyzer routine named yylex which performs the lexical analysis for

the parser. This routine must be declared as

?

?? function yylex : Integer;

?

The yylex routine may either be prepared by hand, or by using the lexical

analyzer generator TP Lex (see Section `TP Lex').

?

The lexical analyzer must be included in your main program behind the

parser subroutine (the yyparse code template includes a forward

definition of the yylex routine such that the parser can access the

lexical analyzer). For instance, you may put the lexical analyzer

routine into the auxiliary procedures section of your TP Yacc grammar,

either directly, or by using the the Turbo Pascal include directive

($I).

?

The parser repeatedly calls the yylex routine to tokenize the input

stream and obtain the individual lexical items in the input. For any

literal character, the yylex routine has to return the corresponding

character code. For the other, symbolic, terminals of the input language,

the lexical analyzer must return corresponding Integer codes. These are

assigned automatically by TP Yacc in the order in which token definitions

appear in the definitions section of the source grammar. The lexical

analyzer can access these values through corresponding Integer constants

which are declared by TP Yacc in the output file.

?

For instance, if

?

?? %token NUM

?

is the first definition in the Yacc grammar, then TP Yacc will create

a corresponding constant declaration

?

?? const NUM = 257;

?

in the output file (TP Yacc automatically assigns symbolic token numbers

starting at 257; 1 thru 255 are reserved for character literals, 0 denotes

end-of-file, and 256 is reserved for the special error token which will be

discussed in Section `Error Handling'). This definition may then be used,

e.g., in a corresponding TP Lex program as follows:

?

?? [0-9]+?? return(NUM);

?

You can also explicitly assign token numbers in the grammar. For this

purpose, the first occurrence of a token identifier in the definitions

section may be followed by an unsigned integer. E.g. you may write:

?

?? %token NUM 299

?

Besides the return value of yylex, the lexical analyzer routine may also

return an additional semantic value for the recognized token. This value

is assigned to a variable named "yylval" and may then be accessed in actions

through the $i notation (see above, Section `Grammar Rules and Actions').

The yylval variable is of type YYSType (the semantic value type, Integer

by default); its declaration may be found in the yyparse.cod file.

?

For instance, to assign an Integer value to a NUM token in the above

example, we may write:

?

?? [0-9]+?? begin

????????????? val(yytext, yylval, code);

????????????? return(NUM);

??????????? end;

?

This assigns yylval the value of the NUM token (using the Turbo Pascal

standard procedure val).

?

If a parser uses tokens of different types (via a %token <name> definition),

then the yylval variable will not be of type Integer, but instead of a

corresponding variant record type which is capable of holding all the

different value types declared in the TP Yacc grammar. In this case, the

lexical analyzer must assign a semantic value to the corresponding record

component which is named yy<name> (where <name> stands for the corresponding

type identifier).

?

E.g., if token NUM is declared Real:

?

?? %token <Real> NUM

?

then the value for token NUM must be assigned to yylval.yyReal.

?

?

How The Parser Works

--------------------

?

TP Yacc uses the LALR(1) technique developed by Donald E. Knuth and F.

DeRemer to construct a simple, efficient, non-backtracking bottom-up

parser for the source grammar. The LALR parsing technique is described

in detail in Aho/Sethi/Ullman (1986). It is quite instructive to take a

look at the parser description TP Yacc generates from a small sample

grammar, to get an idea of how the LALR parsing algorithm works. We

consider the following simplified version of the arithmetic expression

grammar:

?

%token NUM

%left '+'

%left '*'

%%

expr : expr '+' expr

???? | expr '*' expr

???? | '(' expr ')'

???? | NUM

???? ;

?

When run with the -v option on the above grammar, TP Yacc generates the

parser description listed below.

?

state 0:

?

??? $accept : _ expr $end

?

??? '(' shift 2

??? NUM shift 3

??? .?? error

?

??? expr??? goto 1

?

state 1:

?

??? $accept : expr _ $end

??? expr : expr _ '+' expr

??? expr : expr _ '*' expr

?

??? $end??? accept

??? '*' shift 4

??? '+' shift 5

??? .?? error

?

state 2:

?

??? expr : '(' _ expr ')'

?

??? '(' shift 2

??? NUM shift 3

??? .?? error

?

??? expr??? goto 6

?

state 3:

?

??? expr : NUM _?? (4)

?

??? .??? reduce 4

?

state 4:

?

??? expr : expr '*' _ expr

?

??? '(' shift 2

??? NUM shift 3

??? .?? error

?

??? expr??? goto 7

?

state 5:

?

??? expr : expr '+' _ expr

?

??? '(' shift 2

??? NUM shift 3

??? .?? error

?

??? expr??? goto 8

?

state 6:

?

??? expr : '(' expr _ ')'

??? expr : expr _ '+' expr

??? expr : expr _ '*' expr

?

??? ')' shift 9

??? '*' shift 4

??? '+' shift 5

??? .?? error

?

state 7:

?

??? expr : expr '*' expr _??? (2)

??? expr : expr _ '+' expr

??? expr : expr _ '*' expr

?

??? .??? reduce 2

?

state 8:

?

??? expr : expr '+' expr _??? (1)

??? expr : expr _ '+' expr

??? expr : expr _ '*' expr

?

??? '*' shift 4

??? $end??? reduce 1

??? ')'??? reduce 1

??? '+'??? reduce 1

??? .?? error

?

state 9:

?

??? expr : '(' expr ')' _??? (3)

?

??? .??? reduce 3

?

?

Each state of the parser corresponds to a certain prefix of the input

which has already been seen. The parser description lists the grammar

rules wich are parsed in each state, and indicates the portion of each

rule which has already been parsed by an underscore. In state 0, the

start state of the parser, the parsed rule is

?

??? $accept : expr $end

?

This is not an actual grammar rule, but a starting rule automatically

added by TP Yacc. In general, it has the format

?

??? $accept : X $end

?

where X is the start nonterminal of the grammar, and $end is a pseudo

token denoting end-of-input (the $end symbol is used by the parser to

determine when it has successfully parsed the input).

?

The description of the start rule in state 0,

?

??? $accept : _ expr $end

?

with the underscore positioned before the expr symbol, indicates that

we are at the beginning of the parse and are ready to parse an expression

(nonterminal expr).

?

The parser maintains a stack to keep track of states visited during the

parse. There are two basic kinds of actions in each state: "shift", which

reads an input symbol and pushes the corresponding next state on top of

the stack, and "reduce" which pops a number of states from the stack

(corresponding to the number of right-hand side symbols of the rule used

in the reduction) and consults the "goto" entries of the uncovered state

to find the transition corresponding to the left-hand side symbol of the

reduced rule.

?

In each step of the parse, the parser is in a given state (the state on

top of its stack) and may consult the current "lookahead symbol", the

next symbol in the input, to determine the parse action - shift or reduce -

to perform. The parser terminates as soon as it reaches state 1 and reads

in the endmarker, indicated by the "accept" action on $end in state 1.

?

Sometimes the parser may also carry out an action without inspecting the

current lookahead token. This is the case, e.g., in state 3 where the

only action is reduction by rule 4:

?

??? .??? reduce 4

?

The default action in a state can also be "error" indicating that any

other input represents a syntax error. (In case of such an error the

parser will start syntactic error recovery, as described in Section

`Error Handling'.)

?

Now let us see how the parser responds to a given input. We consider the

input string 2+5*3 which is presented to the parser as the token sequence:

?

?? NUM + NUM * NUM

?

The following table traces the corresponding actions of the parser. We also

show the current state in each move, and the remaining states on the stack.

?

State? Stack???????? Lookahead? Action

-----? ------------? ---------? --------------------------------------------

?

0??????????????????? NUM??????? shift state 3

?

3????? 0??????????????????????? reduce rule 4 (pop 1 state, uncovering state

??????????????????????????????? 0, then goto state 1 on symbol expr)

?

1????? 0???????????? +????????? shift state 5

?

5????? 1 0?????????? NUM??????? shift state 3

?

3????? 5 1 0??????????????????? reduce rule 4 (pop 1 state, uncovering state

??????????????????????????????? 5, then goto state 8 on symbol expr)

?

8????? 5 1 0???????? *????????? shift 4

?

4????? 8 5 1 0?????? NUM??????? shift 3

?

3????? 4 8 5 1 0??????????????? reduce rule 4 (pop 1 state, uncovering state

??????????????????????????????? 4, then goto state 7 on symbol expr)

?

7????? 4 8 5 1 0??????????????? reduce rule 2 (pop 3 states, uncovering state

??????????????????????????????? 5, then goto state 8 on symbol expr)

?

8????? 5 1 0???????? $end?????? reduce rule 1 (pop 3 states, uncovering state

??????????????????????????????? 0, then goto state 1 on symbol expr)

?

1????? 0???????????? $end?????? accept

?

It is also instructive to see how the parser responds to illegal inputs.

E.g., you may try to figure out what the parser does when confronted with:

?

?? NUM + )

?

or:

?

?? ( NUM * NUM

?

You will find that the parser, sooner or later, will always run into an

error action when confronted with errorneous inputs. An LALR parser will

never shift an invalid symbol and thus will always find syntax errors as

soon as it is possible during a left-to-right scan of the input.

?

TP Yacc provides a debugging option (-d) that may be used to trace the

actions performed by the parser. When a grammar is compiled with the

-d option, the generated parser will print out the actions as it parses

its input.

?

?

Ambigious Grammars

------------------

?

There are situations in which TP Yacc will not produce a valid parser for

a given input language. LALR(1) parsers are restricted to one-symbol

lookahead on which they have to base their parsing decisions. If a

grammar is ambigious, or cannot be parsed unambigiously using one-symbol

lookahead, TP Yacc will generate parsing conflicts when constructing the

parse table. There are two types of such conflicts: shift/reduce conflicts

(when there is both a shift and a reduce action for a given input symbol

in a given state), and reduce/reduce conflicts (if there is more than

one reduce action for a given input symbol in a given state). Note that

there never will be a shift/shift conflict.

?

When a grammar generates parsing conflicts, TP Yacc prints out the number

of shift/reduce and reduce/reduce conflicts it encountered when constructing

the parse table. However, TP Yacc will still generate the output code for the

parser. To resolve parsing conflicts, TP Yacc uses the following built-in

disambiguating rules:

?

- in a shift/reduce conflict, TP Yacc chooses the shift action.

?

- in a reduce/reduce conflict, TP Yacc chooses reduction of the first

? grammar rule.

?

The shift/reduce disambiguating rule correctly resolves a type of

ambiguity known as the "dangling-else ambiguity" which arises in the

syntax of conditional statements of many programming languages (as in

Pascal):

?

%token IF THEN ELSE

%%

stmt : IF expr THEN stmt

???? | IF expr THEN stmt ELSE stmt

???? ;

?

This grammar is ambigious, because a nested construct like

?

?? IF expr-1 THEN IF expr-2 THEN stmt-1 ELSE stmt-2

?

can be parsed two ways, either as:

?

?? IF expr-1 THEN ( IF expr-2 THEN stmt-1 ELSE stmt-2 )

?

or as:

?

?? IF expr-1 THEN ( IF expr-2 THEN stmt-1 ) ELSE stmt-2

?

The first interpretation makes an ELSE belong to the last unmatched

IF which also is the interpretation chosen in most programming languages.

This is also the way that a TP Yacc-generated parser will parse the construct

since the shift/reduce disambiguating rule has the effect of neglecting the

reduction of IF expr-2 THEN stmt-1; instead, the parser will shift the ELSE

symbol which eventually leads to the reduction of IF expr-2 THEN stmt-1 ELSE

stmt-2.

?

The reduce/reduce disambiguating rule is used to resolve conflicts that

arise when there is more than one grammar rule matching a given construct.

Such ambiguities are often caused by "special case constructs" which may be

given priority by simply listing the more specific rules ahead of the more

general ones.

?

For instance, the following is an excerpt from the grammar describing the

input language of the UNIX equation formatter EQN:

?

%right SUB SUP

%%

expr : expr SUB expr SUP expr

???? | expr SUB expr

???? | expr SUP expr

???? ;

?

Here, the SUB and SUP operator symbols denote sub- and superscript,

respectively. The rationale behind this example is that an expression

involving both sub- and superscript is often set differently from a

superscripted subscripted expression. This special case is therefore

caught by the first rule in the above example which causes a reduce/reduce

conflict with rule 3 in expressions like expr-1 SUB expr-2 SUP expr-3.

The conflict is resolved in favour of the first rule.

?

In both cases discussed above, the ambiguities could also be eliminated

by rewriting the grammar accordingly (although this yields more complicated

and less readable grammars). This may not always be the case. Often

ambiguities are also caused by design errors in the grammar. Hence, if

TP Yacc reports any parsing conflicts when constructing the parser, you

should use the -v option to generate the parser description (.lst file)

and check whether TP Yacc resolved the conflicts correctly.

?

There is one type of syntactic constructs for which one often deliberately

uses an ambigious grammar as a more concise representation for a language

that could also be specified unambigiously: the syntax of expressions.

For instance, the following is an unambigious grammar for simple arithmetic

expressions:

?

%token NUM

?

%%

?

expr??? : term

??? | expr '+' term

??????? ;

?

term??? : factor

??? | term '*' factor

??????? ;

?

factor? : '(' expr ')'

??? | NUM

??????? ;

?

You may check yourself that this grammar gives * a higher precedence than

+ and makes both operators left-associative. The same effect can be achieved

with the following ambigious grammar using precedence definitions:

?

%token NUM

%left '+'

%left '*'

%%

expr : expr '+' expr

???? | expr '*' expr

???? | '(' expr ')'

???? | NUM

???? ;

?

Without the precedence definitions, this is an ambigious grammar causing

a number of shift/reduce conflicts. The precedence definitions are used

to correctly resolve these conflicts (conflicts resolved using precedence

will not be reported by TP Yacc).

?

Each precedence definition introduces a new precedence level (lowest

precedence first) and specifies whether the corresponding operators

should be left-, right- or nonassociative (nonassociative operators

cannot be combined at all; example: relational operators in Pascal).

?

TP Yacc uses precedence information to resolve shift/reduce conflicts as

follows. Precedences are associated with each terminal occuring in a

precedence definition. Furthermore, each grammar rule is given the

precedence of its rightmost terminal (this default choice can be

overwritten using a %prec tag; see below). To resolve a shift/reduce

conflict using precedence, both the symbol and the rule involved must

have been assigned precedences. TP Yacc then chooses the parse action

as follows:

?

- If the symbol has higher precedence than the rule: shift.

?

- If the rule has higher precedence than the symbol: reduce.

?

- If symbol and rule have the same precedence, the associativity of the

? symbol determines the parse action: if the symbol is left-associative:

? reduce; if the symbol is right-associative: shift; if the symbol is

? non-associative: error.

?

To give you an idea of how this works, let us consider our ambigious

arithmetic expression grammar (without precedences):

?

%token NUM

%%

expr : expr '+' expr

???? | expr '*' expr

???? | '(' expr ')'

???? | NUM

???? ;

?

This grammar generates four shift/reduce conflicts. The description

of state 8 reads as follows:

?

state 8:

?

??? *** conflicts:

?

??? shift 4, reduce 1 on '*'

??? shift 5, reduce 1 on '+'

?

??? expr : expr '+' expr _??? (1)

??? expr : expr _ '+' expr

??? expr : expr _ '*' expr

?

??? '*' shift 4

??? '+' shift 5

??? $end??? reduce 1

??? ')'??? reduce 1

??? .?? error

?

In this state, we have successfully parsed a + expression (rule 1). When

the next symbol is + or *, we have the choice between the reduction and

shifting the symbol. Using the default shift/reduce disambiguating rule,

TP Yacc has resolved these conflicts in favour of shift.

?

Now let us assume the above precedence definition:

?

?? %left '+'

?? %left '*'

?

which gives * higher precedence than + and makes both operators left-

associative. The rightmost terminal in rule 1 is +. Hence, given these

precedence definitions, the first conflict will be resolved in favour

of shift (* has higher precedence than +), while the second one is resolved

in favour of reduce (+ is left-associative).

?

Similar conflicts arise in state 7:

?

state 7:

?

??? *** conflicts:

?

??? shift 4, reduce 2 on '*'

??? shift 5, reduce 2 on '+'

?

??? expr : expr '*' expr _??? (2)

??? expr : expr _ '+' expr

??? expr : expr _ '*' expr

?

??? '*' shift 4

??? '+' shift 5

??? $end??? reduce 2

??? ')'??? reduce 2

??? .?? error

?

Here, we have successfully parsed a * expression which may be followed

by another + or * operator. Since * is left-associative and has higher

precedence than +, both conflicts will be resolved in favour of reduce.

?

Of course, you can also have different operators on the same precedence

level. For instance, consider the following extended version of the

arithmetic expression grammar:

?

%token NUM

%left '+' '-'

%left '*' '/'

%%

expr??? : expr '+' expr

??? | expr '-' expr

??????? | expr '*' expr

??????? | expr '/' expr

??????? | '(' expr ')'

??????? | NUM

??????? ;

?

This puts all "addition" operators on the first and all "multiplication"

operators on the second precedence level. All operators are left-associative;

for instance, 5+3-2 will be parsed as (5+3)-2.

?

By default, TP Yacc assigns each rule the precedence of its rightmost

terminal. This is a sensible decision in most cases. Occasionally, it

may be necessary to overwrite this default choice and explicitly assign

a precedence to a rule. This can be done by putting a precedence tag

of the form

?

?? %prec symbol

?

at the end of the corresponding rule which gives the rule the precedence

of the specified symbol. For instance, to extend the expression grammar

with a unary minus operator, giving it highest precedence, you may write:

?

%token NUM

%left '+' '-'

%left '*' '/'

%right UMINUS

%%

expr??? : expr '+' expr

??? | expr '-' expr

??????? | expr '*' expr

??????? | expr '/' expr

??????? | '-' expr????? %prec UMINUS

??????? | '(' expr ')'

??????? | NUM

??????? ;

?

Note the use of the UMINUS token which is not an actual input symbol but

whose sole purpose it is to give unary minus its proper precedence. If

we omitted the precedence tag, both unary and binary minus would have the

same precedence because they are represented by the same input symbol.

?

?

Error Handling

--------------

?

Syntactic error handling is a difficult area in the design of user-friendly

parsers. Usually, you will not like to have the parser give up upon the

first occurrence of an errorneous input symbol. Instead, the parser should

recover from a syntax error, that is, it should try to find a place in the

input where it can resume the parse.

?

TP Yacc provides a general mechanism to implement parsers with error

recovery. A special predefined "error" token may be used in grammar rules

to indicate positions where syntax errors might occur. When the parser runs

into an error action (i.e., reads an errorneous input symbol) it prints out

an error message and starts error recovery by popping its stack until it

uncovers a state in which there is a shift action on the error token. If

there is no such state, the parser terminates with return value 1, indicating

an unrecoverable syntax error. If there is such a state, the parser takes the

shift on the error token (pretending it has seen an imaginary error token in

the input), and resumes parsing in a special "error mode."

?

While in error mode, the parser quietly skips symbols until it can again

perform a legal shift action. To prevent a cascade of error messages, the

parser returns to its normal mode of operation only after it has seen

and shifted three legal input symbols. Any additional error found after

the first shifted symbol restarts error recovery, but no error message

is printed. The TP Yacc library routine yyerrok may be used to reset the

parser to its normal mode of operation explicitly.

?

For a simple example, consider the rule

?

stmt??? : error ';' { yyerrok; }

?

and assume a syntax error occurs while a statement (nonterminal stmt) is

parsed. The parser prints an error message, then pops its stack until it

can shift the token error of the error rule. Proceeding in error mode, it

will skip symbols until it finds a semicolon, then reduces by the error

rule. The call to yyerrok tells the parser that we have recovered from

the error and that it should proceed with the normal parse. This kind of

"panic mode" error recovery scheme works well when statements are always

terminated with a semicolon. The parser simply skips the "bad" statement

and then resumes the parse.

?

Implementing a good error recovery scheme can be a difficult task; see

Aho/Sethi/Ullman (1986) for a more comprehensive treatment of this topic.

Schreiner and Friedman have developed a systematic technique to implement

error recovery with Yacc which I found quite useful (I used it myself

to implement error recovery in the TP Yacc parser); see Schreiner/Friedman

(1985).

?

?

Yacc Library

------------

?

The TP Yacc library (YaccLib) unit provides some global declarations used

by the parser routine yyparse, and some variables and utility routines

which may be used to control the actions of the parser and to implement

error recovery. See the file yacclib.pas for a description of these

variables and routines.

?

You can also modify the Yacc library unit (and/or the code template in the

yyparse.cod file) to customize TP Yacc to your target applications.

?

?

Other Features

--------------

?

TP Yacc supports all additional language elements entitled as "Old Features

Supported But not Encouraged" in the UNIX manual, which are provided for

backward compatibility with older versions of (UNIX) Yacc:

?

- literals delimited by double quotes.

?

- multiple-character literals. Note that these are not treated as character

? sequences but represent single tokens which are given a symbolic integer

? code just like any other token identifier. However, they will not be

? declared in the output file, so you have to make sure yourself that

? the lexical analyzer returns the correct codes for these symbols. E.g.,

? you might explicitly assign token numbers by using a definition like

?

???? %token ':=' 257

?

? at the beginning of the Yacc grammar.

?

- \ may be used instead of %, i.e. \\ means %%, \left is the same as %left,

? etc.

?

- other synonyms:

? %<???????????? for %left

? %>???????????? for %right

? %binary or %2? for %nonassoc

? %term or %0??? for %token

? %=???????????? for %prec

?

- actions may also be written as = { ... } or = single-statement;

?

- Turbo Pascal declarations (%{ ... %}) may be put at the beginning of the

? rules section. They will be treated as local declarations of the actions

? routine.

?

?

Implementation Restrictions

---------------------------

?

As with TP Lex, internal table sizes and the main memory available limit the

complexity of source grammars that TP Yacc can handle. However, the maximum

table sizes provided by TP Yacc are large enough to handle quite complex

grammars (such as the Pascal grammar in the TP Yacc distribution). The actual

table sizes are shown in the statistics printed by TP Yacc when a compilation

is finished. The given figures are "s" (states), "i" (LR0 kernel items), "t"

(shift and goto transitions) and "r" (reductions).

?

The default stack size of the generated parsers is yymaxdepth = 1024, as

declared in the TP Yacc library unit. This should be sufficient for any

average application, but you can change the stack size by including a

corresponding declaration in the definitions part of the Yacc grammar

(or change the value in the YaccLib unit). Note that right-recursive

grammar rules may increase stack space requirements, so it is a good

idea to use left-recursive rules wherever possible.

?

?

Differences from UNIX Yacc

--------------------------

?

Major differences between TP Yacc and UNIX Yacc are listed below.

?

- TP Yacc produces output code for Turbo Pascal, rather than for C.

?

- TP Yacc does not support %union definitions. Instead, a value type is

? declared by specifying the type identifier itself as the tag of a %token

? or %type definition. TP Yacc will automatically generate an appropriate

? variant record type (YYSType) which is capable of holding values of any

? of the types used in %token and %type.

?

? Type checking is very strict. If you use type definitions, then

? any symbol referred to in an action must have a type introduced

? in a type definition. Either the symbol must have been assigned a

? type in the definitions section, or the $<type-identifier> notation

? must be used. The syntax of the %type definition has been changed

? slightly to allow definitions of the form

???? %type <type-identifier>

? (omitting the nonterminals) which may be used to declare types which

? are not assigned to any grammar symbol, but are used with the

? $<...> construct.

?

- The parse tables constructed by this Yacc version are slightly greater

? than those constructed by UNIX Yacc, since a reduce action will only be

? chosen as the default action if it is the only action in the state.

? In difference, UNIX Yacc chooses a reduce action as the default action

? whenever it is the only reduce action of the state (even if there are

? other shift actions).

?

? This solves a bug in UNIX Yacc that makes the generated parser start

? error recovery too late with certain types of error productions (see

? also Schreiner/Friedman, "Introduction to compiler construction with

? UNIX," 1985). Also, errors will be caught sooner in most cases where

? UNIX Yacc would carry out an additional (default) reduction before

? detecting the error.

?

- Library routines are named differently from the UNIX version (e.g.,

? the `yyerrlab' routine takes the place of the `YYERROR' macro of UNIX

? Yacc), and, of course, all macros of UNIX Yacc (YYERROR, YYACCEPT, etc.)

? had to be implemented as procedures.

總結(jié)

以上是生活随笔為你收集整理的用YACC/LEX 设计计算机语言的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

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

欧美激情内射喷水高潮 | 丰满岳乱妇在线观看中字无码 | 人人妻人人澡人人爽精品欧美 | 97se亚洲精品一区 | 国产精品99爱免费视频 | 午夜肉伦伦影院 | 欧美大屁股xxxxhd黑色 | 99麻豆久久久国产精品免费 | 国产精品无码一区二区桃花视频 | 欧美老妇交乱视频在线观看 | 免费观看的无遮挡av | 麻豆果冻传媒2021精品传媒一区下载 | 国产精品亚洲а∨无码播放麻豆 | 午夜福利电影 | 丰满人妻翻云覆雨呻吟视频 | 国产人妻人伦精品1国产丝袜 | 国内精品人妻无码久久久影院蜜桃 | 色婷婷久久一区二区三区麻豆 | aa片在线观看视频在线播放 | 波多野结衣高清一区二区三区 | 免费人成在线观看网站 | 久久久精品成人免费观看 | 色欲久久久天天天综合网精品 | 小sao货水好多真紧h无码视频 | 国产成人精品三级麻豆 | 97无码免费人妻超级碰碰夜夜 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 妺妺窝人体色www在线小说 | 国产精品美女久久久久av爽李琼 | 无码人妻精品一区二区三区不卡 | 亚洲乱码日产精品bd | 亚洲精品国偷拍自产在线观看蜜桃 | 国产在线精品一区二区高清不卡 | 久久久久久久人妻无码中文字幕爆 | 无码一区二区三区在线观看 | 国产成人午夜福利在线播放 | 欧美性生交xxxxx久久久 | 国产偷国产偷精品高清尤物 | 成人精品视频一区二区 | 精品久久久无码中文字幕 | 久久综合久久自在自线精品自 | 亚洲综合精品香蕉久久网 | 亚洲 欧美 激情 小说 另类 | 国产sm调教视频在线观看 | 亚洲国产精品无码久久久久高潮 | 国精产品一品二品国精品69xx | 国产乱人伦偷精品视频 | 美女扒开屁股让男人桶 | 精品亚洲韩国一区二区三区 | 老司机亚洲精品影院无码 | 日本一本二本三区免费 | 人妻插b视频一区二区三区 | 伦伦影院午夜理论片 | 久久天天躁夜夜躁狠狠 | 国产午夜精品一区二区三区嫩草 | 亚洲熟妇自偷自拍另类 | 强辱丰满人妻hd中文字幕 | 六十路熟妇乱子伦 | 久久亚洲中文字幕无码 | 97人妻精品一区二区三区 | 精品一二三区久久aaa片 | av无码久久久久不卡免费网站 | 熟妇激情内射com | 澳门永久av免费网站 | 亚洲熟熟妇xxxx | 一本久久a久久精品亚洲 | 精品欧美一区二区三区久久久 | 漂亮人妻洗澡被公强 日日躁 | 中文字幕日产无线码一区 | 粗大的内捧猛烈进出视频 | 日本熟妇大屁股人妻 | 正在播放老肥熟妇露脸 | 丝袜人妻一区二区三区 | 久久天天躁夜夜躁狠狠 | 一本色道久久综合狠狠躁 | 日韩少妇白浆无码系列 | 久久久av男人的天堂 | 久久精品国产大片免费观看 | 中文字幕无码日韩专区 | 日本一区二区三区免费高清 | 国产情侣作爱视频免费观看 | 伊人色综合久久天天小片 | 国产又爽又猛又粗的视频a片 | 无套内谢老熟女 | 伊人色综合久久天天小片 | 玩弄少妇高潮ⅹxxxyw | 国产亚洲美女精品久久久2020 | 一本久久a久久精品亚洲 | 黑人巨大精品欧美一区二区 | а天堂中文在线官网 | 人妻少妇精品无码专区二区 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 久久www免费人成人片 | 成在人线av无码免费 | 国语自产偷拍精品视频偷 | 国产97人人超碰caoprom | 天干天干啦夜天干天2017 | 亚洲の无码国产の无码影院 | 亚洲一区二区三区偷拍女厕 | 人妻少妇精品视频专区 | 亚洲综合另类小说色区 | 荫蒂被男人添的好舒服爽免费视频 | 久久成人a毛片免费观看网站 | 性色av无码免费一区二区三区 | 免费人成网站视频在线观看 | 国产农村乱对白刺激视频 | 久久久久久久人妻无码中文字幕爆 | 狠狠色色综合网站 | 中文字幕人妻无码一区二区三区 | 色婷婷av一区二区三区之红樱桃 | 精品无码成人片一区二区98 | 精品欧洲av无码一区二区三区 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 日本www一道久久久免费榴莲 | 一本精品99久久精品77 | 18精品久久久无码午夜福利 | 日本一区二区更新不卡 | 国产精品久久久久久久影院 | 美女张开腿让人桶 | 色婷婷av一区二区三区之红樱桃 | 日韩av无码中文无码电影 | 初尝人妻少妇中文字幕 | 九一九色国产 | 丰满人妻翻云覆雨呻吟视频 | 乱码av麻豆丝袜熟女系列 | 亚洲欧美日韩国产精品一区二区 | 国产成人无码a区在线观看视频app | 鲁一鲁av2019在线 | 日本一卡二卡不卡视频查询 | 国产成人一区二区三区别 | 久久久久免费看成人影片 | 少妇被粗大的猛进出69影院 | 久久久久99精品国产片 | 国产精品第一国产精品 | 午夜福利不卡在线视频 | 狠狠躁日日躁夜夜躁2020 | 精品久久久无码人妻字幂 | 大肉大捧一进一出好爽视频 | 国产亚洲人成在线播放 | 亚洲国产精品美女久久久久 | 日本熟妇乱子伦xxxx | 国产欧美精品一区二区三区 | 国产人成高清在线视频99最全资源 | 秋霞成人午夜鲁丝一区二区三区 | 亚洲欧美日韩成人高清在线一区 | 99久久久国产精品无码免费 | 欧美xxxxx精品 | 日本xxxx色视频在线观看免费 | 国产人妖乱国产精品人妖 | 亚洲爆乳无码专区 | 内射白嫩少妇超碰 | 国产精品无码mv在线观看 | 初尝人妻少妇中文字幕 | 国产一精品一av一免费 | 亚洲狠狠婷婷综合久久 | 国产口爆吞精在线视频 | 亚洲国产成人a精品不卡在线 | 一个人免费观看的www视频 | 亚洲精品久久久久久久久久久 | 免费无码一区二区三区蜜桃大 | 久9re热视频这里只有精品 | 中文字幕+乱码+中文字幕一区 | 日日躁夜夜躁狠狠躁 | 人妻体内射精一区二区三四 | 国产激情精品一区二区三区 | 无码任你躁久久久久久久 | 色一情一乱一伦一区二区三欧美 | 97久久精品无码一区二区 | 亚洲中文字幕无码中文字在线 | 中文字幕色婷婷在线视频 | 色 综合 欧美 亚洲 国产 | 成人无码视频免费播放 | 欧美xxxxx精品 | 久久www免费人成人片 | 亚洲无人区午夜福利码高清完整版 | 欧美激情内射喷水高潮 | 日本高清一区免费中文视频 | 国产无套粉嫩白浆在线 | 国产婷婷色一区二区三区在线 | 亚洲小说春色综合另类 | 中文亚洲成a人片在线观看 | 精品欧洲av无码一区二区三区 | 在线成人www免费观看视频 | 高潮喷水的毛片 | 中文字幕无码乱人伦 | 亚洲精品国产精品乱码视色 | 久久久久成人精品免费播放动漫 | 无码人妻av免费一区二区三区 | 四十如虎的丰满熟妇啪啪 | 国产午夜亚洲精品不卡下载 | 西西人体www44rt大胆高清 | 色婷婷综合中文久久一本 | 欧美 日韩 人妻 高清 中文 | 内射老妇bbwx0c0ck | 国产在线一区二区三区四区五区 | 好爽又高潮了毛片免费下载 | 亚洲一区二区三区 | 无码国产乱人伦偷精品视频 | 男女作爱免费网站 | 131美女爱做视频 | www国产亚洲精品久久久日本 | 扒开双腿吃奶呻吟做受视频 | 熟女少妇在线视频播放 | 国产两女互慰高潮视频在线观看 | 青草青草久热国产精品 | 国内综合精品午夜久久资源 | 又湿又紧又大又爽a视频国产 | аⅴ资源天堂资源库在线 | 成人毛片一区二区 | 精品无码av一区二区三区 | 丰满少妇女裸体bbw | 亚洲伊人久久精品影院 | 欧美熟妇另类久久久久久多毛 | 国产精品资源一区二区 | 成人aaa片一区国产精品 | 久久天天躁夜夜躁狠狠 | 国产精品人妻一区二区三区四 | 国产亚洲精品久久久闺蜜 | 男人扒开女人内裤强吻桶进去 | 精品久久8x国产免费观看 | 一本久久伊人热热精品中文字幕 | 亚洲日韩一区二区三区 | 天天爽夜夜爽夜夜爽 | 国精品人妻无码一区二区三区蜜柚 | 久精品国产欧美亚洲色aⅴ大片 | 色欲综合久久中文字幕网 | 亚洲色大成网站www | 国产精品资源一区二区 | 少妇人妻大乳在线视频 | 亚洲欧美日韩成人高清在线一区 | 性色欲网站人妻丰满中文久久不卡 | 国产精品嫩草久久久久 | 国产suv精品一区二区五 | 亚洲gv猛男gv无码男同 | 成人欧美一区二区三区 | 好男人社区资源 | 午夜免费福利小电影 | 国产成人一区二区三区别 | 伊人久久婷婷五月综合97色 | 水蜜桃亚洲一二三四在线 | 日本乱人伦片中文三区 | 97精品人妻一区二区三区香蕉 | 亚洲成av人片在线观看无码不卡 | 秋霞成人午夜鲁丝一区二区三区 | 亚洲一区av无码专区在线观看 | 国产精品美女久久久网av | 亚洲va中文字幕无码久久不卡 | ass日本丰满熟妇pics | 日本精品少妇一区二区三区 | 国产免费无码一区二区视频 | 大肉大捧一进一出视频出来呀 | 免费看男女做好爽好硬视频 | 国产三级久久久精品麻豆三级 | 久久人人97超碰a片精品 | 久久久精品成人免费观看 | 免费无码av一区二区 | 婷婷丁香五月天综合东京热 | 99国产欧美久久久精品 | 99视频精品全部免费免费观看 | 少妇无码av无码专区在线观看 | 狠狠亚洲超碰狼人久久 | 亚洲精品一区三区三区在线观看 | 沈阳熟女露脸对白视频 | 亚洲精品无码国产 | 国产亚洲精品久久久ai换 | 一本大道久久东京热无码av | 牲欲强的熟妇农村老妇女视频 | 日产精品高潮呻吟av久久 | 国产97色在线 | 免 | 67194成是人免费无码 | 久久久久成人片免费观看蜜芽 | 久久国产劲爆∧v内射 | 最新国产乱人伦偷精品免费网站 | 牛和人交xxxx欧美 | 国产偷自视频区视频 | 亚洲精品午夜无码电影网 | 最近中文2019字幕第二页 | 亚洲国产欧美日韩精品一区二区三区 | 午夜福利试看120秒体验区 | 亚洲色www成人永久网址 | 国产精品视频免费播放 | 精品国产福利一区二区 | 一本久道久久综合婷婷五月 | 国产精品怡红院永久免费 | 激情爆乳一区二区三区 | 沈阳熟女露脸对白视频 | 漂亮人妻洗澡被公强 日日躁 | 在线精品国产一区二区三区 | 亚洲综合色区中文字幕 | 国产麻豆精品精东影业av网站 | 国产明星裸体无码xxxx视频 | 日本丰满熟妇videos | 久久综合九色综合97网 | 亚洲色大成网站www国产 | 亚洲国产精品一区二区美利坚 | 欧美野外疯狂做受xxxx高潮 | 成人性做爰aaa片免费看 | 日本精品久久久久中文字幕 | 俺去俺来也www色官网 | 国产三级久久久精品麻豆三级 | 成人无码视频在线观看网站 | 给我免费的视频在线观看 | 精品欧洲av无码一区二区三区 | 国精产品一品二品国精品69xx | 午夜福利试看120秒体验区 | 中文字幕乱码人妻二区三区 | 97精品人妻一区二区三区香蕉 | 正在播放东北夫妻内射 | 无码人妻少妇伦在线电影 | 久久精品女人天堂av免费观看 | 国内精品人妻无码久久久影院蜜桃 | 中文字幕无线码免费人妻 | 亚洲高清偷拍一区二区三区 | 久久综合激激的五月天 | 欧美freesex黑人又粗又大 | 国产农村乱对白刺激视频 | 日本熟妇乱子伦xxxx | 一区二区三区高清视频一 | 日韩视频 中文字幕 视频一区 | 国产真实伦对白全集 | 亚洲人亚洲人成电影网站色 | 性色欲网站人妻丰满中文久久不卡 | 99精品国产综合久久久久五月天 | 国产三级精品三级男人的天堂 | 国产无套内射久久久国产 | 亚洲人成网站色7799 | 免费无码一区二区三区蜜桃大 | 暴力强奷在线播放无码 | 大屁股大乳丰满人妻 | 精品国产一区二区三区四区 | 乌克兰少妇性做爰 | aa片在线观看视频在线播放 | 精品国偷自产在线 | 亚洲熟妇色xxxxx亚洲 | 老太婆性杂交欧美肥老太 | 中文字幕日韩精品一区二区三区 | 亚洲色欲色欲欲www在线 | 婷婷色婷婷开心五月四房播播 | 人人妻人人澡人人爽欧美精品 | 亚洲 a v无 码免 费 成 人 a v | 老司机亚洲精品影院 | 成熟人妻av无码专区 | 国产高清不卡无码视频 | 亚洲欧美精品伊人久久 | 精品少妇爆乳无码av无码专区 | 露脸叫床粗话东北少妇 | 精品国产av色一区二区深夜久久 | 久久无码人妻影院 | 色综合久久久无码中文字幕 | 国产成人无码一二三区视频 | 欧美丰满熟妇xxxx | 激情五月综合色婷婷一区二区 | 亚洲大尺度无码无码专区 | 欧洲极品少妇 | 大乳丰满人妻中文字幕日本 | 少妇无码一区二区二三区 | 精品无人国产偷自产在线 | 久久综合给久久狠狠97色 | 日本精品少妇一区二区三区 | 东京一本一道一二三区 | 亚洲 日韩 欧美 成人 在线观看 | 亚洲国产精华液网站w | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 中文字幕乱码亚洲无线三区 | 亚洲の无码国产の无码影院 | 少妇愉情理伦片bd | 亚洲第一网站男人都懂 | 国产精品办公室沙发 | 国产激情一区二区三区 | 丰满人妻翻云覆雨呻吟视频 | 国产熟妇高潮叫床视频播放 | 国产精品18久久久久久麻辣 | 亚洲啪av永久无码精品放毛片 | 亚洲精品国产品国语在线观看 | 国模大胆一区二区三区 | 午夜免费福利小电影 | 中文字幕 人妻熟女 | 高清无码午夜福利视频 | 精品久久久无码中文字幕 | 色欲久久久天天天综合网精品 | 日本成熟视频免费视频 | 蜜桃臀无码内射一区二区三区 | 日日碰狠狠丁香久燥 | 久久国产精品精品国产色婷婷 | 又紧又大又爽精品一区二区 | 亚洲精品国产精品乱码不卡 | 少妇无码吹潮 | 久久99精品国产.久久久久 | 一个人免费观看的www视频 | 成人精品一区二区三区中文字幕 | 亚洲精品久久久久久久久久久 | 欧美肥老太牲交大战 | 国产精品久久久久久亚洲影视内衣 | 国产猛烈高潮尖叫视频免费 | 精品国产青草久久久久福利 | 人妻无码αv中文字幕久久琪琪布 | 亚洲日韩乱码中文无码蜜桃臀网站 | 欧美丰满少妇xxxx性 | 少妇被黑人到高潮喷出白浆 | 国产xxx69麻豆国语对白 | 国产97在线 | 亚洲 | 色婷婷综合激情综在线播放 | 国产真人无遮挡作爱免费视频 | 国产又粗又硬又大爽黄老大爷视 | 久久亚洲a片com人成 | 欧美精品免费观看二区 | 日本大香伊一区二区三区 | 久久久久免费看成人影片 | 亚洲中文字幕无码中文字在线 | 初尝人妻少妇中文字幕 | 四虎4hu永久免费 | 丝袜美腿亚洲一区二区 | 乌克兰少妇xxxx做受 | 色欲人妻aaaaaaa无码 | 任你躁在线精品免费 | 偷窥村妇洗澡毛毛多 | 乱中年女人伦av三区 | 色偷偷人人澡人人爽人人模 | 四十如虎的丰满熟妇啪啪 | 成 人影片 免费观看 | 久久午夜夜伦鲁鲁片无码免费 | 亚洲阿v天堂在线 | 99精品国产综合久久久久五月天 | 午夜成人1000部免费视频 | 牲交欧美兽交欧美 | 国产区女主播在线观看 | 午夜无码人妻av大片色欲 | 内射后入在线观看一区 | 国产一区二区三区四区五区加勒比 | 亚洲日本在线电影 | 天堂无码人妻精品一区二区三区 | 亚洲日韩一区二区三区 | 成人欧美一区二区三区黑人免费 | 一本大道伊人av久久综合 | 在线a亚洲视频播放在线观看 | 久久久久免费精品国产 | 人人妻人人澡人人爽欧美一区九九 | 鲁鲁鲁爽爽爽在线视频观看 | 亚洲精品国产a久久久久久 | 免费无码肉片在线观看 | 欧美一区二区三区视频在线观看 | 久久精品无码一区二区三区 | 亚洲人成影院在线无码按摩店 | 人人妻人人藻人人爽欧美一区 | 岛国片人妻三上悠亚 | 永久免费观看美女裸体的网站 | 伊人久久婷婷五月综合97色 | 亚洲精品www久久久 | 精品无人国产偷自产在线 | 欧美亚洲国产一区二区三区 | 99精品视频在线观看免费 | 未满小14洗澡无码视频网站 | 成人精品视频一区二区三区尤物 | 午夜肉伦伦影院 | 精品国产麻豆免费人成网站 | 熟妇人妻中文av无码 | 国产成人无码午夜视频在线观看 | 免费观看又污又黄的网站 | 久久伊人色av天堂九九小黄鸭 | 国产精品丝袜黑色高跟鞋 | 300部国产真实乱 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 亚洲乱码国产乱码精品精 | 亚洲精品一区二区三区在线观看 | 白嫩日本少妇做爰 | 亚洲中文字幕va福利 | 色婷婷欧美在线播放内射 | 一个人看的视频www在线 | 国产精品无码一区二区桃花视频 | 综合人妻久久一区二区精品 | 亚洲爆乳精品无码一区二区三区 | 亚洲一区av无码专区在线观看 | 亚洲精品国偷拍自产在线麻豆 | 欧美三级不卡在线观看 | 国产免费久久精品国产传媒 | 性生交大片免费看l | 成熟女人特级毛片www免费 | 中文字幕无线码 | 九九在线中文字幕无码 | 99久久久无码国产精品免费 | 西西人体www44rt大胆高清 | 俄罗斯老熟妇色xxxx | 日日碰狠狠躁久久躁蜜桃 | 国产偷自视频区视频 | 亚无码乱人伦一区二区 | 亚洲国产成人a精品不卡在线 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产小呦泬泬99精品 | 中文字幕无线码 | 亚洲七七久久桃花影院 | 久久亚洲中文字幕精品一区 | 乱人伦中文视频在线观看 | 乱码午夜-极国产极内射 | 国产精品a成v人在线播放 | 国产亚洲精品久久久闺蜜 | 久久精品人妻少妇一区二区三区 | 久久zyz资源站无码中文动漫 | 亚洲色www成人永久网址 | 国产精品美女久久久 | 少妇的肉体aa片免费 | 国产精品无码久久av | 精品国产一区二区三区av 性色 | 精品厕所偷拍各类美女tp嘘嘘 | 在教室伦流澡到高潮hnp视频 | 欧美性生交xxxxx久久久 | 中文字幕av日韩精品一区二区 | 男人扒开女人内裤强吻桶进去 | 亚洲日韩一区二区三区 | 日产国产精品亚洲系列 | 亚洲爆乳精品无码一区二区三区 | 最近免费中文字幕中文高清百度 | 亚洲中文字幕在线观看 | 国产精品久久久久9999小说 | 国产精品二区一区二区aⅴ污介绍 | 狠狠亚洲超碰狼人久久 | 国産精品久久久久久久 | 人人妻人人澡人人爽欧美精品 | 亚洲一区二区观看播放 | 久久这里只有精品视频9 | 国产精品久久久久无码av色戒 | 一个人免费观看的www视频 | av无码电影一区二区三区 | 人人妻人人澡人人爽欧美一区九九 | 国产婷婷色一区二区三区在线 | 99麻豆久久久国产精品免费 | 婷婷色婷婷开心五月四房播播 | 97精品人妻一区二区三区香蕉 | 丝袜 中出 制服 人妻 美腿 | 久久国内精品自在自线 | 精品厕所偷拍各类美女tp嘘嘘 | 人妻熟女一区 | 亚洲成色在线综合网站 | 麻豆md0077饥渴少妇 | 久久人人爽人人人人片 | 亚拍精品一区二区三区探花 | 在教室伦流澡到高潮hnp视频 | 55夜色66夜色国产精品视频 | 久久国内精品自在自线 | 国产精品无码mv在线观看 | 成年美女黄网站色大免费全看 | 久久国语露脸国产精品电影 | 精品人人妻人人澡人人爽人人 | 欧美丰满熟妇xxxx | 国产成人精品必看 | 久久精品成人欧美大片 | 国产精品99久久精品爆乳 | 亚洲一区二区三区含羞草 | 亚洲精品无码人妻无码 | 最新国产麻豆aⅴ精品无码 | 午夜熟女插插xx免费视频 | 国产av一区二区精品久久凹凸 | 免费无码肉片在线观看 | 亚洲狠狠色丁香婷婷综合 | 少妇被粗大的猛进出69影院 | 日韩精品a片一区二区三区妖精 | 少妇厨房愉情理9仑片视频 | 中文无码成人免费视频在线观看 | 99久久婷婷国产综合精品青草免费 | 天天爽夜夜爽夜夜爽 | 国产肉丝袜在线观看 | 国内精品人妻无码久久久影院蜜桃 | 成人综合网亚洲伊人 | 色婷婷欧美在线播放内射 | 18无码粉嫩小泬无套在线观看 | 免费国产黄网站在线观看 | 伊在人天堂亚洲香蕉精品区 | 国产精品第一国产精品 | 欧美丰满少妇xxxx性 | 久久国产36精品色熟妇 | 55夜色66夜色国产精品视频 | 国产在热线精品视频 | 麻豆成人精品国产免费 | 色婷婷综合激情综在线播放 | 少妇人妻偷人精品无码视频 | 国产又粗又硬又大爽黄老大爷视 | 国产又爽又猛又粗的视频a片 | 欧美亚洲国产一区二区三区 | 国产亲子乱弄免费视频 | 亚洲熟妇色xxxxx欧美老妇y | 亚洲国产成人av在线观看 | 99久久精品日本一区二区免费 | 精品国偷自产在线 | 捆绑白丝粉色jk震动捧喷白浆 | 天天摸天天碰天天添 | 天海翼激烈高潮到腰振不止 | 小泽玛莉亚一区二区视频在线 | 人妻少妇被猛烈进入中文字幕 | 亚洲经典千人经典日产 | 少妇性荡欲午夜性开放视频剧场 | 无套内谢的新婚少妇国语播放 | 国产精品无套呻吟在线 | 亚洲成a人一区二区三区 | 欧美日韩视频无码一区二区三 | 国产精品亚洲lv粉色 | 国产高清av在线播放 | 4hu四虎永久在线观看 | 国产香蕉尹人综合在线观看 | 又黄又爽又色的视频 | 亚洲一区二区观看播放 | 成人片黄网站色大片免费观看 | 国产成人人人97超碰超爽8 | 亚洲高清偷拍一区二区三区 | 日本精品人妻无码免费大全 | a片在线免费观看 | 窝窝午夜理论片影院 | 日本www一道久久久免费榴莲 | 老子影院午夜精品无码 | 国产激情无码一区二区app | 婷婷五月综合激情中文字幕 | 一本色道久久综合狠狠躁 | 国产综合色产在线精品 | 日本一区二区三区免费播放 | 中文字幕日韩精品一区二区三区 | 乱码午夜-极国产极内射 | 熟妇人妻无码xxx视频 | 国产精品人妻一区二区三区四 | 色一情一乱一伦一区二区三欧美 | 丰满人妻被黑人猛烈进入 | 亚洲熟妇色xxxxx欧美老妇y | 国内精品久久毛片一区二区 | 久久久久成人片免费观看蜜芽 | 日韩欧美中文字幕在线三区 | 东北女人啪啪对白 | 一本无码人妻在中文字幕免费 | 国产精品嫩草久久久久 | 成在人线av无码免观看麻豆 | 夜精品a片一区二区三区无码白浆 | 色婷婷久久一区二区三区麻豆 | 国产尤物精品视频 | 日本又色又爽又黄的a片18禁 | 亚洲精品一区二区三区在线 | 国产人妻精品一区二区三区不卡 | 蜜臀av在线播放 久久综合激激的五月天 | 亚洲爆乳精品无码一区二区三区 | 亚洲中文字幕乱码av波多ji | 国精品人妻无码一区二区三区蜜柚 | 激情爆乳一区二区三区 | 精品久久久无码中文字幕 | 红桃av一区二区三区在线无码av | 亚洲人成影院在线无码按摩店 | 国产亚洲精品久久久闺蜜 | 国产亚洲欧美日韩亚洲中文色 | 日日鲁鲁鲁夜夜爽爽狠狠 | 少妇一晚三次一区二区三区 | 精品夜夜澡人妻无码av蜜桃 | 天干天干啦夜天干天2017 | 日本www一道久久久免费榴莲 | 精品一区二区三区波多野结衣 | 亚洲精品一区二区三区四区五区 | 久久精品无码一区二区三区 | 天堂亚洲免费视频 | 国产成人综合在线女婷五月99播放 | а天堂中文在线官网 | 2020久久香蕉国产线看观看 | 国产精品理论片在线观看 | 又粗又大又硬毛片免费看 | 精品人妻中文字幕有码在线 | 丝袜 中出 制服 人妻 美腿 | 久久精品人妻少妇一区二区三区 | 国产无套内射久久久国产 | 老熟妇乱子伦牲交视频 | 激情爆乳一区二区三区 | 全球成人中文在线 | 欧美性猛交内射兽交老熟妇 | 丰满人妻精品国产99aⅴ | 国产尤物精品视频 | 亚洲爆乳无码专区 | 98国产精品综合一区二区三区 | √8天堂资源地址中文在线 | 丰满少妇女裸体bbw | 亚洲爆乳精品无码一区二区三区 | 午夜无码人妻av大片色欲 | 亚洲码国产精品高潮在线 | 日韩av激情在线观看 | 国产农村妇女高潮大叫 | 久久无码中文字幕免费影院蜜桃 | 国产亚洲精品久久久久久久 | 色 综合 欧美 亚洲 国产 | 午夜福利试看120秒体验区 | 国产免费久久精品国产传媒 | 乱人伦人妻中文字幕无码久久网 | 午夜精品久久久内射近拍高清 | 日韩av无码一区二区三区不卡 | 欧美野外疯狂做受xxxx高潮 | 亚洲日本va午夜在线电影 | 亚洲精品一区二区三区四区五区 | 成 人影片 免费观看 | 麻豆国产97在线 | 欧洲 | 中文字幕日韩精品一区二区三区 | 亚洲中文无码av永久不收费 | 欧美喷潮久久久xxxxx | 国产精品18久久久久久麻辣 | 国产一区二区三区四区五区加勒比 | 偷窥日本少妇撒尿chinese | 国产综合在线观看 | 午夜精品一区二区三区在线观看 | 免费播放一区二区三区 | 中文字幕无码日韩欧毛 | 无码纯肉视频在线观看 | 色婷婷av一区二区三区之红樱桃 | 乱人伦人妻中文字幕无码 | 国产精品香蕉在线观看 | 亚洲成a人片在线观看无码3d | 久久99久久99精品中文字幕 | 国产 浪潮av性色四虎 | 久久久久亚洲精品男人的天堂 | 日产国产精品亚洲系列 | 国产精品亚洲综合色区韩国 | 无码av中文字幕免费放 | 天天燥日日燥 | 曰韩无码二三区中文字幕 | 国产午夜福利亚洲第一 | 精品欧美一区二区三区久久久 | 久久精品国产大片免费观看 | 欧美日本精品一区二区三区 | 亚洲国产欧美在线成人 | 精品国精品国产自在久国产87 | aⅴ在线视频男人的天堂 | 国产在线精品一区二区三区直播 | 亚洲国产精品无码一区二区三区 | 国产人妖乱国产精品人妖 | 成人性做爰aaa片免费看 | 亚洲欧美精品aaaaaa片 | 青春草在线视频免费观看 | 国产精品美女久久久久av爽李琼 | 女高中生第一次破苞av | 亚洲无人区一区二区三区 | 2020最新国产自产精品 | 国精品人妻无码一区二区三区蜜柚 | 成在人线av无码免观看麻豆 | 国产sm调教视频在线观看 | 亚洲精品国产精品乱码视色 | 中文无码成人免费视频在线观看 | 四十如虎的丰满熟妇啪啪 | 天天燥日日燥 | 女人和拘做爰正片视频 | 成年女人永久免费看片 | 草草网站影院白丝内射 | 国产三级久久久精品麻豆三级 | 日本乱偷人妻中文字幕 | 少妇无码av无码专区在线观看 | 亚洲人成网站在线播放942 | 国产成人无码午夜视频在线观看 | 99re在线播放 | 精品一区二区不卡无码av | 又色又爽又黄的美女裸体网站 | 久久精品99久久香蕉国产色戒 | 亚洲一区av无码专区在线观看 | 久久国产精品萌白酱免费 | 久久综合九色综合欧美狠狠 | 国产无遮挡又黄又爽又色 | 国产超碰人人爽人人做人人添 | 久久综合香蕉国产蜜臀av | 香蕉久久久久久av成人 | 国产精品第一区揄拍无码 | 国产又爽又猛又粗的视频a片 | 亚洲精品久久久久久久久久久 | 日本精品久久久久中文字幕 | 国产精品久久久久久久9999 | 中文字幕无码日韩欧毛 | 亚洲精品一区国产 | 97夜夜澡人人双人人人喊 | 牲交欧美兽交欧美 | 精品一二三区久久aaa片 | 全球成人中文在线 | 国产欧美亚洲精品a | 亚洲成av人片在线观看无码不卡 | 国产精品内射视频免费 | 国产suv精品一区二区五 | 纯爱无遮挡h肉动漫在线播放 | 99久久99久久免费精品蜜桃 | www一区二区www免费 | 无码人妻精品一区二区三区不卡 | 亚洲精品一区二区三区四区五区 | 色情久久久av熟女人妻网站 | 十八禁真人啪啪免费网站 | 国产无遮挡吃胸膜奶免费看 | 丰满少妇熟乱xxxxx视频 | 欧美精品在线观看 | 全黄性性激高免费视频 | 亚洲中文字幕在线观看 | 丁香花在线影院观看在线播放 | 中文字幕+乱码+中文字幕一区 | 国产色在线 | 国产 | 女高中生第一次破苞av | 麻豆蜜桃av蜜臀av色欲av | 秋霞特色aa大片 | 内射白嫩少妇超碰 | 99久久亚洲精品无码毛片 | 精品亚洲韩国一区二区三区 | 一本一道久久综合久久 | 久久99精品久久久久久动态图 | 午夜精品久久久久久久久 | 扒开双腿疯狂进出爽爽爽视频 | 国产成人无码av片在线观看不卡 | 日韩少妇白浆无码系列 | 在线观看国产一区二区三区 | 久久精品国产99久久6动漫 | 国产乱人伦偷精品视频 | 精品国产国产综合精品 | 99久久精品午夜一区二区 | 帮老师解开蕾丝奶罩吸乳网站 | 成人免费无码大片a毛片 | 青青青爽视频在线观看 | 女人被爽到呻吟gif动态图视看 | 国产亚洲欧美在线专区 | 中文字幕无码av波多野吉衣 | 亚洲性无码av中文字幕 | 国产精品美女久久久久av爽李琼 | 激情内射日本一区二区三区 | 国产综合久久久久鬼色 | 久久综合网欧美色妞网 | 无码帝国www无码专区色综合 | 精品国产一区二区三区四区 | 桃花色综合影院 | 国产性生大片免费观看性 | | 人妻少妇精品无码专区二区 | 成人精品一区二区三区中文字幕 | 婷婷色婷婷开心五月四房播播 | 内射后入在线观看一区 | 亚洲一区二区三区香蕉 | 无码国模国产在线观看 | 国产精品手机免费 | 激情内射日本一区二区三区 | 最近的中文字幕在线看视频 | 久久精品一区二区三区四区 | 国产精品久久久一区二区三区 | 国产做国产爱免费视频 | 亚洲人成网站色7799 | 国产av一区二区精品久久凹凸 | 久久久久久久人妻无码中文字幕爆 | 久久无码人妻影院 | 日本丰满熟妇videos | 日本精品久久久久中文字幕 | 亚洲中文字幕av在天堂 | 精品久久久中文字幕人妻 | 国产免费无码一区二区视频 | 国产xxx69麻豆国语对白 | 在线欧美精品一区二区三区 | 欧美丰满熟妇xxxx性ppx人交 | 色 综合 欧美 亚洲 国产 | 99精品无人区乱码1区2区3区 | 婷婷五月综合激情中文字幕 | 国产亚洲精品久久久闺蜜 | 女人和拘做爰正片视频 | 性做久久久久久久久 | 老司机亚洲精品影院无码 | 国产电影无码午夜在线播放 | 国产精品久久久久9999小说 | 亚洲色无码一区二区三区 | 在线欧美精品一区二区三区 | 国产婷婷色一区二区三区在线 | 成人无码视频在线观看网站 | 国产真人无遮挡作爱免费视频 | 天天拍夜夜添久久精品大 | 日本在线高清不卡免费播放 | 亚洲欧美精品伊人久久 | 国产精品亚洲专区无码不卡 | 中文字幕av无码一区二区三区电影 | 久久人人爽人人爽人人片av高清 | 国产手机在线αⅴ片无码观看 | 国产成人av免费观看 | 日韩少妇白浆无码系列 | 俄罗斯老熟妇色xxxx | 亚洲一区二区观看播放 | 日韩人妻系列无码专区 | 色欲久久久天天天综合网精品 | 日本精品少妇一区二区三区 | 欧美性生交活xxxxxdddd | 午夜精品久久久久久久 | 中文字幕av无码一区二区三区电影 | 无码国内精品人妻少妇 | 国精产品一区二区三区 | 欧美老熟妇乱xxxxx | 夜夜影院未满十八勿进 | 少妇愉情理伦片bd | 少妇性l交大片欧洲热妇乱xxx | 无码av中文字幕免费放 | 中文字幕无码av波多野吉衣 | 妺妺窝人体色www婷婷 | 又大又硬又黄的免费视频 | 九月婷婷人人澡人人添人人爽 | 日本一本二本三区免费 | 亚洲乱码日产精品bd | 少妇性l交大片 | 亚洲人成无码网www | 天天躁夜夜躁狠狠是什么心态 | 成熟人妻av无码专区 | 亚洲精品久久久久久一区二区 | 无码一区二区三区在线观看 | 国产偷抇久久精品a片69 | 国产乱码精品一品二品 | 日本www一道久久久免费榴莲 | 国产麻豆精品精东影业av网站 | 日韩av无码一区二区三区不卡 | 日本一区二区三区免费播放 | 国产精品人人爽人人做我的可爱 | 色婷婷欧美在线播放内射 | 亚洲欧美日韩成人高清在线一区 | 国产精品办公室沙发 | 女人被男人爽到呻吟的视频 | 亚洲无人区午夜福利码高清完整版 | 国产精品无码永久免费888 | 露脸叫床粗话东北少妇 | 欧美一区二区三区视频在线观看 | 国产亚洲精品久久久久久国模美 | 99久久精品国产一区二区蜜芽 | 欧洲极品少妇 | 欧美丰满老熟妇xxxxx性 | 一区二区传媒有限公司 | 一本色道久久综合亚洲精品不卡 | 18精品久久久无码午夜福利 | 欧美zoozzooz性欧美 | 欧美兽交xxxx×视频 | 2020久久香蕉国产线看观看 | 99er热精品视频 | 无码帝国www无码专区色综合 | 亚洲狠狠婷婷综合久久 | 国产区女主播在线观看 | а天堂中文在线官网 | 亚洲一区二区三区国产精华液 | 欧美 日韩 亚洲 在线 | 国产免费久久精品国产传媒 | 久久aⅴ免费观看 | 在线 国产 欧美 亚洲 天堂 | 2019nv天堂香蕉在线观看 | 西西人体www44rt大胆高清 | 人人澡人人妻人人爽人人蜜桃 | 永久免费观看美女裸体的网站 | 99久久人妻精品免费二区 | 天天躁日日躁狠狠躁免费麻豆 | 东京热无码av男人的天堂 | 久久99国产综合精品 | 亚拍精品一区二区三区探花 | 狠狠色噜噜狠狠狠7777奇米 | 亚洲国产精品无码久久久久高潮 | 国产熟女一区二区三区四区五区 | www国产亚洲精品久久久日本 | 国产高清不卡无码视频 | 亚洲中文字幕在线无码一区二区 | 亚洲gv猛男gv无码男同 | 日韩精品a片一区二区三区妖精 | 老熟妇乱子伦牲交视频 | 正在播放老肥熟妇露脸 | 国产麻豆精品精东影业av网站 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 久久久精品国产sm最大网站 | 国产精品99爱免费视频 | 国产av一区二区三区最新精品 | 免费看少妇作爱视频 | 一个人看的www免费视频在线观看 | 波多野结衣高清一区二区三区 | 无码福利日韩神码福利片 | 在线精品国产一区二区三区 | 欧美日本精品一区二区三区 | 少妇无码吹潮 | 人妻中文无码久热丝袜 | 老子影院午夜精品无码 | 成人一在线视频日韩国产 | 国产精品沙发午睡系列 | 人人爽人人澡人人人妻 | 国产综合久久久久鬼色 | 99久久久国产精品无码免费 | 黑人粗大猛烈进出高潮视频 | 色五月丁香五月综合五月 | 亚洲一区二区三区四区 | 亚洲精品久久久久中文第一幕 | 粗大的内捧猛烈进出视频 | 国产一区二区三区日韩精品 | 大乳丰满人妻中文字幕日本 | 天天摸天天碰天天添 | 亚洲呦女专区 | 天堂亚洲免费视频 | 国内揄拍国内精品人妻 | 日本护士xxxxhd少妇 | 国产电影无码午夜在线播放 | 成人亚洲精品久久久久软件 | 亚洲成在人网站无码天堂 | 免费视频欧美无人区码 | 蜜桃臀无码内射一区二区三区 | 99久久精品国产一区二区蜜芽 | 在线播放无码字幕亚洲 | 国产明星裸体无码xxxx视频 | 国产精品人人爽人人做我的可爱 | 少妇人妻大乳在线视频 | 99久久人妻精品免费一区 | 水蜜桃色314在线观看 | 亚洲另类伦春色综合小说 | 领导边摸边吃奶边做爽在线观看 | 中文字幕人妻无码一区二区三区 | 露脸叫床粗话东北少妇 | 两性色午夜免费视频 | 亚洲日韩中文字幕在线播放 | 亚洲中文无码av永久不收费 | 亚洲欧美日韩国产精品一区二区 | 97久久精品无码一区二区 | 乌克兰少妇性做爰 | 国内精品一区二区三区不卡 | 西西人体www44rt大胆高清 | 国产一区二区三区精品视频 | 日欧一片内射va在线影院 | 一本大道伊人av久久综合 | 久久精品一区二区三区四区 | 天天躁日日躁狠狠躁免费麻豆 | 我要看www免费看插插视频 | 亚洲第一网站男人都懂 | 四虎4hu永久免费 | 国产激情综合五月久久 | 亚洲欧美国产精品专区久久 | 国产成人久久精品流白浆 | 人妻人人添人妻人人爱 | 久久99精品久久久久婷婷 | 99精品国产综合久久久久五月天 | 51国偷自产一区二区三区 | 未满小14洗澡无码视频网站 | 内射白嫩少妇超碰 | 亚洲精品美女久久久久久久 | 日本精品人妻无码77777 天堂一区人妻无码 | 国产成人无码a区在线观看视频app | 无码纯肉视频在线观看 | 99久久久国产精品无码免费 | 国产精品久久国产三级国 | 波多野结衣高清一区二区三区 | 亚洲の无码国产の无码影院 | 久久久www成人免费毛片 | 无码帝国www无码专区色综合 | 青青青爽视频在线观看 | 全球成人中文在线 | 欧美国产亚洲日韩在线二区 | 久久人人97超碰a片精品 | 四虎影视成人永久免费观看视频 | www一区二区www免费 | 国模大胆一区二区三区 | 日日天日日夜日日摸 | 蜜桃臀无码内射一区二区三区 | 97夜夜澡人人爽人人喊中国片 | 鲁鲁鲁爽爽爽在线视频观看 | 思思久久99热只有频精品66 | 日产精品高潮呻吟av久久 | 欧美老熟妇乱xxxxx | 98国产精品综合一区二区三区 | 一本色道久久综合狠狠躁 | 亚洲国产精品久久人人爱 | 亚洲欧美国产精品专区久久 | 东京无码熟妇人妻av在线网址 | 国产av无码专区亚洲awww | 精品人妻av区 | 强开小婷嫩苞又嫩又紧视频 | 一二三四在线观看免费视频 | 日本www一道久久久免费榴莲 | 精品aⅴ一区二区三区 | 亚洲a无码综合a国产av中文 | 亚拍精品一区二区三区探花 | 无码中文字幕色专区 | www国产亚洲精品久久久日本 | 国产精品99爱免费视频 | 丝袜 中出 制服 人妻 美腿 | 天天做天天爱天天爽综合网 | 久久精品国产一区二区三区 | 人妻体内射精一区二区三四 | 亚洲 a v无 码免 费 成 人 a v | 国产成人无码午夜视频在线观看 | 日韩精品无码一区二区中文字幕 | 中文字幕av无码一区二区三区电影 | 丝袜足控一区二区三区 | 中文字幕人妻无码一夲道 | 黑人巨大精品欧美黑寡妇 | 国产特级毛片aaaaaa高潮流水 | 日本精品久久久久中文字幕 | 76少妇精品导航 | 熟女少妇在线视频播放 | 国产精品高潮呻吟av久久4虎 | 人妻体内射精一区二区三四 | 无码一区二区三区在线观看 | 久久国产精品二国产精品 | 国产精品久久久久久亚洲毛片 | 久久zyz资源站无码中文动漫 | 国产热a欧美热a在线视频 | 欧美日韩人成综合在线播放 | 欧美35页视频在线观看 | 免费人成网站视频在线观看 | 18禁止看的免费污网站 | 欧美日韩色另类综合 | 亚洲成av人片在线观看无码不卡 | 久久久久se色偷偷亚洲精品av | 日韩欧美中文字幕在线三区 | 成人无码视频在线观看网站 | 鲁鲁鲁爽爽爽在线视频观看 | 麻豆果冻传媒2021精品传媒一区下载 | 高潮毛片无遮挡高清免费 | 偷窥日本少妇撒尿chinese | 玩弄人妻少妇500系列视频 | 欧美性生交活xxxxxdddd | 色五月五月丁香亚洲综合网 | 粗大的内捧猛烈进出视频 | 成人影院yy111111在线观看 | 国产无套内射久久久国产 | 中文毛片无遮挡高清免费 | 久久久久se色偷偷亚洲精品av | 国产精品亚洲lv粉色 | 日韩av无码一区二区三区 | 久久亚洲精品成人无码 | 久在线观看福利视频 | 午夜无码区在线观看 | 玩弄少妇高潮ⅹxxxyw | 性生交片免费无码看人 | 无码人妻av免费一区二区三区 | 亚洲爆乳无码专区 | 丁香啪啪综合成人亚洲 | 国内老熟妇对白xxxxhd | 男人扒开女人内裤强吻桶进去 | 精品少妇爆乳无码av无码专区 | www国产精品内射老师 | 377p欧洲日本亚洲大胆 | 欧美日本精品一区二区三区 | 久久久久久亚洲精品a片成人 | 特黄特色大片免费播放器图片 | 欧美性生交活xxxxxdddd | 国产激情精品一区二区三区 | 精品夜夜澡人妻无码av蜜桃 | a国产一区二区免费入口 | 99久久99久久免费精品蜜桃 | 国产精品人人爽人人做我的可爱 | 在线播放无码字幕亚洲 | 伊人久久大香线焦av综合影院 | 久久久久久国产精品无码下载 | 精品无码av一区二区三区 | av无码电影一区二区三区 | 国产另类ts人妖一区二区 | 国产在线一区二区三区四区五区 | 国产精品久久久久久亚洲影视内衣 | 中文字幕无码日韩专区 | 国产精品亚洲lv粉色 | 欧美老妇与禽交 | 特级做a爰片毛片免费69 | 精品国产成人一区二区三区 | 亚洲人亚洲人成电影网站色 | 动漫av一区二区在线观看 | 夜精品a片一区二区三区无码白浆 | 亚洲天堂2017无码 | 少妇一晚三次一区二区三区 | 一本色道久久综合狠狠躁 | 久久成人a毛片免费观看网站 | 丁香啪啪综合成人亚洲 | av人摸人人人澡人人超碰下载 | 熟女俱乐部五十路六十路av | 久久久久久久女国产乱让韩 | 国产熟女一区二区三区四区五区 | 亚洲日本va中文字幕 | 国产免费观看黄av片 | 欧美亚洲日韩国产人成在线播放 | 自拍偷自拍亚洲精品被多人伦好爽 | 国产精品久久久久久久影院 | 超碰97人人射妻 | 亚洲成av人片在线观看无码不卡 | 欧美三级不卡在线观看 | 亚洲精品国产精品乱码视色 | 亚洲国产精品久久久久久 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 精品久久久无码中文字幕 | 日本一区二区三区免费高清 | 午夜精品一区二区三区的区别 | 十八禁视频网站在线观看 | 一本久久a久久精品亚洲 | 好男人社区资源 | 国产亚洲精品久久久久久久 | 国产精品自产拍在线观看 | 日本护士xxxxhd少妇 | 在教室伦流澡到高潮hnp视频 | 中文字幕精品av一区二区五区 | 久久综合九色综合97网 | 老头边吃奶边弄进去呻吟 | 久在线观看福利视频 | 免费国产黄网站在线观看 | 中国女人内谢69xxxx | 国产三级精品三级男人的天堂 | 色欲综合久久中文字幕网 | 人妻中文无码久热丝袜 | 国产亚洲欧美日韩亚洲中文色 | 亚洲中文无码av永久不收费 | 1000部啪啪未满十八勿入下载 | 少妇邻居内射在线 | 无码国产色欲xxxxx视频 | 亚洲第一无码av无码专区 | 牲交欧美兽交欧美 | 国产成人无码av片在线观看不卡 | 日韩av无码一区二区三区不卡 | 精品国产麻豆免费人成网站 | 精品国产av色一区二区深夜久久 | 牲欲强的熟妇农村老妇女 | 日本饥渴人妻欲求不满 | 男人和女人高潮免费网站 | 日本免费一区二区三区最新 | 图片区 小说区 区 亚洲五月 | 中文字幕无码免费久久9一区9 | 亚洲欧美日韩国产精品一区二区 | 国产综合色产在线精品 | 亚洲日韩乱码中文无码蜜桃臀网站 | 性生交片免费无码看人 | 亚洲日韩av一区二区三区四区 | 国产真人无遮挡作爱免费视频 | 国产精品久久久一区二区三区 | 欧洲vodafone精品性 | 国产成人精品优优av | 国产内射老熟女aaaa | 亚洲欧洲中文日韩av乱码 | 黄网在线观看免费网站 | 一本无码人妻在中文字幕免费 | 欧美性色19p | 久久精品中文字幕一区 | 国产免费观看黄av片 | 夜夜高潮次次欢爽av女 | 丰满少妇弄高潮了www | 精品一区二区三区波多野结衣 | 欧美xxxxx精品 | 国精品人妻无码一区二区三区蜜柚 | 中文字幕无码人妻少妇免费 | 国产av人人夜夜澡人人爽麻豆 | 国产精品手机免费 | 又粗又大又硬又长又爽 | 国产精品国产三级国产专播 | 色综合久久88色综合天天 | 亚洲乱码中文字幕在线 | 精品国产精品久久一区免费式 | 人人妻人人澡人人爽欧美精品 | 国产一区二区不卡老阿姨 | 夜夜高潮次次欢爽av女 | 日本丰满护士爆乳xxxx | 欧美熟妇另类久久久久久多毛 | 久久久久成人片免费观看蜜芽 | 熟妇人妻无乱码中文字幕 | 国产亚洲精品久久久闺蜜 | 日本熟妇人妻xxxxx人hd | 国产舌乚八伦偷品w中 | 亚洲精品国产品国语在线观看 | 精品乱码久久久久久久 | 亚洲日韩中文字幕在线播放 | 国产成人无码a区在线观看视频app | 国产一区二区三区日韩精品 | 日韩亚洲欧美中文高清在线 | 18黄暴禁片在线观看 | 在线观看国产午夜福利片 | 久久国产精品精品国产色婷婷 | 亚洲色欲久久久综合网东京热 | 无码av中文字幕免费放 | 在线精品国产一区二区三区 | 少妇性俱乐部纵欲狂欢电影 | 亚洲日韩av一区二区三区中文 | 久久久久亚洲精品中文字幕 | 精品国产一区二区三区av 性色 | 久久aⅴ免费观看 | 亚洲一区二区三区含羞草 | 中文字幕乱码人妻无码久久 | 亚洲va中文字幕无码久久不卡 | 大地资源中文第3页 | 少妇激情av一区二区 | 国产人妻精品一区二区三区不卡 | 性色欲情网站iwww九文堂 | 性史性农村dvd毛片 | 天海翼激烈高潮到腰振不止 | 性开放的女人aaa片 | 亚洲 另类 在线 欧美 制服 | а√资源新版在线天堂 | 图片区 小说区 区 亚洲五月 | 国产精品久久精品三级 | 蜜桃视频韩日免费播放 | 丰满妇女强制高潮18xxxx | 欧美熟妇另类久久久久久不卡 | 久久精品国产精品国产精品污 | 亚洲小说春色综合另类 | 日韩欧美成人免费观看 | 东京一本一道一二三区 | 国产精品久久久久无码av色戒 | a国产一区二区免费入口 | 乱中年女人伦av三区 | 国産精品久久久久久久 | 国产精品亚洲一区二区三区喷水 | 国内精品人妻无码久久久影院蜜桃 | 欧美三级不卡在线观看 | 六月丁香婷婷色狠狠久久 | 国产亚洲视频中文字幕97精品 | a在线亚洲男人的天堂 | 亚洲日本一区二区三区在线 | 国产亚洲视频中文字幕97精品 | 亚洲日韩av一区二区三区四区 | 精品国产国产综合精品 | 国产精品美女久久久久av爽李琼 | 中国女人内谢69xxxxxa片 | 人人澡人人妻人人爽人人蜜桃 | 日本www一道久久久免费榴莲 | 水蜜桃av无码 | 亚洲国产精品美女久久久久 | 精品日本一区二区三区在线观看 | 国产午夜手机精彩视频 | а√天堂www在线天堂小说 | 精品久久久久久亚洲精品 | 在线а√天堂中文官网 | 最新国产乱人伦偷精品免费网站 | 亚洲自偷自偷在线制服 | 九九热爱视频精品 | 男人的天堂av网站 | 精品一区二区不卡无码av | 国产舌乚八伦偷品w中 | 国产超碰人人爽人人做人人添 | 日日碰狠狠躁久久躁蜜桃 | 成熟人妻av无码专区 | 国内精品一区二区三区不卡 | 国产亚洲精品精品国产亚洲综合 | 国产xxx69麻豆国语对白 | 最近免费中文字幕中文高清百度 | 国産精品久久久久久久 | 久激情内射婷内射蜜桃人妖 | 亚洲国产一区二区三区在线观看 | 18禁黄网站男男禁片免费观看 | 丰满少妇高潮惨叫视频 | 国产色在线 | 国产 | 日韩在线不卡免费视频一区 | 久久久精品成人免费观看 | 粉嫩少妇内射浓精videos | 精品久久久久久人妻无码中文字幕 | 国产午夜精品一区二区三区嫩草 | 一区二区传媒有限公司 | 亚洲欧美国产精品久久 | 97夜夜澡人人爽人人喊中国片 | 欧美亚洲国产一区二区三区 | 在线a亚洲视频播放在线观看 | 亚洲 激情 小说 另类 欧美 | 亚洲精品国产品国语在线观看 | 大色综合色综合网站 | 无码人妻出轨黑人中文字幕 | 精品国精品国产自在久国产87 | 国产艳妇av在线观看果冻传媒 | 精品aⅴ一区二区三区 | 中文字幕乱码中文乱码51精品 | 成人欧美一区二区三区黑人免费 | 熟妇激情内射com | 俺去俺来也在线www色官网 | 国产福利视频一区二区 | 蜜桃视频韩日免费播放 | 男人扒开女人内裤强吻桶进去 | 精品国产一区二区三区四区在线看 | 无码av最新清无码专区吞精 | 国产精品久久久久久久9999 | 国产精品久久久久久亚洲影视内衣 | 天天爽夜夜爽夜夜爽 | 精品国产成人一区二区三区 | 粗大的内捧猛烈进出视频 | 国产一区二区三区四区五区加勒比 | 国内精品一区二区三区不卡 | 人人澡人人透人人爽 | 1000部啪啪未满十八勿入下载 | aⅴ亚洲 日韩 色 图网站 播放 | 丰满岳乱妇在线观看中字无码 | 国语精品一区二区三区 | 最近免费中文字幕中文高清百度 | 最新国产麻豆aⅴ精品无码 | 黑人巨大精品欧美一区二区 | 激情亚洲一区国产精品 | 亚洲精品一区二区三区婷婷月 | 成人试看120秒体验区 | 成 人 网 站国产免费观看 | 国产亚洲人成在线播放 | 老太婆性杂交欧美肥老太 | 疯狂三人交性欧美 | 55夜色66夜色国产精品视频 | 九九久久精品国产免费看小说 | 日本精品高清一区二区 | 极品尤物被啪到呻吟喷水 | 97资源共享在线视频 | 丝袜足控一区二区三区 | 亚洲精品成a人在线观看 | 国产乱人伦偷精品视频 | 5858s亚洲色大成网站www | 日韩亚洲欧美精品综合 | 天堂无码人妻精品一区二区三区 | 强开小婷嫩苞又嫩又紧视频 | 成人aaa片一区国产精品 | 漂亮人妻洗澡被公强 日日躁 | 性色欲网站人妻丰满中文久久不卡 | 初尝人妻少妇中文字幕 | 欧美大屁股xxxxhd黑色 | 亚洲色www成人永久网址 | 无码中文字幕色专区 | 中文字幕色婷婷在线视频 | 色综合久久久久综合一本到桃花网 | 天堂а√在线地址中文在线 | 欧美熟妇另类久久久久久多毛 | 女人被男人爽到呻吟的视频 | 性欧美大战久久久久久久 | 午夜熟女插插xx免费视频 | 成年美女黄网站色大免费视频 | 久久久国产精品无码免费专区 | 久久精品成人欧美大片 | 国产免费无码一区二区视频 | 99久久久无码国产精品免费 | 又大又黄又粗又爽的免费视频 | 亚洲人成人无码网www国产 | 无码中文字幕色专区 | 妺妺窝人体色www在线小说 | 精品无码一区二区三区爱欲 | 久久人人爽人人爽人人片ⅴ | 国产真实乱对白精彩久久 | 无码乱肉视频免费大全合集 | 日日干夜夜干 | 国产精品人妻一区二区三区四 | 永久黄网站色视频免费直播 | 亚洲午夜无码久久 | 日产精品高潮呻吟av久久 | 亚洲综合色区中文字幕 | 亚洲一区二区三区含羞草 | 又粗又大又硬毛片免费看 | 中文字幕乱妇无码av在线 | 国产精品a成v人在线播放 | 88国产精品欧美一区二区三区 | 天天拍夜夜添久久精品大 | 粉嫩少妇内射浓精videos | 中文字幕 人妻熟女 | a在线观看免费网站大全 | 亚洲男女内射在线播放 | 久久精品成人欧美大片 | 久久久久99精品成人片 | 欧美自拍另类欧美综合图片区 | 无码成人精品区在线观看 | 狠狠色欧美亚洲狠狠色www | 无码av免费一区二区三区试看 | 精品无码av一区二区三区 | 久久午夜夜伦鲁鲁片无码免费 | 国产精品美女久久久网av | 国产精品人人爽人人做我的可爱 | 人妻中文无码久热丝袜 | 欧美熟妇另类久久久久久多毛 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 国产精品理论片在线观看 | 少妇人妻偷人精品无码视频 | 97久久国产亚洲精品超碰热 | 国产乱子伦视频在线播放 | 免费无码肉片在线观看 | 久久久国产精品无码免费专区 | 国产舌乚八伦偷品w中 | 一个人看的视频www在线 | 精品无码av一区二区三区 | 亚洲性无码av中文字幕 | 国产午夜无码精品免费看 | 色综合久久久久综合一本到桃花网 | 亚洲 激情 小说 另类 欧美 | 老熟妇乱子伦牲交视频 | 国产一区二区三区精品视频 | 亚洲综合无码一区二区三区 | 欧美午夜特黄aaaaaa片 | av人摸人人人澡人人超碰下载 | 暴力强奷在线播放无码 | 亚洲成色www久久网站 | 性生交大片免费看l | 久久www免费人成人片 | 欧美国产日产一区二区 | 免费国产黄网站在线观看 | 又大又黄又粗又爽的免费视频 | 久久精品视频在线看15 | 国产精品视频免费播放 | 男女作爱免费网站 | 国产 精品 自在自线 | 老司机亚洲精品影院 | 日本大香伊一区二区三区 | 国产乱人无码伦av在线a | 搡女人真爽免费视频大全 | 香港三级日本三级妇三级 | 精品人妻人人做人人爽 | 亚洲国产精品久久人人爱 | 国产熟女一区二区三区四区五区 | 国产精品理论片在线观看 | 久久久久久a亚洲欧洲av冫 | 性生交大片免费看l | 特黄特色大片免费播放器图片 | 美女黄网站人色视频免费国产 | 国产精品对白交换视频 | 久久久精品成人免费观看 | 日日碰狠狠躁久久躁蜜桃 | 欧美丰满熟妇xxxx | 无码人妻精品一区二区三区不卡 | 国产又粗又硬又大爽黄老大爷视 | 成人片黄网站色大片免费观看 | 中文字幕无码日韩专区 | 欧美亚洲日韩国产人成在线播放 | 一二三四在线观看免费视频 | 夜精品a片一区二区三区无码白浆 | 日日麻批免费40分钟无码 | 中文字幕久久久久人妻 | 老熟女重囗味hdxx69 | 国产午夜福利亚洲第一 | 澳门永久av免费网站 | 久久zyz资源站无码中文动漫 | 水蜜桃亚洲一二三四在线 | 波多野结衣aⅴ在线 | 一本大道伊人av久久综合 | 亚洲成av人影院在线观看 | 日韩人妻无码一区二区三区久久99 | 亚洲午夜福利在线观看 | 中文字幕无码乱人伦 | 精品久久久久香蕉网 | 久久zyz资源站无码中文动漫 | 国产成人精品久久亚洲高清不卡 | 久久综合色之久久综合 | 麻豆国产97在线 | 欧洲 | 国产乱人偷精品人妻a片 | 婷婷五月综合激情中文字幕 | 久久久久久久女国产乱让韩 | 久久久久久亚洲精品a片成人 | 成人精品天堂一区二区三区 | 偷窥日本少妇撒尿chinese | 色综合久久久久综合一本到桃花网 | 亚洲国产成人av在线观看 | 久久国产自偷自偷免费一区调 | 玩弄人妻少妇500系列视频 | 美女黄网站人色视频免费国产 | 国产午夜亚洲精品不卡下载 | 欧美猛少妇色xxxxx | 成人亚洲精品久久久久软件 | 一二三四在线观看免费视频 | 国产精品久久久久9999小说 | 国产又粗又硬又大爽黄老大爷视 | 在线天堂新版最新版在线8 | 男女下面进入的视频免费午夜 | 亚洲国产精品一区二区第一页 | 国内精品人妻无码久久久影院蜜桃 | 久久精品人人做人人综合试看 | 精品国精品国产自在久国产87 | 色婷婷综合激情综在线播放 | 国产精品久久久久久久影院 | 色偷偷人人澡人人爽人人模 | 国产色在线 | 国产 | 国产内射爽爽大片视频社区在线 | 六十路熟妇乱子伦 | 色五月丁香五月综合五月 | 国产精品久久久午夜夜伦鲁鲁 | 97无码免费人妻超级碰碰夜夜 | 激情综合激情五月俺也去 | 欧美阿v高清资源不卡在线播放 | 日韩人妻无码一区二区三区久久99 | 黑人大群体交免费视频 | 国产精品永久免费视频 | 亚洲精品国产第一综合99久久 | 欧美日韩在线亚洲综合国产人 | 欧美丰满老熟妇xxxxx性 | 精品久久8x国产免费观看 | 国产乱人偷精品人妻a片 | 巨爆乳无码视频在线观看 | 欧美日韩久久久精品a片 | 人妻无码αv中文字幕久久琪琪布 | 九月婷婷人人澡人人添人人爽 | 狠狠色丁香久久婷婷综合五月 | 亚洲精品久久久久久久久久久 | 1000部啪啪未满十八勿入下载 | 亚洲精品中文字幕久久久久 | 国产农村妇女高潮大叫 | 最新国产乱人伦偷精品免费网站 | 精品无码成人片一区二区98 | 国产精品怡红院永久免费 | 欧美成人家庭影院 | 领导边摸边吃奶边做爽在线观看 | 国产成人无码av片在线观看不卡 | 全黄性性激高免费视频 | a在线亚洲男人的天堂 | 中文字幕无码热在线视频 | 天天爽夜夜爽夜夜爽 | 亚洲精品综合五月久久小说 | 无码国产乱人伦偷精品视频 | 亚洲精品一区三区三区在线观看 | 亚洲另类伦春色综合小说 | 在线观看欧美一区二区三区 | 大肉大捧一进一出好爽视频 | 麻豆人妻少妇精品无码专区 | 国产在线一区二区三区四区五区 | 性欧美熟妇videofreesex | 草草网站影院白丝内射 | 永久免费精品精品永久-夜色 | 国产另类ts人妖一区二区 | 久久久久久a亚洲欧洲av冫 | 亚洲国产精品一区二区第一页 | 亚洲 日韩 欧美 成人 在线观看 | 午夜精品久久久久久久久 | 亚洲乱码国产乱码精品精 | 国产一区二区三区影院 | 波多野结衣乳巨码无在线观看 | 成人aaa片一区国产精品 | 人妻互换免费中文字幕 | 在线观看国产一区二区三区 | 中文字幕无码日韩欧毛 | 最新国产乱人伦偷精品免费网站 | 中国大陆精品视频xxxx | 狠狠色色综合网站 | 99久久人妻精品免费二区 | 人人澡人人透人人爽 | 久久久中文字幕日本无吗 | 久久亚洲日韩精品一区二区三区 | 国产熟妇高潮叫床视频播放 | 特黄特色大片免费播放器图片 | 日韩视频 中文字幕 视频一区 | 无码人妻精品一区二区三区下载 | 国产精品久免费的黄网站 | 丰满肥臀大屁股熟妇激情视频 | 波多野结衣乳巨码无在线观看 | 九九久久精品国产免费看小说 | 亚洲aⅴ无码成人网站国产app | 国产精品欧美成人 | 亚洲人成网站在线播放942 | 亚洲最大成人网站 | 久久午夜夜伦鲁鲁片无码免费 | 亚洲欧美国产精品久久 | 国产 浪潮av性色四虎 | av人摸人人人澡人人超碰下载 | 牛和人交xxxx欧美 | 日日天干夜夜狠狠爱 | 狠狠cao日日穞夜夜穞av | 国产莉萝无码av在线播放 | 亚洲精品一区二区三区四区五区 | 日本熟妇人妻xxxxx人hd | 精品国产成人一区二区三区 | 永久黄网站色视频免费直播 | 国产无套粉嫩白浆在线 | 国精品人妻无码一区二区三区蜜柚 | 日日鲁鲁鲁夜夜爽爽狠狠 | 18黄暴禁片在线观看 | 亚洲а∨天堂久久精品2021 | 一本精品99久久精品77 | 亚洲精品综合五月久久小说 | 熟女少妇在线视频播放 | 国产超级va在线观看视频 | 免费无码一区二区三区蜜桃大 | 精品欧美一区二区三区久久久 | 天天躁夜夜躁狠狠是什么心态 | 亚洲一区二区三区偷拍女厕 | 日韩 欧美 动漫 国产 制服 | 在线播放免费人成毛片乱码 | 无码人妻久久一区二区三区不卡 | 全球成人中文在线 | 内射白嫩少妇超碰 | 中文字幕+乱码+中文字幕一区 | 欧美 丝袜 自拍 制服 另类 | 国产综合色产在线精品 | 一本精品99久久精品77 | 亚洲日本va午夜在线电影 | 成年美女黄网站色大免费全看 | 蜜臀aⅴ国产精品久久久国产老师 | 色综合久久中文娱乐网 | 中文无码成人免费视频在线观看 | 亚洲精品国产精品乱码不卡 | 人人澡人人妻人人爽人人蜜桃 | 在线 国产 欧美 亚洲 天堂 | 国内精品人妻无码久久久影院蜜桃 | 欧美激情综合亚洲一二区 | 国产在线精品一区二区三区直播 | 日韩av无码一区二区三区 | 免费人成网站视频在线观看 | 鲁一鲁av2019在线 | 国产午夜亚洲精品不卡下载 | 免费观看激色视频网站 | 无码人妻久久一区二区三区不卡 | 国产偷国产偷精品高清尤物 | 中文精品久久久久人妻不卡 | 樱花草在线播放免费中文 | 97久久超碰中文字幕 | 亚洲色欲色欲欲www在线 | 欧美人与禽zoz0性伦交 | 国产女主播喷水视频在线观看 | 免费视频欧美无人区码 | 在线精品亚洲一区二区 | 无套内谢的新婚少妇国语播放 | 帮老师解开蕾丝奶罩吸乳网站 | 人妻无码久久精品人妻 | 国产精品无套呻吟在线 | 国内精品人妻无码久久久影院蜜桃 | 精品久久综合1区2区3区激情 | 日本丰满熟妇videos | 亚洲成在人网站无码天堂 | 天堂亚洲2017在线观看 |