mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-05 14:34:55 +00:00
Generated files for previous patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56679 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7fefc6b4fe
commit
dfe8c84e1e
File diff suppressed because it is too large
Load Diff
@ -104,100 +104,99 @@
|
|||||||
COLDCC_TOK = 320,
|
COLDCC_TOK = 320,
|
||||||
X86_STDCALLCC_TOK = 321,
|
X86_STDCALLCC_TOK = 321,
|
||||||
X86_FASTCALLCC_TOK = 322,
|
X86_FASTCALLCC_TOK = 322,
|
||||||
X86_SSECALLCC_TOK = 323,
|
DATALAYOUT = 323,
|
||||||
DATALAYOUT = 324,
|
RET = 324,
|
||||||
RET = 325,
|
BR = 325,
|
||||||
BR = 326,
|
SWITCH = 326,
|
||||||
SWITCH = 327,
|
INVOKE = 327,
|
||||||
INVOKE = 328,
|
UNWIND = 328,
|
||||||
UNWIND = 329,
|
UNREACHABLE = 329,
|
||||||
UNREACHABLE = 330,
|
ADD = 330,
|
||||||
ADD = 331,
|
SUB = 331,
|
||||||
SUB = 332,
|
MUL = 332,
|
||||||
MUL = 333,
|
UDIV = 333,
|
||||||
UDIV = 334,
|
SDIV = 334,
|
||||||
SDIV = 335,
|
FDIV = 335,
|
||||||
FDIV = 336,
|
UREM = 336,
|
||||||
UREM = 337,
|
SREM = 337,
|
||||||
SREM = 338,
|
FREM = 338,
|
||||||
FREM = 339,
|
AND = 339,
|
||||||
AND = 340,
|
OR = 340,
|
||||||
OR = 341,
|
XOR = 341,
|
||||||
XOR = 342,
|
SHL = 342,
|
||||||
SHL = 343,
|
LSHR = 343,
|
||||||
LSHR = 344,
|
ASHR = 344,
|
||||||
ASHR = 345,
|
ICMP = 345,
|
||||||
ICMP = 346,
|
FCMP = 346,
|
||||||
FCMP = 347,
|
VICMP = 347,
|
||||||
VICMP = 348,
|
VFCMP = 348,
|
||||||
VFCMP = 349,
|
EQ = 349,
|
||||||
EQ = 350,
|
NE = 350,
|
||||||
NE = 351,
|
SLT = 351,
|
||||||
SLT = 352,
|
SGT = 352,
|
||||||
SGT = 353,
|
SLE = 353,
|
||||||
SLE = 354,
|
SGE = 354,
|
||||||
SGE = 355,
|
ULT = 355,
|
||||||
ULT = 356,
|
UGT = 356,
|
||||||
UGT = 357,
|
ULE = 357,
|
||||||
ULE = 358,
|
UGE = 358,
|
||||||
UGE = 359,
|
OEQ = 359,
|
||||||
OEQ = 360,
|
ONE = 360,
|
||||||
ONE = 361,
|
OLT = 361,
|
||||||
OLT = 362,
|
OGT = 362,
|
||||||
OGT = 363,
|
OLE = 363,
|
||||||
OLE = 364,
|
OGE = 364,
|
||||||
OGE = 365,
|
ORD = 365,
|
||||||
ORD = 366,
|
UNO = 366,
|
||||||
UNO = 367,
|
UEQ = 367,
|
||||||
UEQ = 368,
|
UNE = 368,
|
||||||
UNE = 369,
|
MALLOC = 369,
|
||||||
MALLOC = 370,
|
ALLOCA = 370,
|
||||||
ALLOCA = 371,
|
FREE = 371,
|
||||||
FREE = 372,
|
LOAD = 372,
|
||||||
LOAD = 373,
|
STORE = 373,
|
||||||
STORE = 374,
|
GETELEMENTPTR = 374,
|
||||||
GETELEMENTPTR = 375,
|
TRUNC = 375,
|
||||||
TRUNC = 376,
|
ZEXT = 376,
|
||||||
ZEXT = 377,
|
SEXT = 377,
|
||||||
SEXT = 378,
|
FPTRUNC = 378,
|
||||||
FPTRUNC = 379,
|
FPEXT = 379,
|
||||||
FPEXT = 380,
|
BITCAST = 380,
|
||||||
BITCAST = 381,
|
UITOFP = 381,
|
||||||
UITOFP = 382,
|
SITOFP = 382,
|
||||||
SITOFP = 383,
|
FPTOUI = 383,
|
||||||
FPTOUI = 384,
|
FPTOSI = 384,
|
||||||
FPTOSI = 385,
|
INTTOPTR = 385,
|
||||||
INTTOPTR = 386,
|
PTRTOINT = 386,
|
||||||
PTRTOINT = 387,
|
PHI_TOK = 387,
|
||||||
PHI_TOK = 388,
|
SELECT = 388,
|
||||||
SELECT = 389,
|
VAARG = 389,
|
||||||
VAARG = 390,
|
EXTRACTELEMENT = 390,
|
||||||
EXTRACTELEMENT = 391,
|
INSERTELEMENT = 391,
|
||||||
INSERTELEMENT = 392,
|
SHUFFLEVECTOR = 392,
|
||||||
SHUFFLEVECTOR = 393,
|
GETRESULT = 393,
|
||||||
GETRESULT = 394,
|
EXTRACTVALUE = 394,
|
||||||
EXTRACTVALUE = 395,
|
INSERTVALUE = 395,
|
||||||
INSERTVALUE = 396,
|
SIGNEXT = 396,
|
||||||
SIGNEXT = 397,
|
ZEROEXT = 397,
|
||||||
ZEROEXT = 398,
|
NORETURN = 398,
|
||||||
NORETURN = 399,
|
INREG = 399,
|
||||||
INREG = 400,
|
SRET = 400,
|
||||||
SRET = 401,
|
NOUNWIND = 401,
|
||||||
NOUNWIND = 402,
|
NOALIAS = 402,
|
||||||
NOALIAS = 403,
|
BYVAL = 403,
|
||||||
BYVAL = 404,
|
NEST = 404,
|
||||||
NEST = 405,
|
READNONE = 405,
|
||||||
READNONE = 406,
|
READONLY = 406,
|
||||||
READONLY = 407,
|
GC = 407,
|
||||||
GC = 408,
|
FNNOTE = 408,
|
||||||
FNNOTE = 409,
|
INLINE = 409,
|
||||||
INLINE = 410,
|
ALWAYS = 410,
|
||||||
ALWAYS = 411,
|
NEVER = 411,
|
||||||
NEVER = 412,
|
OPTIMIZEFORSIZE = 412,
|
||||||
OPTIMIZEFORSIZE = 413,
|
DEFAULT = 413,
|
||||||
DEFAULT = 414,
|
HIDDEN = 414,
|
||||||
HIDDEN = 415,
|
PROTECTED = 415
|
||||||
PROTECTED = 416
|
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
/* Tokens. */
|
/* Tokens. */
|
||||||
@ -266,107 +265,106 @@
|
|||||||
#define COLDCC_TOK 320
|
#define COLDCC_TOK 320
|
||||||
#define X86_STDCALLCC_TOK 321
|
#define X86_STDCALLCC_TOK 321
|
||||||
#define X86_FASTCALLCC_TOK 322
|
#define X86_FASTCALLCC_TOK 322
|
||||||
#define X86_SSECALLCC_TOK 323
|
#define DATALAYOUT 323
|
||||||
#define DATALAYOUT 324
|
#define RET 324
|
||||||
#define RET 325
|
#define BR 325
|
||||||
#define BR 326
|
#define SWITCH 326
|
||||||
#define SWITCH 327
|
#define INVOKE 327
|
||||||
#define INVOKE 328
|
#define UNWIND 328
|
||||||
#define UNWIND 329
|
#define UNREACHABLE 329
|
||||||
#define UNREACHABLE 330
|
#define ADD 330
|
||||||
#define ADD 331
|
#define SUB 331
|
||||||
#define SUB 332
|
#define MUL 332
|
||||||
#define MUL 333
|
#define UDIV 333
|
||||||
#define UDIV 334
|
#define SDIV 334
|
||||||
#define SDIV 335
|
#define FDIV 335
|
||||||
#define FDIV 336
|
#define UREM 336
|
||||||
#define UREM 337
|
#define SREM 337
|
||||||
#define SREM 338
|
#define FREM 338
|
||||||
#define FREM 339
|
#define AND 339
|
||||||
#define AND 340
|
#define OR 340
|
||||||
#define OR 341
|
#define XOR 341
|
||||||
#define XOR 342
|
#define SHL 342
|
||||||
#define SHL 343
|
#define LSHR 343
|
||||||
#define LSHR 344
|
#define ASHR 344
|
||||||
#define ASHR 345
|
#define ICMP 345
|
||||||
#define ICMP 346
|
#define FCMP 346
|
||||||
#define FCMP 347
|
#define VICMP 347
|
||||||
#define VICMP 348
|
#define VFCMP 348
|
||||||
#define VFCMP 349
|
#define EQ 349
|
||||||
#define EQ 350
|
#define NE 350
|
||||||
#define NE 351
|
#define SLT 351
|
||||||
#define SLT 352
|
#define SGT 352
|
||||||
#define SGT 353
|
#define SLE 353
|
||||||
#define SLE 354
|
#define SGE 354
|
||||||
#define SGE 355
|
#define ULT 355
|
||||||
#define ULT 356
|
#define UGT 356
|
||||||
#define UGT 357
|
#define ULE 357
|
||||||
#define ULE 358
|
#define UGE 358
|
||||||
#define UGE 359
|
#define OEQ 359
|
||||||
#define OEQ 360
|
#define ONE 360
|
||||||
#define ONE 361
|
#define OLT 361
|
||||||
#define OLT 362
|
#define OGT 362
|
||||||
#define OGT 363
|
#define OLE 363
|
||||||
#define OLE 364
|
#define OGE 364
|
||||||
#define OGE 365
|
#define ORD 365
|
||||||
#define ORD 366
|
#define UNO 366
|
||||||
#define UNO 367
|
#define UEQ 367
|
||||||
#define UEQ 368
|
#define UNE 368
|
||||||
#define UNE 369
|
#define MALLOC 369
|
||||||
#define MALLOC 370
|
#define ALLOCA 370
|
||||||
#define ALLOCA 371
|
#define FREE 371
|
||||||
#define FREE 372
|
#define LOAD 372
|
||||||
#define LOAD 373
|
#define STORE 373
|
||||||
#define STORE 374
|
#define GETELEMENTPTR 374
|
||||||
#define GETELEMENTPTR 375
|
#define TRUNC 375
|
||||||
#define TRUNC 376
|
#define ZEXT 376
|
||||||
#define ZEXT 377
|
#define SEXT 377
|
||||||
#define SEXT 378
|
#define FPTRUNC 378
|
||||||
#define FPTRUNC 379
|
#define FPEXT 379
|
||||||
#define FPEXT 380
|
#define BITCAST 380
|
||||||
#define BITCAST 381
|
#define UITOFP 381
|
||||||
#define UITOFP 382
|
#define SITOFP 382
|
||||||
#define SITOFP 383
|
#define FPTOUI 383
|
||||||
#define FPTOUI 384
|
#define FPTOSI 384
|
||||||
#define FPTOSI 385
|
#define INTTOPTR 385
|
||||||
#define INTTOPTR 386
|
#define PTRTOINT 386
|
||||||
#define PTRTOINT 387
|
#define PHI_TOK 387
|
||||||
#define PHI_TOK 388
|
#define SELECT 388
|
||||||
#define SELECT 389
|
#define VAARG 389
|
||||||
#define VAARG 390
|
#define EXTRACTELEMENT 390
|
||||||
#define EXTRACTELEMENT 391
|
#define INSERTELEMENT 391
|
||||||
#define INSERTELEMENT 392
|
#define SHUFFLEVECTOR 392
|
||||||
#define SHUFFLEVECTOR 393
|
#define GETRESULT 393
|
||||||
#define GETRESULT 394
|
#define EXTRACTVALUE 394
|
||||||
#define EXTRACTVALUE 395
|
#define INSERTVALUE 395
|
||||||
#define INSERTVALUE 396
|
#define SIGNEXT 396
|
||||||
#define SIGNEXT 397
|
#define ZEROEXT 397
|
||||||
#define ZEROEXT 398
|
#define NORETURN 398
|
||||||
#define NORETURN 399
|
#define INREG 399
|
||||||
#define INREG 400
|
#define SRET 400
|
||||||
#define SRET 401
|
#define NOUNWIND 401
|
||||||
#define NOUNWIND 402
|
#define NOALIAS 402
|
||||||
#define NOALIAS 403
|
#define BYVAL 403
|
||||||
#define BYVAL 404
|
#define NEST 404
|
||||||
#define NEST 405
|
#define READNONE 405
|
||||||
#define READNONE 406
|
#define READONLY 406
|
||||||
#define READONLY 407
|
#define GC 407
|
||||||
#define GC 408
|
#define FNNOTE 408
|
||||||
#define FNNOTE 409
|
#define INLINE 409
|
||||||
#define INLINE 410
|
#define ALWAYS 410
|
||||||
#define ALWAYS 411
|
#define NEVER 411
|
||||||
#define NEVER 412
|
#define OPTIMIZEFORSIZE 412
|
||||||
#define OPTIMIZEFORSIZE 413
|
#define DEFAULT 413
|
||||||
#define DEFAULT 414
|
#define HIDDEN 414
|
||||||
#define HIDDEN 415
|
#define PROTECTED 415
|
||||||
#define PROTECTED 416
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||||
typedef union YYSTYPE
|
typedef union YYSTYPE
|
||||||
#line 970 "/Volumes/Nanpura/mainline/llvm/lib/AsmParser/llvmAsmParser.y"
|
#line 970 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/llvmAsmParser.y"
|
||||||
{
|
{
|
||||||
llvm::Module *ModuleVal;
|
llvm::Module *ModuleVal;
|
||||||
llvm::Function *FunctionVal;
|
llvm::Function *FunctionVal;
|
||||||
@ -415,7 +413,7 @@ typedef union YYSTYPE
|
|||||||
llvm::FCmpInst::Predicate FPredicate;
|
llvm::FCmpInst::Predicate FPredicate;
|
||||||
}
|
}
|
||||||
/* Line 1529 of yacc.c. */
|
/* Line 1529 of yacc.c. */
|
||||||
#line 419 "llvmAsmParser.tab.h"
|
#line 417 "llvmAsmParser.tab.h"
|
||||||
YYSTYPE;
|
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
|
||||||
|
@ -1085,7 +1085,6 @@ Module *llvm::RunVMAsmParser(llvm::MemoryBuffer *MB) {
|
|||||||
%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN ADDRSPACE
|
%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN ADDRSPACE
|
||||||
%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
|
%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
|
||||||
%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
|
%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
|
||||||
%token X86_SSECALLCC_TOK
|
|
||||||
%token DATALAYOUT
|
%token DATALAYOUT
|
||||||
%type <UIntVal> OptCallingConv LocalNumber
|
%type <UIntVal> OptCallingConv LocalNumber
|
||||||
%type <Attributes> OptAttributes Attribute
|
%type <Attributes> OptAttributes Attribute
|
||||||
@ -1252,7 +1251,6 @@ OptCallingConv : /*empty*/ { $$ = CallingConv::C; } |
|
|||||||
COLDCC_TOK { $$ = CallingConv::Cold; } |
|
COLDCC_TOK { $$ = CallingConv::Cold; } |
|
||||||
X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
|
X86_STDCALLCC_TOK { $$ = CallingConv::X86_StdCall; } |
|
||||||
X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
|
X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
|
||||||
X86_SSECALLCC_TOK { $$ = CallingConv::X86_SSECall; } |
|
|
||||||
CC_TOK EUINT64VAL {
|
CC_TOK EUINT64VAL {
|
||||||
if ((unsigned)$2 != $2)
|
if ((unsigned)$2 != $2)
|
||||||
GEN_ERROR("Calling conv too large");
|
GEN_ERROR("Calling conv too large");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user