aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser/llvmAsmParser.cpp.cvs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/AsmParser/llvmAsmParser.cpp.cvs')
-rw-r--r--lib/AsmParser/llvmAsmParser.cpp.cvs2160
1 files changed, 1095 insertions, 1065 deletions
diff --git a/lib/AsmParser/llvmAsmParser.cpp.cvs b/lib/AsmParser/llvmAsmParser.cpp.cvs
index 6837528d6c..f8dba72ec0 100644
--- a/lib/AsmParser/llvmAsmParser.cpp.cvs
+++ b/lib/AsmParser/llvmAsmParser.cpp.cvs
@@ -145,33 +145,35 @@
UDIV = 336,
SDIV = 337,
FDIV = 338,
- REM = 339,
- AND = 340,
- OR = 341,
- XOR = 342,
- SETLE = 343,
- SETGE = 344,
- SETLT = 345,
- SETGT = 346,
- SETEQ = 347,
- SETNE = 348,
- MALLOC = 349,
- ALLOCA = 350,
- FREE = 351,
- LOAD = 352,
- STORE = 353,
- GETELEMENTPTR = 354,
- PHI_TOK = 355,
- CAST = 356,
- SELECT = 357,
- SHL = 358,
- SHR = 359,
- VAARG = 360,
- EXTRACTELEMENT = 361,
- INSERTELEMENT = 362,
- SHUFFLEVECTOR = 363,
- VAARG_old = 364,
- VANEXT_old = 365
+ UREM = 339,
+ SREM = 340,
+ FREM = 341,
+ AND = 342,
+ OR = 343,
+ XOR = 344,
+ SETLE = 345,
+ SETGE = 346,
+ SETLT = 347,
+ SETGT = 348,
+ SETEQ = 349,
+ SETNE = 350,
+ MALLOC = 351,
+ ALLOCA = 352,
+ FREE = 353,
+ LOAD = 354,
+ STORE = 355,
+ GETELEMENTPTR = 356,
+ PHI_TOK = 357,
+ CAST = 358,
+ SELECT = 359,
+ SHL = 360,
+ SHR = 361,
+ VAARG = 362,
+ EXTRACTELEMENT = 363,
+ INSERTELEMENT = 364,
+ SHUFFLEVECTOR = 365,
+ VAARG_old = 366,
+ VANEXT_old = 367
};
#endif
/* Tokens. */
@@ -256,39 +258,41 @@
#define UDIV 336
#define SDIV 337
#define FDIV 338
-#define REM 339
-#define AND 340
-#define OR 341
-#define XOR 342
-#define SETLE 343
-#define SETGE 344
-#define SETLT 345
-#define SETGT 346
-#define SETEQ 347
-#define SETNE 348
-#define MALLOC 349
-#define ALLOCA 350
-#define FREE 351
-#define LOAD 352
-#define STORE 353
-#define GETELEMENTPTR 354
-#define PHI_TOK 355
-#define CAST 356
-#define SELECT 357
-#define SHL 358
-#define SHR 359
-#define VAARG 360
-#define EXTRACTELEMENT 361
-#define INSERTELEMENT 362
-#define SHUFFLEVECTOR 363
-#define VAARG_old 364
-#define VANEXT_old 365
+#define UREM 339
+#define SREM 340
+#define FREM 341
+#define AND 342
+#define OR 343
+#define XOR 344
+#define SETLE 345
+#define SETGE 346
+#define SETLT 347
+#define SETGT 348
+#define SETEQ 349
+#define SETNE 350
+#define MALLOC 351
+#define ALLOCA 352
+#define FREE 353
+#define LOAD 354
+#define STORE 355
+#define GETELEMENTPTR 356
+#define PHI_TOK 357
+#define CAST 358
+#define SELECT 359
+#define SHL 360
+#define SHR 361
+#define VAARG 362
+#define EXTRACTELEMENT 363
+#define INSERTELEMENT 364
+#define SHUFFLEVECTOR 365
+#define VAARG_old 366
+#define VANEXT_old 367
/* Copy the first part of user declarations. */
-#line 14 "/proj/llvm/llvm/lib/AsmParser/llvmAsmParser.y"
+#line 14 "/proj/llvm/llvm-4/lib/AsmParser/llvmAsmParser.y"
#include "ParserInternals.h"
#include "llvm/CallingConv.h"
@@ -1114,7 +1118,7 @@ sanitizeOpCode(OpcodeInfo<Instruction::BinaryOps> &OI, const PATypeHolder& PATy)
// Depending on the opcode ..
switch (OI.opcode) {
default:
- GenerateError("Invalid Obsolete OpCode");
+ GenerateError("Invalid obsolete opCode (check Lexer.l)");
break;
case Instruction::UDiv:
// Handle cases where the opcode needs to change
@@ -1123,12 +1127,17 @@ sanitizeOpCode(OpcodeInfo<Instruction::BinaryOps> &OI, const PATypeHolder& PATy)
else if (Ty->isSigned())
OI.opcode = Instruction::SDiv;
break;
+ case Instruction::URem:
+ if (Ty->isFloatingPoint())
+ OI.opcode = Instruction::FRem;
+ else if (Ty->isSigned())
+ OI.opcode = Instruction::SRem;
+ break;
}
// Its not obsolete any more, we fixed it.
OI.obsolete = false;
}
-
-
+
// common code from the two 'RunVMAsmParser' functions
static Module* RunParser(Module * M) {
@@ -1305,7 +1314,7 @@ Module *llvm::RunVMAsmParser(const char * AsmString, Module * M) {
#endif
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
-#line 1011 "/proj/llvm/llvm/lib/AsmParser/llvmAsmParser.y"
+#line 1016 "/proj/llvm/llvm-4/lib/AsmParser/llvmAsmParser.y"
typedef union YYSTYPE {
llvm::Module *ModuleVal;
llvm::Function *FunctionVal;
@@ -1346,7 +1355,7 @@ typedef union YYSTYPE {
llvm::Module::Endianness Endianness;
} YYSTYPE;
/* Line 196 of yacc.c. */
-#line 1350 "llvmAsmParser.tab.c"
+#line 1359 "llvmAsmParser.tab.c"
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
@@ -1358,7 +1367,7 @@ typedef union YYSTYPE {
/* Line 219 of yacc.c. */
-#line 1362 "llvmAsmParser.tab.c"
+#line 1371 "llvmAsmParser.tab.c"
#if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
# define YYSIZE_T __SIZE_TYPE__
@@ -1509,20 +1518,20 @@ union yyalloc
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 4
/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 1288
+#define YYLAST 1357
/* YYNTOKENS -- Number of terminals. */
-#define YYNTOKENS 125
+#define YYNTOKENS 127
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 75
/* YYNRULES -- Number of rules. */
-#define YYNRULES 254
+#define YYNRULES 256
/* YYNRULES -- Number of states. */
-#define YYNSTATES 519
+#define YYNSTATES 521
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
-#define YYMAXUTOK 365
+#define YYMAXUTOK 367
#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
@@ -1534,15 +1543,15 @@ static const unsigned char yytranslate[] =
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 114, 115, 123, 2, 112, 2, 2, 2, 2, 2,
+ 116, 117, 125, 2, 114, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 119, 111, 120, 2, 2, 2, 2, 2, 2, 2,
+ 121, 113, 122, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 116, 113, 118, 2, 2, 2, 2, 2, 124,
+ 2, 118, 115, 120, 2, 2, 2, 2, 2, 126,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 117, 2, 2, 121, 2, 122, 2, 2, 2, 2,
+ 119, 2, 2, 123, 2, 124, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
@@ -1566,7 +1575,7 @@ static const unsigned char yytranslate[] =
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
- 105, 106, 107, 108, 109, 110
+ 105, 106, 107, 108, 109, 110, 111, 112
};
#if YYDEBUG
@@ -1577,148 +1586,148 @@ static const unsigned short int yyprhs[] =
0, 0, 3, 5, 7, 9, 11, 13, 15, 17,
19, 21, 23, 25, 27, 29, 31, 33, 35, 37,
39, 41, 43, 45, 47, 49, 51, 53, 55, 57,
- 59, 61, 63, 65, 67, 69, 71, 74, 75, 77,
- 79, 81, 83, 85, 87, 89, 90, 91, 93, 95,
- 97, 99, 101, 103, 106, 107, 110, 111, 115, 118,
- 119, 121, 122, 126, 128, 131, 133, 135, 137, 139,
+ 59, 61, 63, 65, 67, 69, 71, 73, 75, 78,
+ 79, 81, 83, 85, 87, 89, 91, 93, 94, 95,
+ 97, 99, 101, 103, 105, 107, 110, 111, 114, 115,
+ 119, 122, 123, 125, 126, 130, 132, 135, 137, 139,
141, 143, 145, 147, 149, 151, 153, 155, 157, 159,
- 161, 163, 165, 167, 169, 171, 173, 176, 181, 187,
- 193, 197, 200, 203, 205, 209, 211, 215, 217, 218,
- 223, 227, 231, 236, 241, 245, 248, 251, 254, 257,
- 260, 263, 266, 269, 272, 275, 282, 288, 297, 304,
- 311, 318, 325, 332, 341, 350, 354, 356, 358, 360,
- 362, 365, 368, 373, 376, 378, 383, 386, 391, 392,
- 400, 401, 409, 410, 418, 419, 427, 431, 436, 437,
- 439, 441, 443, 447, 451, 455, 459, 463, 467, 469,
- 470, 472, 474, 476, 477, 480, 484, 486, 488, 492,
- 494, 495, 504, 506, 508, 512, 514, 516, 519, 520,
- 522, 524, 525, 530, 531, 533, 535, 537, 539, 541,
- 543, 545, 547, 549, 553, 555, 561, 563, 565, 567,
- 569, 572, 575, 578, 582, 585, 586, 588, 591, 594,
- 598, 608, 618, 627, 641, 643, 645, 652, 658, 661,
- 668, 676, 678, 682, 684, 685, 688, 690, 696, 702,
- 708, 711, 716, 721, 728, 733, 738, 743, 748, 755,
- 762, 765, 773, 775, 778, 779, 781, 782, 786, 793,
- 797, 804, 807, 812, 819
+ 161, 163, 165, 167, 169, 171, 173, 175, 177, 180,
+ 185, 191, 197, 201, 204, 207, 209, 213, 215, 219,
+ 221, 222, 227, 231, 235, 240, 245, 249, 252, 255,
+ 258, 261, 264, 267, 270, 273, 276, 279, 286, 292,
+ 301, 308, 315, 322, 329, 336, 345, 354, 358, 360,
+ 362, 364, 366, 369, 372, 377, 380, 382, 387, 390,
+ 395, 396, 404, 405, 413, 414, 422, 423, 431, 435,
+ 440, 441, 443, 445, 447, 451, 455, 459, 463, 467,
+ 471, 473, 474, 476, 478, 480, 481, 484, 488, 490,
+ 492, 496, 498, 499, 508, 510, 512, 516, 518, 520,
+ 523, 524, 526, 528, 529, 534, 535, 537, 539, 541,
+ 543, 545, 547, 549, 551, 553, 557, 559, 565, 567,
+ 569, 571, 573, 576, 579, 582, 586, 589, 590, 592,
+ 595, 598, 602, 612, 622, 631, 645, 647, 649, 656,
+ 662, 665, 672, 680, 682, 686, 688, 689, 692, 694,
+ 700, 706, 712, 715, 720, 725, 732, 737, 742, 747,
+ 752, 759, 766, 769, 777, 779, 782, 783, 785, 786,
+ 790, 797, 801, 808, 811, 816, 823
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const short int yyrhs[] =
{
- 156, 0, -1, 5, -1, 6, -1, 3, -1, 4,
+ 158, 0, -1, 5, -1, 6, -1, 3, -1, 4,
-1, 78, -1, 79, -1, 80, -1, 81, -1, 82,
-1, 83, -1, 84, -1, 85, -1, 86, -1, 87,
-1, 88, -1, 89, -1, 90, -1, 91, -1, 92,
- -1, 93, -1, 103, -1, 104, -1, 16, -1, 14,
- -1, 12, -1, 10, -1, 17, -1, 15, -1, 13,
- -1, 11, -1, 132, -1, 133, -1, 18, -1, 19,
- -1, 168, 111, -1, -1, 41, -1, 42, -1, 43,
- -1, 44, -1, 45, -1, 46, -1, 47, -1, -1,
- -1, 65, -1, 66, -1, 67, -1, 68, -1, 69,
- -1, 70, -1, 64, 4, -1, -1, 57, 4, -1,
- -1, 112, 57, 4, -1, 34, 24, -1, -1, 141,
- -1, -1, 112, 144, 143, -1, 141, -1, 57, 4,
- -1, 147, -1, 8, -1, 149, -1, 8, -1, 149,
- -1, 9, -1, 10, -1, 11, -1, 12, -1, 13,
- -1, 14, -1, 15, -1, 16, -1, 17, -1, 18,
- -1, 19, -1, 20, -1, 21, -1, 48, -1, 148,
- -1, 183, -1, 113, 4, -1, 146, 114, 151, 115,
- -1, 116, 4, 117, 149, 118, -1, 119, 4, 117,
- 149, 120, -1, 121, 150, 122, -1, 121, 122, -1,
- 149, 123, -1, 149, -1, 150, 112, 149, -1, 150,
- -1, 150, 112, 37, -1, 37, -1, -1, 147, 116,
- 154, 118, -1, 147, 116, 118, -1, 147, 124, 24,
- -1, 147, 119, 154, 120, -1, 147, 121, 154, 122,
- -1, 147, 121, 122, -1, 147, 38, -1, 147, 39,
- -1, 147, 183, -1, 147, 153, -1, 147, 26, -1,
- 132, 127, -1, 133, 4, -1, 9, 27, -1, 9,
- 28, -1, 135, 7, -1, 101, 114, 152, 36, 147,
- 115, -1, 99, 114, 152, 197, 115, -1, 102, 114,
- 152, 112, 152, 112, 152, 115, -1, 128, 114, 152,
- 112, 152, 115, -1, 129, 114, 152, 112, 152, 115,
- -1, 130, 114, 152, 112, 152, 115, -1, 131, 114,
- 152, 112, 152, 115, -1, 106, 114, 152, 112, 152,
- 115, -1, 107, 114, 152, 112, 152, 112, 152, 115,
- -1, 108, 114, 152, 112, 152, 112, 152, 115, -1,
- 154, 112, 152, -1, 152, -1, 32, -1, 33, -1,
- 157, -1, 157, 177, -1, 157, 179, -1, 157, 62,
- 61, 163, -1, 157, 25, -1, 158, -1, 158, 136,
- 20, 145, -1, 158, 179, -1, 158, 62, 61, 163,
- -1, -1, 158, 136, 137, 155, 152, 159, 143, -1,
- -1, 158, 136, 50, 155, 147, 160, 143, -1, -1,
- 158, 136, 45, 155, 147, 161, 143, -1, -1, 158,
- 136, 47, 155, 147, 162, 143, -1, 158, 51, 165,
- -1, 158, 58, 111, 166, -1, -1, 24, -1, 56,
- -1, 55, -1, 53, 111, 164, -1, 54, 111, 4,
- -1, 52, 111, 24, -1, 71, 111, 24, -1, 116,
- 167, 118, -1, 167, 112, 24, -1, 24, -1, -1,
- 22, -1, 24, -1, 168, -1, -1, 147, 169, -1,
- 171, 112, 170, -1, 170, -1, 171, -1, 171, 112,
- 37, -1, 37, -1, -1, 138, 145, 168, 114, 172,
- 115, 142, 139, -1, 29, -1, 121, -1, 137, 173,
- 174, -1, 30, -1, 122, -1, 186, 176, -1, -1,
- 45, -1, 47, -1, -1, 31, 180, 178, 173, -1,
- -1, 63, -1, 3, -1, 4, -1, 7, -1, 27,
- -1, 28, -1, 38, -1, 39, -1, 26, -1, 119,
- 154, 120, -1, 153, -1, 61, 181, 24, 112, 24,
- -1, 126, -1, 168, -1, 183, -1, 182, -1, 147,
- 184, -1, 186, 187, -1, 175, 187, -1, 188, 136,
- 189, -1, 188, 191, -1, -1, 23, -1, 72, 185,
- -1, 72, 8, -1, 73, 21, 184, -1, 73, 9,
- 184, 112, 21, 184, 112, 21, 184, -1, 74, 134,
- 184, 112, 21, 184, 116, 190, 118, -1, 74, 134,
- 184, 112, 21, 184, 116, 118, -1, 75, 138, 145,
- 184, 114, 194, 115, 36, 21, 184, 76, 21, 184,
- -1, 76, -1, 77, -1, 190, 134, 182, 112, 21,
- 184, -1, 134, 182, 112, 21, 184, -1, 136, 196,
- -1, 147, 116, 184, 112, 184, 118, -1, 192, 112,
- 116, 184, 112, 184, 118, -1, 185, -1, 193, 112,
- 185, -1, 193, -1, -1, 60, 59, -1, 59, -1,
- 128, 147, 184, 112, 184, -1, 129, 147, 184, 112,
- 184, -1, 130, 147, 184, 112, 184, -1, 49, 185,
- -1, 131, 185, 112, 185, -1, 101, 185, 36, 147,
- -1, 102, 185, 112, 185, 112, 185, -1, 105, 185,
- 112, 147, -1, 109, 185, 112, 147, -1, 110, 185,
- 112, 147, -1, 106, 185, 112, 185, -1, 107, 185,
- 112, 185, 112, 185, -1, 108, 185, 112, 185, 112,
- 185, -1, 100, 192, -1, 195, 138, 145, 184, 114,
- 194, 115, -1, 199, -1, 112, 193, -1, -1, 35,
- -1, -1, 94, 147, 140, -1, 94, 147, 112, 15,
- 184, 140, -1, 95, 147, 140, -1, 95, 147, 112,
- 15, 184, 140, -1, 96, 185, -1, 198, 97, 147,
- 184, -1, 198, 98, 185, 112, 147, 184, -1, 99,
- 147, 184, 197, -1
+ -1, 93, -1, 94, -1, 95, -1, 105, -1, 106,
+ -1, 16, -1, 14, -1, 12, -1, 10, -1, 17,
+ -1, 15, -1, 13, -1, 11, -1, 134, -1, 135,
+ -1, 18, -1, 19, -1, 170, 113, -1, -1, 41,
+ -1, 42, -1, 43, -1, 44, -1, 45, -1, 46,
+ -1, 47, -1, -1, -1, 65, -1, 66, -1, 67,
+ -1, 68, -1, 69, -1, 70, -1, 64, 4, -1,
+ -1, 57, 4, -1, -1, 114, 57, 4, -1, 34,
+ 24, -1, -1, 143, -1, -1, 114, 146, 145, -1,
+ 143, -1, 57, 4, -1, 149, -1, 8, -1, 151,
+ -1, 8, -1, 151, -1, 9, -1, 10, -1, 11,
+ -1, 12, -1, 13, -1, 14, -1, 15, -1, 16,
+ -1, 17, -1, 18, -1, 19, -1, 20, -1, 21,
+ -1, 48, -1, 150, -1, 185, -1, 115, 4, -1,
+ 148, 116, 153, 117, -1, 118, 4, 119, 151, 120,
+ -1, 121, 4, 119, 151, 122, -1, 123, 152, 124,
+ -1, 123, 124, -1, 151, 125, -1, 151, -1, 152,
+ 114, 151, -1, 152, -1, 152, 114, 37, -1, 37,
+ -1, -1, 149, 118, 156, 120, -1, 149, 118, 120,
+ -1, 149, 126, 24, -1, 149, 121, 156, 122, -1,
+ 149, 123, 156, 124, -1, 149, 123, 124, -1, 149,
+ 38, -1, 149, 39, -1, 149, 185, -1, 149, 155,
+ -1, 149, 26, -1, 134, 129, -1, 135, 4, -1,
+ 9, 27, -1, 9, 28, -1, 137, 7, -1, 103,
+ 116, 154, 36, 149, 117, -1, 101, 116, 154, 199,
+ 117, -1, 104, 116, 154, 114, 154, 114, 154, 117,
+ -1, 130, 116, 154, 114, 154, 117, -1, 131, 116,
+ 154, 114, 154, 117, -1, 132, 116, 154, 114, 154,
+ 117, -1, 133, 116, 154, 114, 154, 117, -1, 108,
+ 116, 154, 114, 154, 117, -1, 109, 116, 154, 114,
+ 154, 114, 154, 117, -1, 110, 116, 154, 114, 154,
+ 114, 154, 117, -1, 156, 114, 154, -1, 154, -1,
+ 32, -1, 33, -1, 159, -1, 159, 179, -1, 159,
+ 181, -1, 159, 62, 61, 165, -1, 159, 25, -1,
+ 160, -1, 160, 138, 20, 147, -1, 160, 181, -1,
+ 160, 62, 61, 165, -1, -1, 160, 138, 139, 157,
+ 154, 161, 145, -1, -1, 160, 138, 50, 157, 149,
+ 162, 145, -1, -1, 160, 138, 45, 157, 149, 163,
+ 145, -1, -1, 160, 138, 47, 157, 149, 164, 145,
+ -1, 160, 51, 167, -1, 160, 58, 113, 168, -1,
+ -1, 24, -1, 56, -1, 55, -1, 53, 113, 166,
+ -1, 54, 113, 4, -1, 52, 113, 24, -1, 71,
+ 113, 24, -1, 118, 169, 120, -1, 169, 114, 24,
+ -1, 24, -1, -1, 22, -1, 24, -1, 170, -1,
+ -1, 149, 171, -1, 173, 114, 172, -1, 172, -1,
+ 173, -1, 173, 114, 37, -1, 37, -1, -1, 140,
+ 147, 170, 116, 174, 117, 144, 141, -1, 29, -1,
+ 123, -1, 139, 175, 176, -1, 30, -1, 124, -1,
+ 188, 178, -1, -1, 45, -1, 47, -1, -1, 31,
+ 182, 180, 175, -1, -1, 63, -1, 3, -1, 4,
+ -1, 7, -1, 27, -1, 28, -1, 38, -1, 39,
+ -1, 26, -1, 121, 156, 122, -1, 155, -1, 61,
+ 183, 24, 114, 24, -1, 128, -1, 170, -1, 185,
+ -1, 184, -1, 149, 186, -1, 188, 189, -1, 177,
+ 189, -1, 190, 138, 191, -1, 190, 193, -1, -1,
+ 23, -1, 72, 187, -1, 72, 8, -1, 73, 21,
+ 186, -1, 73, 9, 186, 114, 21, 186, 114, 21,
+ 186, -1, 74, 136, 186, 114, 21, 186, 118, 192,
+ 120, -1, 74, 136, 186, 114, 21, 186, 118, 120,
+ -1, 75, 140, 147, 186, 116, 196, 117, 36, 21,
+ 186, 76, 21, 186, -1, 76, -1, 77, -1, 192,
+ 136, 184, 114, 21, 186, -1, 136, 184, 114, 21,
+ 186, -1, 138, 198, -1, 149, 118, 186, 114, 186,
+ 120, -1, 194, 114, 118, 186, 114, 186, 120, -1,
+ 187, -1, 195, 114, 187, -1, 195, -1, -1, 60,
+ 59, -1, 59, -1, 130, 149, 186, 114, 186, -1,
+ 131, 149, 186, 114, 186, -1, 132, 149, 186, 114,
+ 186, -1, 49, 187, -1, 133, 187, 114, 187, -1,
+ 103, 187, 36, 149, -1, 104, 187, 114, 187, 114,
+ 187, -1, 107, 187, 114, 149, -1, 111, 187, 114,
+ 149, -1, 112, 187, 114, 149, -1, 108, 187, 114,
+ 187, -1, 109, 187, 114, 187, 114, 187, -1, 110,
+ 187, 114, 187, 114, 187, -1, 102, 194, -1, 197,
+ 140, 147, 186, 116, 196, 117, -1, 201, -1, 114,
+ 195, -1, -1, 35, -1, -1, 96, 149, 142, -1,
+ 96, 149, 114, 15, 186, 142, -1, 97, 149, 142,
+ -1, 97, 149, 114, 15, 186, 142, -1, 98, 187,
+ -1, 200, 99, 149, 186, -1, 200, 100, 187, 114,
+ 149, 186, -1, 101, 149, 186, 199, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const unsigned short int yyrline[] =
{
- 0, 1134, 1134, 1135, 1143, 1144, 1154, 1154, 1154, 1154,
- 1154, 1154, 1154, 1155, 1155, 1155, 1156, 1156, 1156, 1156,
- 1156, 1156, 1158, 1158, 1162, 1162, 1162, 1162, 1163, 1163,
- 1163, 1163, 1164, 1164, 1165, 1165, 1168, 1172, 1177, 1178,
- 1179, 1180, 1181, 1182, 1183, 1184, 1186, 1187, 1188, 1189,
- 1190, 1191, 1192, 1193, 1202, 1203, 1209, 1210, 1218, 1226,
- 1227, 1232, 1233, 1234, 1239, 1253, 1253, 1254, 1254, 1256,
- 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1267, 1267, 1267,
- 1267, 1267, 1267, 1268, 1272, 1276, 1284, 1292, 1305, 1310,
- 1322, 1332, 1336, 1347, 1352, 1358, 1359, 1363, 1367, 1378,
- 1404, 1418, 1448, 1474, 1495, 1508, 1518, 1523, 1584, 1591,
- 1600, 1606, 1612, 1616, 1620, 1628, 1639, 1671, 1679, 1706,
- 1717, 1723, 1731, 1737, 1743, 1752, 1756, 1764, 1764, 1774,
- 1782, 1787, 1791, 1795, 1799, 1814, 1836, 1839, 1842, 1842,
- 1850, 1850, 1858, 1858, 1866, 1866, 1875, 1878, 1881, 1885,
- 1898, 1899, 1901, 1905, 1914, 1918, 1923, 1925, 1930, 1935,
- 1944, 1944, 1945, 1945, 1947, 1954, 1960, 1967, 1971, 1977,
- 1982, 1987, 2082, 2082, 2084, 2092, 2092, 2094, 2099, 2100,
- 2101, 2103, 2103, 2113, 2117, 2122, 2126, 2130, 2134, 2138,
- 2142, 2146, 2150, 2154, 2179, 2183, 2197, 2201, 2207, 2207,
- 2213, 2218, 2222, 2231, 2242, 2247, 2259, 2272, 2276, 2280,
- 2285, 2294, 2313, 2322, 2378, 2382, 2389, 2400, 2413, 2422,
- 2431, 2441, 2445, 2452, 2452, 2454, 2458, 2463, 2482, 2497,
- 2511, 2524, 2532, 2540, 2548, 2554, 2574, 2597, 2603, 2609,
- 2615, 2630, 2689, 2696, 2699, 2704, 2708, 2715, 2720, 2726,
- 2731, 2737, 2745, 2757, 2772
+ 0, 1139, 1139, 1140, 1148, 1149, 1159, 1159, 1159, 1159,
+ 1159, 1159, 1159, 1159, 1159, 1160, 1160, 1160, 1161, 1161,
+ 1161, 1161, 1161, 1161, 1163, 1163, 1167, 1167, 1167, 1167,
+ 1168, 1168, 1168, 1168, 1169, 1169, 1170, 1170, 1173, 1177,
+ 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1191, 1192,
+ 1193, 1194, 1195, 1196, 1197, 1198, 1207, 1208, 1214, 1215,
+ 1223, 1231, 1232, 1237, 1238, 1239, 1244, 1258, 1258, 1259,
+ 1259, 1261, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1272,
+ 1272, 1272, 1272, 1272, 1272, 1273, 1277, 1281, 1289, 1297,
+ 1310, 1315, 1327, 1337, 1341, 1352, 1357, 1363, 1364, 1368,
+ 1372, 1383, 1409, 1423, 1453, 1479, 1500, 1513, 1523, 1528,
+ 1589, 1596, 1605, 1611, 1617, 1621, 1625, 1633, 1644, 1676,
+ 1684, 1711, 1722, 1728, 1736, 1742, 1748, 1757, 1761, 1769,
+ 1769, 1779, 1787, 1792, 1796, 1800, 1804, 1819, 1841, 1844,
+ 1847, 1847, 1855, 1855, 1863, 1863, 1871, 1871, 1880, 1883,
+ 1886, 1890, 1903, 1904, 1906, 1910, 1919, 1923, 1928, 1930,
+ 1935, 1940, 1949, 1949, 1950, 1950, 1952, 1959, 1965, 1972,
+ 1976, 1982, 1987, 1992, 2087, 2087, 2089, 2097, 2097, 2099,
+ 2104, 2105, 2106, 2108, 2108, 2118, 2122, 2127, 2131, 2135,
+ 2139, 2143, 2147, 2151, 2155, 2159, 2184, 2188, 2202, 2206,
+ 2212, 2212, 2218, 2223, 2227, 2236, 2247, 2252, 2264, 2277,
+ 2281, 2285, 2290, 2299, 2318, 2327, 2383, 2387, 2394, 2405,
+ 2418, 2427, 2436, 2446, 2450, 2457, 2457, 2459, 2463, 2468,
+ 2490, 2505, 2519, 2532, 2540, 2548, 2556, 2562, 2582, 2605,
+ 2611, 2617, 2623, 2638, 2697, 2704, 2707, 2712, 2716, 2723,
+ 2728, 2734, 2739, 2745, 2753, 2765, 2780
};
#endif
@@ -1740,27 +1749,28 @@ static const char *const yytname[] =
"SIDEEFFECT", "CC_TOK", "CCC_TOK", "CSRETCC_TOK", "FASTCC_TOK",
"COLDCC_TOK", "X86_STDCALLCC_TOK", "X86_FASTCALLCC_TOK", "DATALAYOUT",
"RET", "BR", "SWITCH", "INVOKE", "UNWIND", "UNREACHABLE", "ADD", "SUB",
- "MUL", "UDIV", "SDIV", "FDIV", "REM", "AND", "OR", "XOR", "SETLE",
- "SETGE", "SETLT", "SETGT", "SETEQ", "SETNE", "MALLOC", "ALLOCA", "FREE",
- "LOAD", "STORE", "GETELEMENTPTR", "PHI_TOK", "CAST", "SELECT", "SHL",
- "SHR", "VAARG", "EXTRACTELEMENT", "INSERTELEMENT", "SHUFFLEVECTOR",
- "VAARG_old", "VANEXT_old", "'='", "','", "'\\\\'", "'('", "')'", "'['",
- "'x'", "']'", "'<'", "'>'", "'{'", "'}'", "'*'", "'c'", "$accept",
- "INTVAL", "EINT64VAL", "ArithmeticOps", "LogicalOps", "SetCondOps",
- "ShiftOps", "SIntType", "UIntType", "IntType", "FPType", "OptAssign",
- "OptLinkage", "OptCallingConv", "OptAlign", "OptCAlign", "SectionString",
- "OptSection", "GlobalVarAttributes", "GlobalVarAttribute", "TypesV",
- "UpRTypesV", "Types", "PrimType", "UpRTypes", "TypeListI",
- "ArgTypeListI", "ConstVal", "ConstExpr", "ConstVector", "GlobalType",
- "Module", "FunctionList", "ConstPool", "@1", "@2", "@3", "@4",
- "AsmBlock", "BigOrLittle", "TargetDefinition", "LibrariesDefinition",
- "LibList", "Name", "OptName", "ArgVal", "ArgListH", "ArgList",
- "FunctionHeaderH", "BEGIN", "FunctionHeader", "END", "Function",
- "FnDeclareLinkage", "FunctionProto", "@5", "OptSideEffect",
- "ConstValueRef", "SymbolicValueRef", "ValueRef", "ResolvedVal",
- "BasicBlockList", "BasicBlock", "InstructionList", "BBTerminatorInst",
- "JumpTable", "Inst", "PHIList", "ValueRefList", "ValueRefListE",
- "OptTailCall", "InstVal", "IndexList", "OptVolatile", "MemoryInst", 0
+ "MUL", "UDIV", "SDIV", "FDIV", "UREM", "SREM", "FREM", "AND", "OR",
+ "XOR", "SETLE", "SETGE", "SETLT", "SETGT", "SETEQ", "SETNE", "MALLOC",
+ "ALLOCA", "FREE", "LOAD", "STORE", "GETELEMENTPTR", "PHI_TOK", "CAST",
+ "SELECT", "SHL", "SHR", "VAARG", "EXTRACTELEMENT", "INSERTELEMENT",
+ "SHUFFLEVECTOR", "VAARG_old", "VANEXT_old", "'='", "','", "'\\\\'",
+ "'('", "')'", "'['", "'x'", "']'", "'<'", "'>'", "'{'", "'}'", "'*'",
+ "'c'", "$accept", "INTVAL", "EINT64VAL", "ArithmeticOps", "LogicalOps",
+ "SetCondOps", "ShiftOps", "SIntType", "UIntType", "IntType", "FPType",
+ "OptAssign", "OptLinkage", "OptCallingConv", "OptAlign", "OptCAlign",
+ "SectionString", "OptSection", "GlobalVarAttributes",
+ "GlobalVarAttribute", "TypesV", "UpRTypesV", "Types", "PrimType",
+ "UpRTypes", "TypeListI", "ArgTypeListI", "ConstVal", "ConstExpr",
+ "ConstVector", "GlobalType", "Module", "FunctionList", "ConstPool", "@1",
+ "@2", "@3", "@4", "AsmBlock", "BigOrLittle", "TargetDefinition",
+ "LibrariesDefinition", "LibList", "Name", "OptName", "ArgVal",
+ "ArgListH", "ArgList", "FunctionHeaderH", "BEGIN", "FunctionHeader",
+ "END", "Function", "FnDeclareLinkage", "FunctionProto", "@5",
+ "OptSideEffect", "ConstValueRef", "SymbolicValueRef", "ValueRef",
+ "ResolvedVal", "BasicBlockList", "BasicBlock", "InstructionList",
+ "BBTerminatorInst", "JumpTable", "Inst", "PHIList", "ValueRefList",
+ "ValueRefListE", "OptTailCall", "InstVal", "IndexList", "OptVolatile",
+ "MemoryInst", 0
};
#endif
@@ -1780,40 +1790,40 @@ static const unsigned short int yytoknum[] =
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
- 365, 61, 44, 92, 40, 41, 91, 120, 93, 60,
- 62, 123, 125, 42, 99
+ 365, 366, 367, 61, 44, 92, 40, 41, 91, 120,
+ 93, 60, 62, 123, 125, 42, 99
};
# endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const unsigned char yyr1[] =
{
- 0, 125, 126, 126, 127, 127, 128, 128, 128, 128,
- 128, 128, 128, 129, 129, 129, 130, 130, 130, 130,
- 130, 130, 131, 131, 132, 132, 132, 132, 133, 133,
- 133, 133, 134, 134, 135, 135, 136, 136, 137, 137,
- 137, 137, 137, 137, 137, 137, 138, 138, 138, 138,
- 138, 138, 138, 138, 139, 139, 140, 140, 141, 142,
- 142, 143, 143, 144, 144, 145, 145, 146, 146, 147,
- 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
- 148, 148, 148, 149, 149, 149, 149, 149, 149, 149,
- 149, 149, 149, 150, 150, 151, 151, 151, 151, 152,
- 152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
- 152, 152, 152, 152, 152, 153, 153, 153, 153, 153,
- 153, 153, 153, 153, 153, 154, 154, 155, 155, 156,
- 157, 157, 157, 157, 157, 158, 158, 158, 159, 158,
- 160, 158, 161, 158, 162, 158, 158, 158, 158, 163,
- 164, 164, 165, 165, 165, 165, 166, 167, 167, 167,
- 168, 168, 169, 169, 170, 171, 171, 172, 172, 172,
- 172, 173, 174, 174, 175, 176, 176, 177, 178, 178,
- 178, 180, 179, 181, 181, 182, 182, 182, 182, 182,
- 182, 182, 182, 182, 182, 182, 183, 183, 184, 184,
- 185, 186, 186, 187, 188, 188, 188, 189, 189, 189,
- 189, 189, 189, 189, 189, 189, 190, 190, 191, 192,
- 192, 193, 193, 194, 194, 195, 195, 196, 196, 196,
- 196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
- 196, 196, 196, 197, 197, 198, 198, 199, 199, 199,
- 199, 199, 199, 199, 199
+ 0, 127, 128, 128, 129, 129, 130, 130, 130, 130,
+ 130, 130, 130, 130, 130, 131, 131, 131, 132, 132,
+ 132, 132, 132, 132, 133, 133, 134, 134, 134, 134,
+ 135, 135, 135, 135, 136, 136, 137, 137, 138, 138,
+ 139, 139, 139, 139, 139, 139, 139, 139, 140, 140,
+ 140, 140, 140, 140, 140, 140, 141, 141, 142, 142,
+ 143, 144, 144, 145, 145, 146, 146, 147, 147, 148,
+ 148, 149, 150, 150, 150, 150, 150, 150, 150, 150,
+ 150, 150, 150, 150, 150, 151, 151, 151, 151, 151,
+ 151, 151, 151, 151, 151, 152, 152, 153, 153, 153,
+ 153, 154, 154, 154, 154, 154, 154, 154, 154, 154,
+ 154, 154, 154, 154, 154, 154, 154, 155, 155, 155,
+ 155, 155, 155, 155, 155, 155, 155, 156, 156, 157,
+ 157, 158, 159, 159, 159, 159, 159, 160, 160, 160,
+ 161, 160, 162, 160, 163, 160, 164, 160, 160, 160,
+ 160, 165, 166, 166, 167, 167, 167, 167, 168, 169,
+ 169, 169, 170, 170, 171, 171, 172, 173, 173, 174,
+ 174, 174, 174, 175, 176, 176, 177, 178, 178, 179,
+ 180, 180, 180, 182, 181, 183, 183, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 185, 185,
+ 186, 186, 187, 188, 188, 189, 190, 190, 190, 191,
+ 191, 191, 191, 191, 191, 191, 191, 191, 192, 192,
+ 193, 194, 194, 195, 195, 196, 196, 197, 197, 198,
+ 198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
+ 198, 198, 198, 198, 198, 199, 199, 200, 200, 201,
+ 201, 201, 201, 201, 201, 201, 201
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
@@ -1822,502 +1832,519 @@ static const unsigned char yyr2[] =
0, 2, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 2, 0, 1, 1,
- 1, 1, 1, 1, 1, 0, 0, 1, 1, 1,
- 1, 1, 1, 2, 0, 2, 0, 3, 2, 0,
- 1, 0, 3, 1, 2, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 2, 0,
+ 1, 1, 1, 1, 1, 1, 1, 0, 0, 1,
+ 1, 1, 1, 1, 1, 2, 0, 2, 0, 3,
+ 2, 0, 1, 0, 3, 1, 2, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 2, 4, 5, 5,
- 3, 2, 2, 1, 3, 1, 3, 1, 0, 4,
- 3, 3, 4, 4, 3, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 6, 5, 8, 6, 6,
- 6, 6, 6, 8, 8, 3, 1, 1, 1, 1,
- 2, 2, 4, 2, 1, 4, 2, 4, 0, 7,
- 0, 7, 0, 7, 0, 7, 3, 4, 0, 1,
- 1, 1, 3, 3, 3, 3, 3, 3, 1, 0,
- 1, 1, 1, 0, 2, 3, 1, 1, 3, 1,
- 0, 8, 1, 1, 3, 1, 1, 2, 0, 1,
- 1, 0, 4, 0, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 3, 1, 5, 1, 1, 1, 1,
- 2, 2, 2, 3, 2, 0, 1, 2, 2, 3,
- 9, 9, 8, 13, 1, 1, 6, 5, 2, 6,
- 7, 1, 3, 1, 0, 2, 1, 5, 5, 5,
- 2, 4, 4, 6, 4, 4, 4, 4, 6, 6,
- 2, 7, 1, 2, 0, 1, 0, 3, 6, 3,
- 6, 2, 4, 6, 4
+ 1, 1, 1, 1, 1, 1, 1, 1, 2, 4,
+ 5, 5, 3, 2, 2, 1, 3, 1, 3, 1,
+ 0, 4, 3, 3, 4, 4, 3, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 6, 5, 8,
+ 6, 6, 6, 6, 6, 8, 8, 3, 1, 1,
+ 1, 1, 2, 2, 4, 2, 1, 4, 2, 4,
+ 0, 7, 0, 7, 0, 7, 0, 7, 3, 4,
+ 0, 1, 1, 1, 3, 3, 3, 3, 3, 3,
+ 1, 0, 1, 1, 1, 0, 2, 3, 1, 1,
+ 3, 1, 0, 8, 1, 1, 3, 1, 1, 2,
+ 0, 1, 1, 0, 4, 0, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 3, 1, 5, 1, 1,
+ 1, 1, 2, 2, 2, 3, 2, 0, 1, 2,
+ 2, 3, 9, 9, 8, 13, 1, 1, 6, 5,
+ 2, 6, 7, 1, 3, 1, 0, 2, 1, 5,
+ 5, 5, 2, 4, 4, 6, 4, 4, 4, 4,
+ 6, 6, 2, 7, 1, 2, 0, 1, 0, 3,
+ 6, 3, 6, 2, 4, 6, 4
};
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
STATE-NUM when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */
-static const unsigned char yydefact[] =
+static const unsigned short int yydefact[] =
{
- 148, 0, 45, 134, 1, 133, 181, 38, 39, 40,
- 41, 42, 43, 44, 0, 46, 205, 130, 131, 205,
- 160, 161, 0, 0, 0, 45, 0, 136, 178, 0,
- 0, 47, 48, 49, 50, 51, 52, 0, 0, 206,
- 202, 37, 175, 176, 177, 201, 0, 0, 0, 0,
- 146, 0, 0, 0, 0, 0, 0, 0, 36, 179,
- 180, 46, 149, 132, 53, 2, 3, 66, 70, 71,
- 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, 0, 0, 0, 0, 196, 0, 0, 65,
- 84, 69, 197, 85, 172, 173, 174, 246, 204, 0,
- 0, 0, 0, 159, 147, 137, 135, 127, 128, 0,
- 0, 0, 0, 182, 86, 0, 0, 68, 91, 93,
- 0, 0, 98, 92, 245, 0, 226, 0, 0, 0,
- 0, 46, 214, 215, 6, 7, 8, 9, 10, 11,
+ 150, 0, 47, 136, 1, 135, 183, 40, 41, 42,
+ 43, 44, 45, 46, 0, 48, 207, 132, 133, 207,
+ 162, 163, 0, 0, 0, 47, 0, 138, 180, 0,
+ 0, 49, 50, 51, 52, 53, 54, 0, 0, 208,
+ 204, 39, 177, 178, 179, 203, 0, 0, 0, 0,
+ 148, 0, 0, 0, 0, 0, 0, 0, 38, 181,
+ 182, 48, 151, 134, 55, 2, 3, 68, 72, 73,
+ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
+ 84, 85, 0, 0, 0, 0, 198, 0, 0, 67,
+ 86, 71, 199, 87, 174, 175, 176, 248, 206, 0,
+ 0, 0, 0, 161, 149, 139, 137, 129, 130, 0,
+ 0, 0, 0, 184, 88, 0, 0, 70, 93, 95,
+ 0, 0, 100, 94, 247, 0, 228, 0, 0, 0,
+ 0, 48, 216, 217, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
- 0, 0, 0, 0, 0, 0, 0, 22, 23, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 203,
- 46, 218, 0, 242, 154, 151, 150, 152, 153, 155,
- 158, 0, 142, 144, 140, 70, 71, 72, 73, 74,
- 75, 76, 77, 78, 79, 80, 0, 0, 0, 0,
- 138, 0, 0, 0, 90, 170, 97, 95, 0, 0,
- 230, 225, 208, 207, 0, 0, 27, 31, 26, 30,
- 25, 29, 24, 28, 32, 33, 0, 0, 56, 56,
- 251, 0, 0, 240, 0, 0, 0, 0, 0, 0,
+ 22, 23, 0, 0, 0, 0, 0, 0, 0, 24,
+ 25, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 205, 48, 220, 0, 244, 156, 153, 152, 154,
+ 155, 157, 160, 0, 144, 146, 142, 72, 73, 74,
+ 75, 76, 77, 78, 79, 80, 81, 82, 0, 0,
+ 0, 0, 140, 0, 0, 0, 92, 172, 99, 97,
+ 0, 0, 232, 227, 210, 209, 0, 0, 29, 33,
+ 28, 32, 27, 31, 26, 30, 34, 35, 0, 0,
+ 58, 58, 253, 0, 0, 242, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 156, 61, 61, 61, 112, 113, 4, 5, 110, 111,
- 114, 109, 105, 106, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 108, 107,
- 61, 67, 67, 94, 169, 163, 166, 167, 0, 0,
- 87, 185, 186, 187, 192, 188, 189, 190, 191, 183,
- 0, 194, 199, 198, 200, 0, 209, 0, 0, 0,
- 247, 0, 249, 244, 0, 0, 0, 0, 0, 0,
+ 0, 0, 158, 63, 63, 63, 114, 115, 4, 5,
+ 112, 113, 116, 111, 107, 108, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 157, 0, 143, 145, 141, 0, 0, 0, 0,
- 0, 0, 100, 126, 0, 0, 104, 0, 101, 0,
- 0, 0, 0, 139, 88, 89, 162, 164, 0, 59,
-