mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-26 22:45:05 +00:00
Regenerate
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33599 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c4c87a30d2
commit
9adeaa2f59
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,9 @@
|
|||||||
/* A Bison parser, made by GNU Bison 2.1. */
|
/* A Bison parser, made by GNU Bison 2.3. */
|
||||||
|
|
||||||
/* Skeleton parser for Yacc-like parsing with Bison,
|
/* Skeleton interface for Bison's Yacc-like parsers in C
|
||||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
|
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
@ -18,10 +20,18 @@
|
|||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
Boston, MA 02110-1301, USA. */
|
Boston, MA 02110-1301, USA. */
|
||||||
|
|
||||||
/* As a special exception, when this file is copied by Bison into a
|
/* As a special exception, you may create a larger work that contains
|
||||||
Bison output file, you may use that output file without restriction.
|
part or all of the Bison parser skeleton and distribute that work
|
||||||
This special exception was added by the Free Software Foundation
|
under terms of your choice, so long as that work isn't itself a
|
||||||
in version 1.24 of Bison. */
|
parser generator using the skeleton or a modified version thereof
|
||||||
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
||||||
|
the parser skeleton itself, you may (at your option) remove this
|
||||||
|
special exception, which will cause the skeleton and the resulting
|
||||||
|
Bison output files to be licensed under the GNU General Public
|
||||||
|
License without this special exception.
|
||||||
|
|
||||||
|
This special exception was added by the Free Software Foundation in
|
||||||
|
version 2.2 of Bison. */
|
||||||
|
|
||||||
/* Tokens. */
|
/* Tokens. */
|
||||||
#ifndef YYTOKENTYPE
|
#ifndef YYTOKENTYPE
|
||||||
@ -81,82 +91,83 @@
|
|||||||
SIDEEFFECT = 307,
|
SIDEEFFECT = 307,
|
||||||
CC_TOK = 308,
|
CC_TOK = 308,
|
||||||
CCC_TOK = 309,
|
CCC_TOK = 309,
|
||||||
CSRETCC_TOK = 310,
|
FASTCC_TOK = 310,
|
||||||
FASTCC_TOK = 311,
|
COLDCC_TOK = 311,
|
||||||
COLDCC_TOK = 312,
|
X86_STDCALLCC_TOK = 312,
|
||||||
X86_STDCALLCC_TOK = 313,
|
X86_FASTCALLCC_TOK = 313,
|
||||||
X86_FASTCALLCC_TOK = 314,
|
DATALAYOUT = 314,
|
||||||
DATALAYOUT = 315,
|
RET = 315,
|
||||||
RET = 316,
|
BR = 316,
|
||||||
BR = 317,
|
SWITCH = 317,
|
||||||
SWITCH = 318,
|
INVOKE = 318,
|
||||||
INVOKE = 319,
|
UNWIND = 319,
|
||||||
UNWIND = 320,
|
UNREACHABLE = 320,
|
||||||
UNREACHABLE = 321,
|
ADD = 321,
|
||||||
ADD = 322,
|
SUB = 322,
|
||||||
SUB = 323,
|
MUL = 323,
|
||||||
MUL = 324,
|
UDIV = 324,
|
||||||
UDIV = 325,
|
SDIV = 325,
|
||||||
SDIV = 326,
|
FDIV = 326,
|
||||||
FDIV = 327,
|
UREM = 327,
|
||||||
UREM = 328,
|
SREM = 328,
|
||||||
SREM = 329,
|
FREM = 329,
|
||||||
FREM = 330,
|
AND = 330,
|
||||||
AND = 331,
|
OR = 331,
|
||||||
OR = 332,
|
XOR = 332,
|
||||||
XOR = 333,
|
ICMP = 333,
|
||||||
ICMP = 334,
|
FCMP = 334,
|
||||||
FCMP = 335,
|
EQ = 335,
|
||||||
EQ = 336,
|
NE = 336,
|
||||||
NE = 337,
|
SLT = 337,
|
||||||
SLT = 338,
|
SGT = 338,
|
||||||
SGT = 339,
|
SLE = 339,
|
||||||
SLE = 340,
|
SGE = 340,
|
||||||
SGE = 341,
|
ULT = 341,
|
||||||
ULT = 342,
|
UGT = 342,
|
||||||
UGT = 343,
|
ULE = 343,
|
||||||
ULE = 344,
|
UGE = 344,
|
||||||
UGE = 345,
|
OEQ = 345,
|
||||||
OEQ = 346,
|
ONE = 346,
|
||||||
ONE = 347,
|
OLT = 347,
|
||||||
OLT = 348,
|
OGT = 348,
|
||||||
OGT = 349,
|
OLE = 349,
|
||||||
OLE = 350,
|
OGE = 350,
|
||||||
OGE = 351,
|
ORD = 351,
|
||||||
ORD = 352,
|
UNO = 352,
|
||||||
UNO = 353,
|
UEQ = 353,
|
||||||
UEQ = 354,
|
UNE = 354,
|
||||||
UNE = 355,
|
MALLOC = 355,
|
||||||
MALLOC = 356,
|
ALLOCA = 356,
|
||||||
ALLOCA = 357,
|
FREE = 357,
|
||||||
FREE = 358,
|
LOAD = 358,
|
||||||
LOAD = 359,
|
STORE = 359,
|
||||||
STORE = 360,
|
GETELEMENTPTR = 360,
|
||||||
GETELEMENTPTR = 361,
|
TRUNC = 361,
|
||||||
TRUNC = 362,
|
ZEXT = 362,
|
||||||
ZEXT = 363,
|
SEXT = 363,
|
||||||
SEXT = 364,
|
FPTRUNC = 364,
|
||||||
FPTRUNC = 365,
|
FPEXT = 365,
|
||||||
FPEXT = 366,
|
BITCAST = 366,
|
||||||
BITCAST = 367,
|
UITOFP = 367,
|
||||||
UITOFP = 368,
|
SITOFP = 368,
|
||||||
SITOFP = 369,
|
FPTOUI = 369,
|
||||||
FPTOUI = 370,
|
FPTOSI = 370,
|
||||||
FPTOSI = 371,
|
INTTOPTR = 371,
|
||||||
INTTOPTR = 372,
|
PTRTOINT = 372,
|
||||||
PTRTOINT = 373,
|
PHI_TOK = 373,
|
||||||
PHI_TOK = 374,
|
SELECT = 374,
|
||||||
SELECT = 375,
|
SHL = 375,
|
||||||
SHL = 376,
|
LSHR = 376,
|
||||||
LSHR = 377,
|
ASHR = 377,
|
||||||
ASHR = 378,
|
VAARG = 378,
|
||||||
VAARG = 379,
|
EXTRACTELEMENT = 379,
|
||||||
EXTRACTELEMENT = 380,
|
INSERTELEMENT = 380,
|
||||||
INSERTELEMENT = 381,
|
SHUFFLEVECTOR = 381,
|
||||||
SHUFFLEVECTOR = 382,
|
NORETURN = 382,
|
||||||
NORETURN = 383,
|
INREG = 383,
|
||||||
DEFAULT = 384,
|
SRET = 384,
|
||||||
HIDDEN = 385
|
DEFAULT = 385,
|
||||||
|
HIDDEN = 386
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
/* Tokens. */
|
/* Tokens. */
|
||||||
@ -212,89 +223,91 @@
|
|||||||
#define SIDEEFFECT 307
|
#define SIDEEFFECT 307
|
||||||
#define CC_TOK 308
|
#define CC_TOK 308
|
||||||
#define CCC_TOK 309
|
#define CCC_TOK 309
|
||||||
#define CSRETCC_TOK 310
|
#define FASTCC_TOK 310
|
||||||
#define FASTCC_TOK 311
|
#define COLDCC_TOK 311
|
||||||
#define COLDCC_TOK 312
|
#define X86_STDCALLCC_TOK 312
|
||||||
#define X86_STDCALLCC_TOK 313
|
#define X86_FASTCALLCC_TOK 313
|
||||||
#define X86_FASTCALLCC_TOK 314
|
#define DATALAYOUT 314
|
||||||
#define DATALAYOUT 315
|
#define RET 315
|
||||||
#define RET 316
|
#define BR 316
|
||||||
#define BR 317
|
#define SWITCH 317
|
||||||
#define SWITCH 318
|
#define INVOKE 318
|
||||||
#define INVOKE 319
|
#define UNWIND 319
|
||||||
#define UNWIND 320
|
#define UNREACHABLE 320
|
||||||
#define UNREACHABLE 321
|
#define ADD 321
|
||||||
#define ADD 322
|
#define SUB 322
|
||||||
#define SUB 323
|
#define MUL 323
|
||||||
#define MUL 324
|
#define UDIV 324
|
||||||
#define UDIV 325
|
#define SDIV 325
|
||||||
#define SDIV 326
|
#define FDIV 326
|
||||||
#define FDIV 327
|
#define UREM 327
|
||||||
#define UREM 328
|
#define SREM 328
|
||||||
#define SREM 329
|
#define FREM 329
|
||||||
#define FREM 330
|
#define AND 330
|
||||||
#define AND 331
|
#define OR 331
|
||||||
#define OR 332
|
#define XOR 332
|
||||||
#define XOR 333
|
#define ICMP 333
|
||||||
#define ICMP 334
|
#define FCMP 334
|
||||||
#define FCMP 335
|
#define EQ 335
|
||||||
#define EQ 336
|
#define NE 336
|
||||||
#define NE 337
|
#define SLT 337
|
||||||
#define SLT 338
|
#define SGT 338
|
||||||
#define SGT 339
|
#define SLE 339
|
||||||
#define SLE 340
|
#define SGE 340
|
||||||
#define SGE 341
|
#define ULT 341
|
||||||
#define ULT 342
|
#define UGT 342
|
||||||
#define UGT 343
|
#define ULE 343
|
||||||
#define ULE 344
|
#define UGE 344
|
||||||
#define UGE 345
|
#define OEQ 345
|
||||||
#define OEQ 346
|
#define ONE 346
|
||||||
#define ONE 347
|
#define OLT 347
|
||||||
#define OLT 348
|
#define OGT 348
|
||||||
#define OGT 349
|
#define OLE 349
|
||||||
#define OLE 350
|
#define OGE 350
|
||||||
#define OGE 351
|
#define ORD 351
|
||||||
#define ORD 352
|
#define UNO 352
|
||||||
#define UNO 353
|
#define UEQ 353
|
||||||
#define UEQ 354
|
#define UNE 354
|
||||||
#define UNE 355
|
#define MALLOC 355
|
||||||
#define MALLOC 356
|
#define ALLOCA 356
|
||||||
#define ALLOCA 357
|
#define FREE 357
|
||||||
#define FREE 358
|
#define LOAD 358
|
||||||
#define LOAD 359
|
#define STORE 359
|
||||||
#define STORE 360
|
#define GETELEMENTPTR 360
|
||||||
#define GETELEMENTPTR 361
|
#define TRUNC 361
|
||||||
#define TRUNC 362
|
#define ZEXT 362
|
||||||
#define ZEXT 363
|
#define SEXT 363
|
||||||
#define SEXT 364
|
#define FPTRUNC 364
|
||||||
#define FPTRUNC 365
|
#define FPEXT 365
|
||||||
#define FPEXT 366
|
#define BITCAST 366
|
||||||
#define BITCAST 367
|
#define UITOFP 367
|
||||||
#define UITOFP 368
|
#define SITOFP 368
|
||||||
#define SITOFP 369
|
#define FPTOUI 369
|
||||||
#define FPTOUI 370
|
#define FPTOSI 370
|
||||||
#define FPTOSI 371
|
#define INTTOPTR 371
|
||||||
#define INTTOPTR 372
|
#define PTRTOINT 372
|
||||||
#define PTRTOINT 373
|
#define PHI_TOK 373
|
||||||
#define PHI_TOK 374
|
#define SELECT 374
|
||||||
#define SELECT 375
|
#define SHL 375
|
||||||
#define SHL 376
|
#define LSHR 376
|
||||||
#define LSHR 377
|
#define ASHR 377
|
||||||
#define ASHR 378
|
#define VAARG 378
|
||||||
#define VAARG 379
|
#define EXTRACTELEMENT 379
|
||||||
#define EXTRACTELEMENT 380
|
#define INSERTELEMENT 380
|
||||||
#define INSERTELEMENT 381
|
#define SHUFFLEVECTOR 381
|
||||||
#define SHUFFLEVECTOR 382
|
#define NORETURN 382
|
||||||
#define NORETURN 383
|
#define INREG 383
|
||||||
#define DEFAULT 384
|
#define SRET 384
|
||||||
#define HIDDEN 385
|
#define DEFAULT 385
|
||||||
|
#define HIDDEN 386
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||||
#line 885 "/proj/llvm/llvm-1/lib/AsmParser/llvmAsmParser.y"
|
typedef union YYSTYPE
|
||||||
typedef union YYSTYPE {
|
#line 885 "/home/asl/proj/llvm/src/lib/AsmParser/llvmAsmParser.y"
|
||||||
|
{
|
||||||
llvm::Module *ModuleVal;
|
llvm::Module *ModuleVal;
|
||||||
llvm::Function *FunctionVal;
|
llvm::Function *FunctionVal;
|
||||||
llvm::BasicBlock *BasicBlockVal;
|
llvm::BasicBlock *BasicBlockVal;
|
||||||
@ -338,9 +351,10 @@ typedef union YYSTYPE {
|
|||||||
llvm::Instruction::OtherOps OtherOpVal;
|
llvm::Instruction::OtherOps OtherOpVal;
|
||||||
llvm::ICmpInst::Predicate IPredicate;
|
llvm::ICmpInst::Predicate IPredicate;
|
||||||
llvm::FCmpInst::Predicate FPredicate;
|
llvm::FCmpInst::Predicate FPredicate;
|
||||||
} YYSTYPE;
|
}
|
||||||
/* Line 1447 of yacc.c. */
|
/* Line 1489 of yacc.c. */
|
||||||
#line 344 "llvmAsmParser.tab.h"
|
#line 357 "llvmAsmParser.tab.h"
|
||||||
|
YYSTYPE;
|
||||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||||
# define YYSTYPE_IS_DECLARED 1
|
# define YYSTYPE_IS_DECLARED 1
|
||||||
# define YYSTYPE_IS_TRIVIAL 1
|
# define YYSTYPE_IS_TRIVIAL 1
|
||||||
@ -348,5 +362,3 @@ typedef union YYSTYPE {
|
|||||||
|
|
||||||
extern YYSTYPE llvmAsmlval;
|
extern YYSTYPE llvmAsmlval;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,9 @@
|
|||||||
/* A Bison parser, made by GNU Bison 2.1. */
|
/* A Bison parser, made by GNU Bison 2.3. */
|
||||||
|
|
||||||
/* Skeleton parser for Yacc-like parsing with Bison,
|
/* Skeleton interface for Bison's Yacc-like parsers in C
|
||||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
|
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
@ -18,10 +20,18 @@
|
|||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
Boston, MA 02110-1301, USA. */
|
Boston, MA 02110-1301, USA. */
|
||||||
|
|
||||||
/* As a special exception, when this file is copied by Bison into a
|
/* As a special exception, you may create a larger work that contains
|
||||||
Bison output file, you may use that output file without restriction.
|
part or all of the Bison parser skeleton and distribute that work
|
||||||
This special exception was added by the Free Software Foundation
|
under terms of your choice, so long as that work isn't itself a
|
||||||
in version 1.24 of Bison. */
|
parser generator using the skeleton or a modified version thereof
|
||||||
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
||||||
|
the parser skeleton itself, you may (at your option) remove this
|
||||||
|
special exception, which will cause the skeleton and the resulting
|
||||||
|
Bison output files to be licensed under the GNU General Public
|
||||||
|
License without this special exception.
|
||||||
|
|
||||||
|
This special exception was added by the Free Software Foundation in
|
||||||
|
version 2.2 of Bison. */
|
||||||
|
|
||||||
/* Tokens. */
|
/* Tokens. */
|
||||||
#ifndef YYTOKENTYPE
|
#ifndef YYTOKENTYPE
|
||||||
@ -334,9 +344,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||||
#line 1391 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeParser.y"
|
typedef union YYSTYPE
|
||||||
typedef union YYSTYPE {
|
#line 1339 "/home/asl/proj/llvm/src/tools/llvm-upgrade/UpgradeParser.y"
|
||||||
|
{
|
||||||
llvm::Module *ModuleVal;
|
llvm::Module *ModuleVal;
|
||||||
llvm::Function *FunctionVal;
|
llvm::Function *FunctionVal;
|
||||||
std::pair<llvm::PATypeInfo, char*> *ArgVal;
|
std::pair<llvm::PATypeInfo, char*> *ArgVal;
|
||||||
@ -376,9 +387,10 @@ typedef union YYSTYPE {
|
|||||||
llvm::ICmpInst::Predicate IPred;
|
llvm::ICmpInst::Predicate IPred;
|
||||||
llvm::FCmpInst::Predicate FPred;
|
llvm::FCmpInst::Predicate FPred;
|
||||||
llvm::Module::Endianness Endianness;
|
llvm::Module::Endianness Endianness;
|
||||||
} YYSTYPE;
|
}
|
||||||
/* Line 1447 of yacc.c. */
|
/* Line 1489 of yacc.c. */
|
||||||
#line 382 "UpgradeParser.tab.h"
|
#line 393 "UpgradeParser.tab.h"
|
||||||
|
YYSTYPE;
|
||||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||||
# define YYSTYPE_IS_DECLARED 1
|
# define YYSTYPE_IS_DECLARED 1
|
||||||
# define YYSTYPE_IS_TRIVIAL 1
|
# define YYSTYPE_IS_TRIVIAL 1
|
||||||
@ -386,5 +398,3 @@ typedef union YYSTYPE {
|
|||||||
|
|
||||||
extern YYSTYPE Upgradelval;
|
extern YYSTYPE Upgradelval;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user