forked from OSchip/llvm-project
parent
b6d795c1fc
commit
9e70086c8f
File diff suppressed because it is too large
Load Diff
|
@ -1,329 +1,4 @@
|
||||||
/* A Bison parser, made by GNU Bison 1.875c. */
|
typedef union {
|
||||||
|
|
||||||
/* Skeleton parser for Yacc-like parsing with Bison,
|
|
||||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
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
|
|
||||||
the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
||||||
Boston, MA 02111-1307, USA. */
|
|
||||||
|
|
||||||
/* As a special exception, when this file is copied by Bison into a
|
|
||||||
Bison output file, you may use that output file without restriction.
|
|
||||||
This special exception was added by the Free Software Foundation
|
|
||||||
in version 1.24 of Bison. */
|
|
||||||
|
|
||||||
/* Tokens. */
|
|
||||||
#ifndef YYTOKENTYPE
|
|
||||||
# define YYTOKENTYPE
|
|
||||||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
||||||
know about them. */
|
|
||||||
enum yytokentype {
|
|
||||||
ESINT64VAL = 258,
|
|
||||||
EUINT64VAL = 259,
|
|
||||||
ESAPINTVAL = 260,
|
|
||||||
EUAPINTVAL = 261,
|
|
||||||
LOCALVAL_ID = 262,
|
|
||||||
GLOBALVAL_ID = 263,
|
|
||||||
FPVAL = 264,
|
|
||||||
VOID = 265,
|
|
||||||
INTTYPE = 266,
|
|
||||||
FLOAT = 267,
|
|
||||||
DOUBLE = 268,
|
|
||||||
X86_FP80 = 269,
|
|
||||||
FP128 = 270,
|
|
||||||
PPC_FP128 = 271,
|
|
||||||
LABEL = 272,
|
|
||||||
TYPE = 273,
|
|
||||||
LOCALVAR = 274,
|
|
||||||
GLOBALVAR = 275,
|
|
||||||
LABELSTR = 276,
|
|
||||||
STRINGCONSTANT = 277,
|
|
||||||
ATSTRINGCONSTANT = 278,
|
|
||||||
PCTSTRINGCONSTANT = 279,
|
|
||||||
ZEROINITIALIZER = 280,
|
|
||||||
TRUETOK = 281,
|
|
||||||
FALSETOK = 282,
|
|
||||||
BEGINTOK = 283,
|
|
||||||
ENDTOK = 284,
|
|
||||||
DECLARE = 285,
|
|
||||||
DEFINE = 286,
|
|
||||||
GLOBAL = 287,
|
|
||||||
CONSTANT = 288,
|
|
||||||
SECTION = 289,
|
|
||||||
ALIAS = 290,
|
|
||||||
VOLATILE = 291,
|
|
||||||
THREAD_LOCAL = 292,
|
|
||||||
TO = 293,
|
|
||||||
DOTDOTDOT = 294,
|
|
||||||
NULL_TOK = 295,
|
|
||||||
UNDEF = 296,
|
|
||||||
INTERNAL = 297,
|
|
||||||
LINKONCE = 298,
|
|
||||||
WEAK = 299,
|
|
||||||
APPENDING = 300,
|
|
||||||
DLLIMPORT = 301,
|
|
||||||
DLLEXPORT = 302,
|
|
||||||
EXTERN_WEAK = 303,
|
|
||||||
OPAQUE = 304,
|
|
||||||
EXTERNAL = 305,
|
|
||||||
TARGET = 306,
|
|
||||||
TRIPLE = 307,
|
|
||||||
ALIGN = 308,
|
|
||||||
DEPLIBS = 309,
|
|
||||||
CALL = 310,
|
|
||||||
TAIL = 311,
|
|
||||||
ASM_TOK = 312,
|
|
||||||
MODULE = 313,
|
|
||||||
SIDEEFFECT = 314,
|
|
||||||
CC_TOK = 315,
|
|
||||||
CCC_TOK = 316,
|
|
||||||
FASTCC_TOK = 317,
|
|
||||||
COLDCC_TOK = 318,
|
|
||||||
X86_STDCALLCC_TOK = 319,
|
|
||||||
X86_FASTCALLCC_TOK = 320,
|
|
||||||
DATALAYOUT = 321,
|
|
||||||
RET = 322,
|
|
||||||
BR = 323,
|
|
||||||
SWITCH = 324,
|
|
||||||
INVOKE = 325,
|
|
||||||
UNWIND = 326,
|
|
||||||
UNREACHABLE = 327,
|
|
||||||
ADD = 328,
|
|
||||||
SUB = 329,
|
|
||||||
MUL = 330,
|
|
||||||
UDIV = 331,
|
|
||||||
SDIV = 332,
|
|
||||||
FDIV = 333,
|
|
||||||
UREM = 334,
|
|
||||||
SREM = 335,
|
|
||||||
FREM = 336,
|
|
||||||
AND = 337,
|
|
||||||
OR = 338,
|
|
||||||
XOR = 339,
|
|
||||||
SHL = 340,
|
|
||||||
LSHR = 341,
|
|
||||||
ASHR = 342,
|
|
||||||
ICMP = 343,
|
|
||||||
FCMP = 344,
|
|
||||||
EQ = 345,
|
|
||||||
NE = 346,
|
|
||||||
SLT = 347,
|
|
||||||
SGT = 348,
|
|
||||||
SLE = 349,
|
|
||||||
SGE = 350,
|
|
||||||
ULT = 351,
|
|
||||||
UGT = 352,
|
|
||||||
ULE = 353,
|
|
||||||
UGE = 354,
|
|
||||||
OEQ = 355,
|
|
||||||
ONE = 356,
|
|
||||||
OLT = 357,
|
|
||||||
OGT = 358,
|
|
||||||
OLE = 359,
|
|
||||||
OGE = 360,
|
|
||||||
ORD = 361,
|
|
||||||
UNO = 362,
|
|
||||||
UEQ = 363,
|
|
||||||
UNE = 364,
|
|
||||||
MALLOC = 365,
|
|
||||||
ALLOCA = 366,
|
|
||||||
FREE = 367,
|
|
||||||
LOAD = 368,
|
|
||||||
STORE = 369,
|
|
||||||
GETELEMENTPTR = 370,
|
|
||||||
TRUNC = 371,
|
|
||||||
ZEXT = 372,
|
|
||||||
SEXT = 373,
|
|
||||||
FPTRUNC = 374,
|
|
||||||
FPEXT = 375,
|
|
||||||
BITCAST = 376,
|
|
||||||
UITOFP = 377,
|
|
||||||
SITOFP = 378,
|
|
||||||
FPTOUI = 379,
|
|
||||||
FPTOSI = 380,
|
|
||||||
INTTOPTR = 381,
|
|
||||||
PTRTOINT = 382,
|
|
||||||
PHI_TOK = 383,
|
|
||||||
SELECT = 384,
|
|
||||||
VAARG = 385,
|
|
||||||
EXTRACTELEMENT = 386,
|
|
||||||
INSERTELEMENT = 387,
|
|
||||||
SHUFFLEVECTOR = 388,
|
|
||||||
SIGNEXT = 389,
|
|
||||||
ZEROEXT = 390,
|
|
||||||
NORETURN = 391,
|
|
||||||
INREG = 392,
|
|
||||||
SRET = 393,
|
|
||||||
NOUNWIND = 394,
|
|
||||||
NOALIAS = 395,
|
|
||||||
BYVAL = 396,
|
|
||||||
NEST = 397,
|
|
||||||
DEFAULT = 398,
|
|
||||||
HIDDEN = 399,
|
|
||||||
PROTECTED = 400
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
#define ESINT64VAL 258
|
|
||||||
#define EUINT64VAL 259
|
|
||||||
#define ESAPINTVAL 260
|
|
||||||
#define EUAPINTVAL 261
|
|
||||||
#define LOCALVAL_ID 262
|
|
||||||
#define GLOBALVAL_ID 263
|
|
||||||
#define FPVAL 264
|
|
||||||
#define VOID 265
|
|
||||||
#define INTTYPE 266
|
|
||||||
#define FLOAT 267
|
|
||||||
#define DOUBLE 268
|
|
||||||
#define X86_FP80 269
|
|
||||||
#define FP128 270
|
|
||||||
#define PPC_FP128 271
|
|
||||||
#define LABEL 272
|
|
||||||
#define TYPE 273
|
|
||||||
#define LOCALVAR 274
|
|
||||||
#define GLOBALVAR 275
|
|
||||||
#define LABELSTR 276
|
|
||||||
#define STRINGCONSTANT 277
|
|
||||||
#define ATSTRINGCONSTANT 278
|
|
||||||
#define PCTSTRINGCONSTANT 279
|
|
||||||
#define ZEROINITIALIZER 280
|
|
||||||
#define TRUETOK 281
|
|
||||||
#define FALSETOK 282
|
|
||||||
#define BEGINTOK 283
|
|
||||||
#define ENDTOK 284
|
|
||||||
#define DECLARE 285
|
|
||||||
#define DEFINE 286
|
|
||||||
#define GLOBAL 287
|
|
||||||
#define CONSTANT 288
|
|
||||||
#define SECTION 289
|
|
||||||
#define ALIAS 290
|
|
||||||
#define VOLATILE 291
|
|
||||||
#define THREAD_LOCAL 292
|
|
||||||
#define TO 293
|
|
||||||
#define DOTDOTDOT 294
|
|
||||||
#define NULL_TOK 295
|
|
||||||
#define UNDEF 296
|
|
||||||
#define INTERNAL 297
|
|
||||||
#define LINKONCE 298
|
|
||||||
#define WEAK 299
|
|
||||||
#define APPENDING 300
|
|
||||||
#define DLLIMPORT 301
|
|
||||||
#define DLLEXPORT 302
|
|
||||||
#define EXTERN_WEAK 303
|
|
||||||
#define OPAQUE 304
|
|
||||||
#define EXTERNAL 305
|
|
||||||
#define TARGET 306
|
|
||||||
#define TRIPLE 307
|
|
||||||
#define ALIGN 308
|
|
||||||
#define DEPLIBS 309
|
|
||||||
#define CALL 310
|
|
||||||
#define TAIL 311
|
|
||||||
#define ASM_TOK 312
|
|
||||||
#define MODULE 313
|
|
||||||
#define SIDEEFFECT 314
|
|
||||||
#define CC_TOK 315
|
|
||||||
#define CCC_TOK 316
|
|
||||||
#define FASTCC_TOK 317
|
|
||||||
#define COLDCC_TOK 318
|
|
||||||
#define X86_STDCALLCC_TOK 319
|
|
||||||
#define X86_FASTCALLCC_TOK 320
|
|
||||||
#define DATALAYOUT 321
|
|
||||||
#define RET 322
|
|
||||||
#define BR 323
|
|
||||||
#define SWITCH 324
|
|
||||||
#define INVOKE 325
|
|
||||||
#define UNWIND 326
|
|
||||||
#define UNREACHABLE 327
|
|
||||||
#define ADD 328
|
|
||||||
#define SUB 329
|
|
||||||
#define MUL 330
|
|
||||||
#define UDIV 331
|
|
||||||
#define SDIV 332
|
|
||||||
#define FDIV 333
|
|
||||||
#define UREM 334
|
|
||||||
#define SREM 335
|
|
||||||
#define FREM 336
|
|
||||||
#define AND 337
|
|
||||||
#define OR 338
|
|
||||||
#define XOR 339
|
|
||||||
#define SHL 340
|
|
||||||
#define LSHR 341
|
|
||||||
#define ASHR 342
|
|
||||||
#define ICMP 343
|
|
||||||
#define FCMP 344
|
|
||||||
#define EQ 345
|
|
||||||
#define NE 346
|
|
||||||
#define SLT 347
|
|
||||||
#define SGT 348
|
|
||||||
#define SLE 349
|
|
||||||
#define SGE 350
|
|
||||||
#define ULT 351
|
|
||||||
#define UGT 352
|
|
||||||
#define ULE 353
|
|
||||||
#define UGE 354
|
|
||||||
#define OEQ 355
|
|
||||||
#define ONE 356
|
|
||||||
#define OLT 357
|
|
||||||
#define OGT 358
|
|
||||||
#define OLE 359
|
|
||||||
#define OGE 360
|
|
||||||
#define ORD 361
|
|
||||||
#define UNO 362
|
|
||||||
#define UEQ 363
|
|
||||||
#define UNE 364
|
|
||||||
#define MALLOC 365
|
|
||||||
#define ALLOCA 366
|
|
||||||
#define FREE 367
|
|
||||||
#define LOAD 368
|
|
||||||
#define STORE 369
|
|
||||||
#define GETELEMENTPTR 370
|
|
||||||
#define TRUNC 371
|
|
||||||
#define ZEXT 372
|
|
||||||
#define SEXT 373
|
|
||||||
#define FPTRUNC 374
|
|
||||||
#define FPEXT 375
|
|
||||||
#define BITCAST 376
|
|
||||||
#define UITOFP 377
|
|
||||||
#define SITOFP 378
|
|
||||||
#define FPTOUI 379
|
|
||||||
#define FPTOSI 380
|
|
||||||
#define INTTOPTR 381
|
|
||||||
#define PTRTOINT 382
|
|
||||||
#define PHI_TOK 383
|
|
||||||
#define SELECT 384
|
|
||||||
#define VAARG 385
|
|
||||||
#define EXTRACTELEMENT 386
|
|
||||||
#define INSERTELEMENT 387
|
|
||||||
#define SHUFFLEVECTOR 388
|
|
||||||
#define SIGNEXT 389
|
|
||||||
#define ZEROEXT 390
|
|
||||||
#define NORETURN 391
|
|
||||||
#define INREG 392
|
|
||||||
#define SRET 393
|
|
||||||
#define NOUNWIND 394
|
|
||||||
#define NOALIAS 395
|
|
||||||
#define BYVAL 396
|
|
||||||
#define NEST 397
|
|
||||||
#define DEFAULT 398
|
|
||||||
#define HIDDEN 399
|
|
||||||
#define PROTECTED 400
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
|
||||||
#line 963 "/users/dag/projects/cascade/llvm.modified/lib/AsmParser/llvmAsmParser.y"
|
|
||||||
typedef union YYSTYPE {
|
|
||||||
llvm::Module *ModuleVal;
|
llvm::Module *ModuleVal;
|
||||||
llvm::Function *FunctionVal;
|
llvm::Function *FunctionVal;
|
||||||
llvm::BasicBlock *BasicBlockVal;
|
llvm::BasicBlock *BasicBlockVal;
|
||||||
|
@ -369,14 +44,149 @@ typedef union YYSTYPE {
|
||||||
llvm::ICmpInst::Predicate IPredicate;
|
llvm::ICmpInst::Predicate IPredicate;
|
||||||
llvm::FCmpInst::Predicate FPredicate;
|
llvm::FCmpInst::Predicate FPredicate;
|
||||||
} YYSTYPE;
|
} YYSTYPE;
|
||||||
/* Line 1268 of yacc.c. */
|
#define ESINT64VAL 257
|
||||||
#line 374 "llvmAsmParser.tab.h"
|
#define EUINT64VAL 258
|
||||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
#define ESAPINTVAL 259
|
||||||
# define YYSTYPE_IS_DECLARED 1
|
#define EUAPINTVAL 260
|
||||||
# define YYSTYPE_IS_TRIVIAL 1
|
#define LOCALVAL_ID 261
|
||||||
#endif
|
#define GLOBALVAL_ID 262
|
||||||
|
#define FPVAL 263
|
||||||
|
#define VOID 264
|
||||||
|
#define INTTYPE 265
|
||||||
|
#define FLOAT 266
|
||||||
|
#define DOUBLE 267
|
||||||
|
#define X86_FP80 268
|
||||||
|
#define FP128 269
|
||||||
|
#define PPC_FP128 270
|
||||||
|
#define LABEL 271
|
||||||
|
#define TYPE 272
|
||||||
|
#define LOCALVAR 273
|
||||||
|
#define GLOBALVAR 274
|
||||||
|
#define LABELSTR 275
|
||||||
|
#define STRINGCONSTANT 276
|
||||||
|
#define ATSTRINGCONSTANT 277
|
||||||
|
#define PCTSTRINGCONSTANT 278
|
||||||
|
#define ZEROINITIALIZER 279
|
||||||
|
#define TRUETOK 280
|
||||||
|
#define FALSETOK 281
|
||||||
|
#define BEGINTOK 282
|
||||||
|
#define ENDTOK 283
|
||||||
|
#define DECLARE 284
|
||||||
|
#define DEFINE 285
|
||||||
|
#define GLOBAL 286
|
||||||
|
#define CONSTANT 287
|
||||||
|
#define SECTION 288
|
||||||
|
#define ALIAS 289
|
||||||
|
#define VOLATILE 290
|
||||||
|
#define THREAD_LOCAL 291
|
||||||
|
#define TO 292
|
||||||
|
#define DOTDOTDOT 293
|
||||||
|
#define NULL_TOK 294
|
||||||
|
#define UNDEF 295
|
||||||
|
#define INTERNAL 296
|
||||||
|
#define LINKONCE 297
|
||||||
|
#define WEAK 298
|
||||||
|
#define APPENDING 299
|
||||||
|
#define DLLIMPORT 300
|
||||||
|
#define DLLEXPORT 301
|
||||||
|
#define EXTERN_WEAK 302
|
||||||
|
#define OPAQUE 303
|
||||||
|
#define EXTERNAL 304
|
||||||
|
#define TARGET 305
|
||||||
|
#define TRIPLE 306
|
||||||
|
#define ALIGN 307
|
||||||
|
#define DEPLIBS 308
|
||||||
|
#define CALL 309
|
||||||
|
#define TAIL 310
|
||||||
|
#define ASM_TOK 311
|
||||||
|
#define MODULE 312
|
||||||
|
#define SIDEEFFECT 313
|
||||||
|
#define CC_TOK 314
|
||||||
|
#define CCC_TOK 315
|
||||||
|
#define FASTCC_TOK 316
|
||||||
|
#define COLDCC_TOK 317
|
||||||
|
#define X86_STDCALLCC_TOK 318
|
||||||
|
#define X86_FASTCALLCC_TOK 319
|
||||||
|
#define DATALAYOUT 320
|
||||||
|
#define RET 321
|
||||||
|
#define BR 322
|
||||||
|
#define SWITCH 323
|
||||||
|
#define INVOKE 324
|
||||||
|
#define UNWIND 325
|
||||||
|
#define UNREACHABLE 326
|
||||||
|
#define ADD 327
|
||||||
|
#define SUB 328
|
||||||
|
#define MUL 329
|
||||||
|
#define UDIV 330
|
||||||
|
#define SDIV 331
|
||||||
|
#define FDIV 332
|
||||||
|
#define UREM 333
|
||||||
|
#define SREM 334
|
||||||
|
#define FREM 335
|
||||||
|
#define AND 336
|
||||||
|
#define OR 337
|
||||||
|
#define XOR 338
|
||||||
|
#define SHL 339
|
||||||
|
#define LSHR 340
|
||||||
|
#define ASHR 341
|
||||||
|
#define ICMP 342
|
||||||
|
#define FCMP 343
|
||||||
|
#define EQ 344
|
||||||
|
#define NE 345
|
||||||
|
#define SLT 346
|
||||||
|
#define SGT 347
|
||||||
|
#define SLE 348
|
||||||
|
#define SGE 349
|
||||||
|
#define ULT 350
|
||||||
|
#define UGT 351
|
||||||
|
#define ULE 352
|
||||||
|
#define UGE 353
|
||||||
|
#define OEQ 354
|
||||||
|
#define ONE 355
|
||||||
|
#define OLT 356
|
||||||
|
#define OGT 357
|
||||||
|
#define OLE 358
|
||||||
|
#define OGE 359
|
||||||
|
#define ORD 360
|
||||||
|
#define UNO 361
|
||||||
|
#define UEQ 362
|
||||||
|
#define UNE 363
|
||||||
|
#define MALLOC 364
|
||||||
|
#define ALLOCA 365
|
||||||
|
#define FREE 366
|
||||||
|
#define LOAD 367
|
||||||
|
#define STORE 368
|
||||||
|
#define GETELEMENTPTR 369
|
||||||
|
#define TRUNC 370
|
||||||
|
#define ZEXT 371
|
||||||
|
#define SEXT 372
|
||||||
|
#define FPTRUNC 373
|
||||||
|
#define FPEXT 374
|
||||||
|
#define BITCAST 375
|
||||||
|
#define UITOFP 376
|
||||||
|
#define SITOFP 377
|
||||||
|
#define FPTOUI 378
|
||||||
|
#define FPTOSI 379
|
||||||
|
#define INTTOPTR 380
|
||||||
|
#define PTRTOINT 381
|
||||||
|
#define PHI_TOK 382
|
||||||
|
#define SELECT 383
|
||||||
|
#define VAARG 384
|
||||||
|
#define EXTRACTELEMENT 385
|
||||||
|
#define INSERTELEMENT 386
|
||||||
|
#define SHUFFLEVECTOR 387
|
||||||
|
#define SIGNEXT 388
|
||||||
|
#define ZEROEXT 389
|
||||||
|
#define NORETURN 390
|
||||||
|
#define INREG 391
|
||||||
|
#define SRET 392
|
||||||
|
#define NOUNWIND 393
|
||||||
|
#define NOALIAS 394
|
||||||
|
#define BYVAL 395
|
||||||
|
#define NEST 396
|
||||||
|
#define DEFAULT 397
|
||||||
|
#define HIDDEN 398
|
||||||
|
#define PROTECTED 399
|
||||||
|
|
||||||
|
|
||||||
extern YYSTYPE llvmAsmlval;
|
extern YYSTYPE llvmAsmlval;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1873,6 +1873,7 @@ ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
|
||||||
if ($1==Type::FloatTy)
|
if ($1==Type::FloatTy)
|
||||||
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
||||||
$$ = ConstantFP::get($1, *$2);
|
$$ = ConstantFP::get($1, *$2);
|
||||||
|
delete $2;
|
||||||
CHECK_FOR_ERROR
|
CHECK_FOR_ERROR
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1873,6 +1873,7 @@ ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
|
||||||
if ($1==Type::FloatTy)
|
if ($1==Type::FloatTy)
|
||||||
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
||||||
$$ = ConstantFP::get($1, *$2);
|
$$ = ConstantFP::get($1, *$2);
|
||||||
|
delete $2;
|
||||||
CHECK_FOR_ERROR
|
CHECK_FOR_ERROR
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1415,16 +1415,6 @@ static void generateCompilerSpecificCode(std::ostream& Out) {
|
||||||
|
|
||||||
// Output target-specific code that should be inserted into main.
|
// Output target-specific code that should be inserted into main.
|
||||||
Out << "#define CODE_FOR_MAIN() /* Any target-specific code for main()*/\n";
|
Out << "#define CODE_FOR_MAIN() /* Any target-specific code for main()*/\n";
|
||||||
// On X86, set the FP control word to 64-bits of precision instead of 80 bits.
|
|
||||||
Out << "#if defined(__GNUC__) && !defined(__llvm__)\n"
|
|
||||||
<< "#if defined(i386) || defined(__i386__) || defined(__i386) || "
|
|
||||||
<< "defined(__x86_64__)\n"
|
|
||||||
<< "#undef CODE_FOR_MAIN\n"
|
|
||||||
<< "#define CODE_FOR_MAIN() \\\n"
|
|
||||||
<< " {short F;__asm__ (\"fnstcw %0\" : \"=m\" (*&F)); \\\n"
|
|
||||||
<< " F=(F&~0x300)|0x200;__asm__(\"fldcw %0\"::\"m\"(*&F));}\n"
|
|
||||||
<< "#endif\n#endif\n";
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// FindStaticTors - Given a static ctor/dtor list, unpack its contents into
|
/// FindStaticTors - Given a static ctor/dtor list, unpack its contents into
|
||||||
|
|
|
@ -130,8 +130,6 @@ namespace {
|
||||||
/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
|
/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
|
||||||
virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
|
virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
|
||||||
|
|
||||||
virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
|
|
||||||
|
|
||||||
virtual bool CanBeFoldedBy(SDNode *N, SDNode *U, SDNode *Root) const;
|
virtual bool CanBeFoldedBy(SDNode *N, SDNode *U, SDNode *Root) const;
|
||||||
|
|
||||||
// Include the pieces autogenerated from the target description.
|
// Include the pieces autogenerated from the target description.
|
||||||
|
@ -164,8 +162,6 @@ namespace {
|
||||||
std::vector<SDOperand> &OutOps,
|
std::vector<SDOperand> &OutOps,
|
||||||
SelectionDAG &DAG);
|
SelectionDAG &DAG);
|
||||||
|
|
||||||
void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
|
|
||||||
|
|
||||||
inline void getAddressOperands(X86ISelAddressMode &AM, SDOperand &Base,
|
inline void getAddressOperands(X86ISelAddressMode &AM, SDOperand &Base,
|
||||||
SDOperand &Scale, SDOperand &Index,
|
SDOperand &Scale, SDOperand &Index,
|
||||||
SDOperand &Disp) {
|
SDOperand &Disp) {
|
||||||
|
@ -542,33 +538,6 @@ void X86DAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
|
|
||||||
/// the main function.
|
|
||||||
void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
|
|
||||||
MachineFrameInfo *MFI) {
|
|
||||||
const TargetInstrInfo *TII = TM.getInstrInfo();
|
|
||||||
if (Subtarget->isTargetCygMing())
|
|
||||||
BuildMI(BB, TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
|
|
||||||
|
|
||||||
// Switch the FPU to 64-bit precision mode for better compatibility and speed.
|
|
||||||
int CWFrameIdx = MFI->CreateStackObject(2, 2);
|
|
||||||
addFrameReference(BuildMI(BB, TII->get(X86::FNSTCW16m)), CWFrameIdx);
|
|
||||||
|
|
||||||
// Set the high part to be 64-bit precision.
|
|
||||||
addFrameReference(BuildMI(BB, TII->get(X86::MOV8mi)),
|
|
||||||
CWFrameIdx, 1).addImm(2);
|
|
||||||
|
|
||||||
// Reload the modified control word now.
|
|
||||||
addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
|
|
||||||
}
|
|
||||||
|
|
||||||
void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
|
|
||||||
// If this is main, emit special code for main.
|
|
||||||
MachineBasicBlock *BB = MF.begin();
|
|
||||||
if (Fn.hasExternalLinkage() && Fn.getName() == "main")
|
|
||||||
EmitSpecialCodeForMain(BB, MF.getFrameInfo());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// MatchAddress - Add the specified node to the specified addressing mode,
|
/// MatchAddress - Add the specified node to the specified addressing mode,
|
||||||
/// returning true if it cannot be done. This just pattern matches for the
|
/// returning true if it cannot be done. This just pattern matches for the
|
||||||
/// addressing mode
|
/// addressing mode
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,341 +1,4 @@
|
||||||
/* A Bison parser, made by GNU Bison 1.875c. */
|
typedef union {
|
||||||
|
|
||||||
/* Skeleton parser for Yacc-like parsing with Bison,
|
|
||||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
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
|
|
||||||
the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
||||||
Boston, MA 02111-1307, USA. */
|
|
||||||
|
|
||||||
/* As a special exception, when this file is copied by Bison into a
|
|
||||||
Bison output file, you may use that output file without restriction.
|
|
||||||
This special exception was added by the Free Software Foundation
|
|
||||||
in version 1.24 of Bison. */
|
|
||||||
|
|
||||||
/* Tokens. */
|
|
||||||
#ifndef YYTOKENTYPE
|
|
||||||
# define YYTOKENTYPE
|
|
||||||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
||||||
know about them. */
|
|
||||||
enum yytokentype {
|
|
||||||
ESINT64VAL = 258,
|
|
||||||
EUINT64VAL = 259,
|
|
||||||
SINTVAL = 260,
|
|
||||||
UINTVAL = 261,
|
|
||||||
FPVAL = 262,
|
|
||||||
VOID = 263,
|
|
||||||
BOOL = 264,
|
|
||||||
SBYTE = 265,
|
|
||||||
UBYTE = 266,
|
|
||||||
SHORT = 267,
|
|
||||||
USHORT = 268,
|
|
||||||
INT = 269,
|
|
||||||
UINT = 270,
|
|
||||||
LONG = 271,
|
|
||||||
ULONG = 272,
|
|
||||||
FLOAT = 273,
|
|
||||||
DOUBLE = 274,
|
|
||||||
TYPE = 275,
|
|
||||||
LABEL = 276,
|
|
||||||
VAR_ID = 277,
|
|
||||||
LABELSTR = 278,
|
|
||||||
STRINGCONSTANT = 279,
|
|
||||||
IMPLEMENTATION = 280,
|
|
||||||
ZEROINITIALIZER = 281,
|
|
||||||
TRUETOK = 282,
|
|
||||||
FALSETOK = 283,
|
|
||||||
BEGINTOK = 284,
|
|
||||||
ENDTOK = 285,
|
|
||||||
DECLARE = 286,
|
|
||||||
GLOBAL = 287,
|
|
||||||
CONSTANT = 288,
|
|
||||||
SECTION = 289,
|
|
||||||
VOLATILE = 290,
|
|
||||||
TO = 291,
|
|
||||||
DOTDOTDOT = 292,
|
|
||||||
NULL_TOK = 293,
|
|
||||||
UNDEF = 294,
|
|
||||||
CONST = 295,
|
|
||||||
INTERNAL = 296,
|
|
||||||
LINKONCE = 297,
|
|
||||||
WEAK = 298,
|
|
||||||
APPENDING = 299,
|
|
||||||
DLLIMPORT = 300,
|
|
||||||
DLLEXPORT = 301,
|
|
||||||
EXTERN_WEAK = 302,
|
|
||||||
OPAQUE = 303,
|
|
||||||
NOT = 304,
|
|
||||||
EXTERNAL = 305,
|
|
||||||
TARGET = 306,
|
|
||||||
TRIPLE = 307,
|
|
||||||
ENDIAN = 308,
|
|
||||||
POINTERSIZE = 309,
|
|
||||||
LITTLE = 310,
|
|
||||||
BIG = 311,
|
|
||||||
ALIGN = 312,
|
|
||||||
DEPLIBS = 313,
|
|
||||||
CALL = 314,
|
|
||||||
TAIL = 315,
|
|
||||||
ASM_TOK = 316,
|
|
||||||
MODULE = 317,
|
|
||||||
SIDEEFFECT = 318,
|
|
||||||
CC_TOK = 319,
|
|
||||||
CCC_TOK = 320,
|
|
||||||
CSRETCC_TOK = 321,
|
|
||||||
FASTCC_TOK = 322,
|
|
||||||
COLDCC_TOK = 323,
|
|
||||||
X86_STDCALLCC_TOK = 324,
|
|
||||||
X86_FASTCALLCC_TOK = 325,
|
|
||||||
DATALAYOUT = 326,
|
|
||||||
RET = 327,
|
|
||||||
BR = 328,
|
|
||||||
SWITCH = 329,
|
|
||||||
INVOKE = 330,
|
|
||||||
UNREACHABLE = 331,
|
|
||||||
UNWIND = 332,
|
|
||||||
EXCEPT = 333,
|
|
||||||
ADD = 334,
|
|
||||||
SUB = 335,
|
|
||||||
MUL = 336,
|
|
||||||
DIV = 337,
|
|
||||||
UDIV = 338,
|
|
||||||
SDIV = 339,
|
|
||||||
FDIV = 340,
|
|
||||||
REM = 341,
|
|
||||||
UREM = 342,
|
|
||||||
SREM = 343,
|
|
||||||
FREM = 344,
|
|
||||||
AND = 345,
|
|
||||||
OR = 346,
|
|
||||||
XOR = 347,
|
|
||||||
SHL = 348,
|
|
||||||
SHR = 349,
|
|
||||||
ASHR = 350,
|
|
||||||
LSHR = 351,
|
|
||||||
SETLE = 352,
|
|
||||||
SETGE = 353,
|
|
||||||
SETLT = 354,
|
|
||||||
SETGT = 355,
|
|
||||||
SETEQ = 356,
|
|
||||||
SETNE = 357,
|
|
||||||
ICMP = 358,
|
|
||||||
FCMP = 359,
|
|
||||||
MALLOC = 360,
|
|
||||||
ALLOCA = 361,
|
|
||||||
FREE = 362,
|
|
||||||
LOAD = 363,
|
|
||||||
STORE = 364,
|
|
||||||
GETELEMENTPTR = 365,
|
|
||||||
PHI_TOK = 366,
|
|
||||||
SELECT = 367,
|
|
||||||
VAARG = 368,
|
|
||||||
EXTRACTELEMENT = 369,
|
|
||||||
INSERTELEMENT = 370,
|
|
||||||
SHUFFLEVECTOR = 371,
|
|
||||||
VAARG_old = 372,
|
|
||||||
VANEXT_old = 373,
|
|
||||||
EQ = 374,
|
|
||||||
NE = 375,
|
|
||||||
SLT = 376,
|
|
||||||
SGT = 377,
|
|
||||||
SLE = 378,
|
|
||||||
SGE = 379,
|
|
||||||
ULT = 380,
|
|
||||||
UGT = 381,
|
|
||||||
ULE = 382,
|
|
||||||
UGE = 383,
|
|
||||||
OEQ = 384,
|
|
||||||
ONE = 385,
|
|
||||||
OLT = 386,
|
|
||||||
OGT = 387,
|
|
||||||
OLE = 388,
|
|
||||||
OGE = 389,
|
|
||||||
ORD = 390,
|
|
||||||
UNO = 391,
|
|
||||||
UEQ = 392,
|
|
||||||
UNE = 393,
|
|
||||||
CAST = 394,
|
|
||||||
TRUNC = 395,
|
|
||||||
ZEXT = 396,
|
|
||||||
SEXT = 397,
|
|
||||||
FPTRUNC = 398,
|
|
||||||
FPEXT = 399,
|
|
||||||
FPTOUI = 400,
|
|
||||||
FPTOSI = 401,
|
|
||||||
UITOFP = 402,
|
|
||||||
SITOFP = 403,
|
|
||||||
PTRTOINT = 404,
|
|
||||||
INTTOPTR = 405,
|
|
||||||
BITCAST = 406
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
#define ESINT64VAL 258
|
|
||||||
#define EUINT64VAL 259
|
|
||||||
#define SINTVAL 260
|
|
||||||
#define UINTVAL 261
|
|
||||||
#define FPVAL 262
|
|
||||||
#define VOID 263
|
|
||||||
#define BOOL 264
|
|
||||||
#define SBYTE 265
|
|
||||||
#define UBYTE 266
|
|
||||||
#define SHORT 267
|
|
||||||
#define USHORT 268
|
|
||||||
#define INT 269
|
|
||||||
#define UINT 270
|
|
||||||
#define LONG 271
|
|
||||||
#define ULONG 272
|
|
||||||
#define FLOAT 273
|
|
||||||
#define DOUBLE 274
|
|
||||||
#define TYPE 275
|
|
||||||
#define LABEL 276
|
|
||||||
#define VAR_ID 277
|
|
||||||
#define LABELSTR 278
|
|
||||||
#define STRINGCONSTANT 279
|
|
||||||
#define IMPLEMENTATION 280
|
|
||||||
#define ZEROINITIALIZER 281
|
|
||||||
#define TRUETOK 282
|
|
||||||
#define FALSETOK 283
|
|
||||||
#define BEGINTOK 284
|
|
||||||
#define ENDTOK 285
|
|
||||||
#define DECLARE 286
|
|
||||||
#define GLOBAL 287
|
|
||||||
#define CONSTANT 288
|
|
||||||
#define SECTION 289
|
|
||||||
#define VOLATILE 290
|
|
||||||
#define TO 291
|
|
||||||
#define DOTDOTDOT 292
|
|
||||||
#define NULL_TOK 293
|
|
||||||
#define UNDEF 294
|
|
||||||
#define CONST 295
|
|
||||||
#define INTERNAL 296
|
|
||||||
#define LINKONCE 297
|
|
||||||
#define WEAK 298
|
|
||||||
#define APPENDING 299
|
|
||||||
#define DLLIMPORT 300
|
|
||||||
#define DLLEXPORT 301
|
|
||||||
#define EXTERN_WEAK 302
|
|
||||||
#define OPAQUE 303
|
|
||||||
#define NOT 304
|
|
||||||
#define EXTERNAL 305
|
|
||||||
#define TARGET 306
|
|
||||||
#define TRIPLE 307
|
|
||||||
#define ENDIAN 308
|
|
||||||
#define POINTERSIZE 309
|
|
||||||
#define LITTLE 310
|
|
||||||
#define BIG 311
|
|
||||||
#define ALIGN 312
|
|
||||||
#define DEPLIBS 313
|
|
||||||
#define CALL 314
|
|
||||||
#define TAIL 315
|
|
||||||
#define ASM_TOK 316
|
|
||||||
#define MODULE 317
|
|
||||||
#define SIDEEFFECT 318
|
|
||||||
#define CC_TOK 319
|
|
||||||
#define CCC_TOK 320
|
|
||||||
#define CSRETCC_TOK 321
|
|
||||||
#define FASTCC_TOK 322
|
|
||||||
#define COLDCC_TOK 323
|
|
||||||
#define X86_STDCALLCC_TOK 324
|
|
||||||
#define X86_FASTCALLCC_TOK 325
|
|
||||||
#define DATALAYOUT 326
|
|
||||||
#define RET 327
|
|
||||||
#define BR 328
|
|
||||||
#define SWITCH 329
|
|
||||||
#define INVOKE 330
|
|
||||||
#define UNREACHABLE 331
|
|
||||||
#define UNWIND 332
|
|
||||||
#define EXCEPT 333
|
|
||||||
#define ADD 334
|
|
||||||
#define SUB 335
|
|
||||||
#define MUL 336
|
|
||||||
#define DIV 337
|
|
||||||
#define UDIV 338
|
|
||||||
#define SDIV 339
|
|
||||||
#define FDIV 340
|
|
||||||
#define REM 341
|
|
||||||
#define UREM 342
|
|
||||||
#define SREM 343
|
|
||||||
#define FREM 344
|
|
||||||
#define AND 345
|
|
||||||
#define OR 346
|
|
||||||
#define XOR 347
|
|
||||||
#define SHL 348
|
|
||||||
#define SHR 349
|
|
||||||
#define ASHR 350
|
|
||||||
#define LSHR 351
|
|
||||||
#define SETLE 352
|
|
||||||
#define SETGE 353
|
|
||||||
#define SETLT 354
|
|
||||||
#define SETGT 355
|
|
||||||
#define SETEQ 356
|
|
||||||
#define SETNE 357
|
|
||||||
#define ICMP 358
|
|
||||||
#define FCMP 359
|
|
||||||
#define MALLOC 360
|
|
||||||
#define ALLOCA 361
|
|
||||||
#define FREE 362
|
|
||||||
#define LOAD 363
|
|
||||||
#define STORE 364
|
|
||||||
#define GETELEMENTPTR 365
|
|
||||||
#define PHI_TOK 366
|
|
||||||
#define SELECT 367
|
|
||||||
#define VAARG 368
|
|
||||||
#define EXTRACTELEMENT 369
|
|
||||||
#define INSERTELEMENT 370
|
|
||||||
#define SHUFFLEVECTOR 371
|
|
||||||
#define VAARG_old 372
|
|
||||||
#define VANEXT_old 373
|
|
||||||
#define EQ 374
|
|
||||||
#define NE 375
|
|
||||||
#define SLT 376
|
|
||||||
#define SGT 377
|
|
||||||
#define SLE 378
|
|
||||||
#define SGE 379
|
|
||||||
#define ULT 380
|
|
||||||
#define UGT 381
|
|
||||||
#define ULE 382
|
|
||||||
#define UGE 383
|
|
||||||
#define OEQ 384
|
|
||||||
#define ONE 385
|
|
||||||
#define OLT 386
|
|
||||||
#define OGT 387
|
|
||||||
#define OLE 388
|
|
||||||
#define OGE 389
|
|
||||||
#define ORD 390
|
|
||||||
#define UNO 391
|
|
||||||
#define UEQ 392
|
|
||||||
#define UNE 393
|
|
||||||
#define CAST 394
|
|
||||||
#define TRUNC 395
|
|
||||||
#define ZEXT 396
|
|
||||||
#define SEXT 397
|
|
||||||
#define FPTRUNC 398
|
|
||||||
#define FPEXT 399
|
|
||||||
#define FPTOUI 400
|
|
||||||
#define FPTOSI 401
|
|
||||||
#define UITOFP 402
|
|
||||||
#define SITOFP 403
|
|
||||||
#define PTRTOINT 404
|
|
||||||
#define INTTOPTR 405
|
|
||||||
#define BITCAST 406
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
|
||||||
#line 1750 "/users/dag/projects/cascade/llvm.modified/tools/llvm-upgrade/UpgradeParser.y"
|
|
||||||
typedef union YYSTYPE {
|
|
||||||
llvm::Module *ModuleVal;
|
llvm::Module *ModuleVal;
|
||||||
llvm::Function *FunctionVal;
|
llvm::Function *FunctionVal;
|
||||||
std::pair<llvm::PATypeInfo, char*> *ArgVal;
|
std::pair<llvm::PATypeInfo, char*> *ArgVal;
|
||||||
|
@ -361,7 +24,7 @@ typedef union YYSTYPE {
|
||||||
uint64_t UInt64Val;
|
uint64_t UInt64Val;
|
||||||
int SIntVal;
|
int SIntVal;
|
||||||
unsigned UIntVal;
|
unsigned UIntVal;
|
||||||
double FPVal;
|
llvm::APFloat *FPVal;
|
||||||
bool BoolVal;
|
bool BoolVal;
|
||||||
|
|
||||||
char *StrVal; // This memory is strdup'd!
|
char *StrVal; // This memory is strdup'd!
|
||||||
|
@ -376,14 +39,155 @@ typedef union YYSTYPE {
|
||||||
llvm::FCmpInst::Predicate FPred;
|
llvm::FCmpInst::Predicate FPred;
|
||||||
llvm::Module::Endianness Endianness;
|
llvm::Module::Endianness Endianness;
|
||||||
} YYSTYPE;
|
} YYSTYPE;
|
||||||
/* Line 1268 of yacc.c. */
|
#define ESINT64VAL 257
|
||||||
#line 381 "UpgradeParser.tab.h"
|
#define EUINT64VAL 258
|
||||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
#define SINTVAL 259
|
||||||
# define YYSTYPE_IS_DECLARED 1
|
#define UINTVAL 260
|
||||||
# define YYSTYPE_IS_TRIVIAL 1
|
#define FPVAL 261
|
||||||
#endif
|
#define VOID 262
|
||||||
|
#define BOOL 263
|
||||||
|
#define SBYTE 264
|
||||||
|
#define UBYTE 265
|
||||||
|
#define SHORT 266
|
||||||
|
#define USHORT 267
|
||||||
|
#define INT 268
|
||||||
|
#define UINT 269
|
||||||
|
#define LONG 270
|
||||||
|
#define ULONG 271
|
||||||
|
#define FLOAT 272
|
||||||
|
#define DOUBLE 273
|
||||||
|
#define TYPE 274
|
||||||
|
#define LABEL 275
|
||||||
|
#define VAR_ID 276
|
||||||
|
#define LABELSTR 277
|
||||||
|
#define STRINGCONSTANT 278
|
||||||
|
#define IMPLEMENTATION 279
|
||||||
|
#define ZEROINITIALIZER 280
|
||||||
|
#define TRUETOK 281
|
||||||
|
#define FALSETOK 282
|
||||||
|
#define BEGINTOK 283
|
||||||
|
#define ENDTOK 284
|
||||||
|
#define DECLARE 285
|
||||||
|
#define GLOBAL 286
|
||||||
|
#define CONSTANT 287
|
||||||
|
#define SECTION 288
|
||||||
|
#define VOLATILE 289
|
||||||
|
#define TO 290
|
||||||
|
#define DOTDOTDOT 291
|
||||||
|
#define NULL_TOK 292
|
||||||
|
#define UNDEF 293
|
||||||
|
#define CONST 294
|
||||||
|
#define INTERNAL 295
|
||||||
|
#define LINKONCE 296
|
||||||
|
#define WEAK 297
|
||||||
|
#define APPENDING 298
|
||||||
|
#define DLLIMPORT 299
|
||||||
|
#define DLLEXPORT 300
|
||||||
|
#define EXTERN_WEAK 301
|
||||||
|
#define OPAQUE 302
|
||||||
|
#define NOT 303
|
||||||
|
#define EXTERNAL 304
|
||||||
|
#define TARGET 305
|
||||||
|
#define TRIPLE 306
|
||||||
|
#define ENDIAN 307
|
||||||
|
#define POINTERSIZE 308
|
||||||
|
#define LITTLE 309
|
||||||
|
#define BIG 310
|
||||||
|
#define ALIGN 311
|
||||||
|
#define DEPLIBS 312
|
||||||
|
#define CALL 313
|
||||||
|
#define TAIL 314
|
||||||
|
#define ASM_TOK 315
|
||||||
|
#define MODULE 316
|
||||||
|
#define SIDEEFFECT 317
|
||||||
|
#define CC_TOK 318
|
||||||
|
#define CCC_TOK 319
|
||||||
|
#define CSRETCC_TOK 320
|
||||||
|
#define FASTCC_TOK 321
|
||||||
|
#define COLDCC_TOK 322
|
||||||
|
#define X86_STDCALLCC_TOK 323
|
||||||
|
#define X86_FASTCALLCC_TOK 324
|
||||||
|
#define DATALAYOUT 325
|
||||||
|
#define RET 326
|
||||||
|
#define BR 327
|
||||||
|
#define SWITCH 328
|
||||||
|
#define INVOKE 329
|
||||||
|
#define UNREACHABLE 330
|
||||||
|
#define UNWIND 331
|
||||||
|
#define EXCEPT 332
|
||||||
|
#define ADD 333
|
||||||
|
#define SUB 334
|
||||||
|
#define MUL 335
|
||||||
|
#define DIV 336
|
||||||
|
#define UDIV 337
|
||||||
|
#define SDIV 338
|
||||||
|
#define FDIV 339
|
||||||
|
#define REM 340
|
||||||
|
#define UREM 341
|
||||||
|
#define SREM 342
|
||||||
|
#define FREM 343
|
||||||
|
#define AND 344
|
||||||
|
#define OR 345
|
||||||
|
#define XOR 346
|
||||||
|
#define SHL 347
|
||||||
|
#define SHR 348
|
||||||
|
#define ASHR 349
|
||||||
|
#define LSHR 350
|
||||||
|
#define SETLE 351
|
||||||
|
#define SETGE 352
|
||||||
|
#define SETLT 353
|
||||||
|
#define SETGT 354
|
||||||
|
#define SETEQ 355
|
||||||
|
#define SETNE 356
|
||||||
|
#define ICMP 357
|
||||||
|
#define FCMP 358
|
||||||
|
#define MALLOC 359
|
||||||
|
#define ALLOCA 360
|
||||||
|
#define FREE 361
|
||||||
|
#define LOAD 362
|
||||||
|
#define STORE 363
|
||||||
|
#define GETELEMENTPTR 364
|
||||||
|
#define PHI_TOK 365
|
||||||
|
#define SELECT 366
|
||||||
|
#define VAARG 367
|
||||||
|
#define EXTRACTELEMENT 368
|
||||||
|
#define INSERTELEMENT 369
|
||||||
|
#define SHUFFLEVECTOR 370
|
||||||
|
#define VAARG_old 371
|
||||||
|
#define VANEXT_old 372
|
||||||
|
#define EQ 373
|
||||||
|
#define NE 374
|
||||||
|
#define SLT 375
|
||||||
|
#define SGT 376
|
||||||
|
#define SLE 377
|
||||||
|
#define SGE 378
|
||||||
|
#define ULT 379
|
||||||
|
#define UGT 380
|
||||||
|
#define ULE 381
|
||||||
|
#define UGE 382
|
||||||
|
#define OEQ 383
|
||||||
|
#define ONE 384
|
||||||
|
#define OLT 385
|
||||||
|
#define OGT 386
|
||||||
|
#define OLE 387
|
||||||
|
#define OGE 388
|
||||||
|
#define ORD 389
|
||||||
|
#define UNO 390
|
||||||
|
#define UEQ 391
|
||||||
|
#define UNE 392
|
||||||
|
#define CAST 393
|
||||||
|
#define TRUNC 394
|
||||||
|
#define ZEXT 395
|
||||||
|
#define SEXT 396
|
||||||
|
#define FPTRUNC 397
|
||||||
|
#define FPEXT 398
|
||||||
|
#define FPTOUI 399
|
||||||
|
#define FPTOSI 400
|
||||||
|
#define UITOFP 401
|
||||||
|
#define SITOFP 402
|
||||||
|
#define PTRTOINT 403
|
||||||
|
#define INTTOPTR 404
|
||||||
|
#define BITCAST 405
|
||||||
|
|
||||||
|
|
||||||
extern YYSTYPE Upgradelval;
|
extern YYSTYPE Upgradelval;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2525,6 +2525,7 @@ ConstVal
|
||||||
if ($1.T==Type::FloatTy)
|
if ($1.T==Type::FloatTy)
|
||||||
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
||||||
$$.C = ConstantFP::get($1.T, *$2);
|
$$.C = ConstantFP::get($1.T, *$2);
|
||||||
|
delete $2;
|
||||||
$$.S.makeSignless();
|
$$.S.makeSignless();
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
|
@ -2525,6 +2525,7 @@ ConstVal
|
||||||
if ($1.T==Type::FloatTy)
|
if ($1.T==Type::FloatTy)
|
||||||
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
$2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
|
||||||
$$.C = ConstantFP::get($1.T, *$2);
|
$$.C = ConstantFP::get($1.T, *$2);
|
||||||
|
delete $2;
|
||||||
$$.S.makeSignless();
|
$$.S.makeSignless();
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in New Issue