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.cvs2940
1 files changed, 1491 insertions, 1449 deletions
diff --git a/lib/AsmParser/llvmAsmParser.cpp.cvs b/lib/AsmParser/llvmAsmParser.cpp.cvs
index 5a7c64d62a..4f45cfd1e4 100644
--- a/lib/AsmParser/llvmAsmParser.cpp.cvs
+++ b/lib/AsmParser/llvmAsmParser.cpp.cvs
@@ -390,7 +390,7 @@
/* Copy the first part of user declarations. */
-#line 14 "/Users/malichus/Source/LLVM/src/svn/llvm/lib/AsmParser/llvmAsmParser.y"
+#line 14 "/Users/sabre/llvm/lib/AsmParser/llvmAsmParser.y"
#include "ParserInternals.h"
#include "llvm/CallingConv.h"
@@ -629,10 +629,12 @@ static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
// Code to handle definitions of all the types
//===----------------------------------------------------------------------===//
-static void InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
+/// InsertValue - Insert a value into the value table. If it is named, this
+/// returns -1, otherwise it returns the slot number for the value.
+static int InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
// Things that have names or are void typed don't get slot numbers
if (V->hasName() || (V->getType() == Type::VoidTy))
- return;
+ return -1;
// In the case of function values, we have to allow for the forward reference
// of basic blocks, which are included in the numbering. Consequently, we keep
@@ -642,10 +644,11 @@ static void InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
if (ValueTab.size() <= CurFun.NextValNum)
ValueTab.resize(CurFun.NextValNum+1);
ValueTab[CurFun.NextValNum++] = V;
- return;
+ return CurFun.NextValNum-1;
}
// For all other lists, its okay to just tack it on the back of the vector.
ValueTab.push_back(V);
+ return ValueTab.size()-1;
}
static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
@@ -1364,7 +1367,7 @@ Module *llvm::RunVMAsmParser(llvm::MemoryBuffer *MB) {
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
-#line 967 "/Users/malichus/Source/LLVM/src/svn/llvm/lib/AsmParser/llvmAsmParser.y"
+#line 970 "/Users/sabre/llvm/lib/AsmParser/llvmAsmParser.y"
{
llvm::Module *ModuleVal;
llvm::Function *FunctionVal;
@@ -1413,7 +1416,7 @@ typedef union YYSTYPE
llvm::FCmpInst::Predicate FPredicate;
}
/* Line 193 of yacc.c. */
-#line 1417 "llvmAsmParser.tab.c"
+#line 1420 "llvmAsmParser.tab.c"
YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
@@ -1426,7 +1429,7 @@ typedef union YYSTYPE
/* Line 216 of yacc.c. */
-#line 1430 "llvmAsmParser.tab.c"
+#line 1433 "llvmAsmParser.tab.c"
#ifdef short
# undef short
@@ -1641,16 +1644,16 @@ union yyalloc
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 44
/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 2381
+#define YYLAST 2386
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 171
/* YYNNTS -- Number of nonterminals. */
-#define YYNNTS 86
+#define YYNNTS 87
/* YYNRULES -- Number of rules. */
-#define YYNRULES 343
+#define YYNRULES 346
/* YYNRULES -- Number of states. */
-#define YYNSTATES 702
+#define YYNSTATES 707
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
@@ -1718,40 +1721,40 @@ static const yytype_uint16 yyprhs[] =
79, 81, 83, 85, 87, 89, 91, 93, 95, 97,
99, 101, 103, 105, 107, 109, 111, 113, 115, 117,
119, 121, 123, 125, 127, 129, 130, 135, 136, 139,
- 140, 142, 144, 146, 147, 150, 152, 154, 156, 158,
- 160, 162, 164, 166, 168, 169, 171, 173, 175, 176,
- 178, 180, 181, 183, 185, 187, 189, 190, 192, 194,
- 195, 197, 199, 201, 203, 205, 207, 210, 212, 214,
- 216, 218, 220, 222, 224, 226, 228, 231, 232, 235,
- 237, 239, 241, 243, 245, 247, 248, 251, 252, 255,
- 256, 259, 260, 264, 267, 268, 270, 271, 275, 277,
- 280, 282, 284, 286, 288, 290, 292, 294, 296, 298,
- 302, 304, 307, 313, 319, 325, 331, 335, 338, 344,
- 349, 352, 354, 356, 358, 362, 364, 368, 370, 371,
- 373, 377, 382, 386, 390, 395, 400, 404, 411, 417,
+ 140, 143, 145, 147, 149, 150, 153, 155, 157, 159,
+ 161, 163, 165, 167, 169, 171, 172, 174, 176, 178,
+ 179, 181, 183, 184, 186, 188, 190, 192, 193, 195,
+ 197, 198, 200, 202, 204, 206, 208, 210, 213, 215,
+ 217, 219, 221, 223, 225, 227, 229, 231, 234, 235,
+ 238, 240, 242, 244, 246, 248, 250, 251, 254, 255,
+ 258, 259, 262, 263, 267, 270, 271, 273, 274, 278,
+ 280, 283, 285, 287, 289, 291, 293, 295, 297, 299,
+ 301, 305, 307, 310, 316, 322, 328, 334, 338, 341,
+ 347, 352, 355, 357, 359, 361, 365, 367, 371, 373,
+ 374, 376, 380, 385, 389, 393, 398, 403, 407, 414,
420, 423, 426, 429, 432, 435, 438, 441, 444, 447,
- 450, 453, 460, 466, 475, 482, 489, 497, 505, 513,
- 521, 528, 537, 546, 552, 560, 564, 566, 568, 570,
- 572, 573, 576, 583, 585, 586, 588, 591, 592, 596,
- 597, 601, 605, 609, 613, 614, 623, 624, 634, 635,
- 645, 651, 654, 658, 660, 664, 668, 672, 676, 678,
- 679, 685, 689, 691, 695, 697, 698, 709, 711, 713,
- 718, 720, 722, 725, 729, 730, 732, 734, 736, 738,
- 740, 742, 744, 746, 748, 750, 752, 756, 760, 763,
- 766, 770, 773, 779, 784, 786, 792, 794, 796, 798,
- 800, 802, 804, 807, 809, 813, 816, 819, 823, 826,
- 827, 829, 832, 835, 839, 849, 859, 868, 883, 885,
- 887, 894, 900, 903, 910, 918, 923, 928, 935, 942,
- 943, 944, 948, 951, 955, 958, 960, 966, 972, 979,
- 986, 993, 1000, 1005, 1012, 1017, 1022, 1029, 1036, 1039,
- 1048, 1050, 1052, 1053, 1057, 1064, 1068, 1075, 1078, 1084,
- 1092, 1098, 1103, 1108
+ 450, 453, 456, 463, 469, 478, 485, 492, 500, 508,
+ 516, 524, 531, 540, 549, 555, 563, 567, 569, 571,
+ 573, 575, 576, 579, 586, 588, 589, 591, 594, 595,
+ 599, 600, 604, 608, 612, 616, 617, 626, 627, 637,
+ 638, 648, 654, 657, 661, 663, 667, 671, 675, 679,
+ 681, 682, 688, 692, 694, 698, 700, 701, 712, 714,
+ 716, 721, 723, 725, 728, 732, 733, 735, 737, 739,
+ 741, 743, 745, 747, 749, 751, 753, 755, 759, 763,
+ 766, 769, 773, 776, 782, 787, 789, 795, 797, 799,
+ 801, 803, 805, 807, 810, 812, 816, 819, 822, 826,
+ 830, 833, 834, 836, 839, 842, 846, 856, 866, 875,
+ 890, 892, 894, 901, 907, 910, 913, 920, 928, 933,
+ 938, 945, 952, 953, 954, 958, 961, 965, 968, 970,
+ 976, 982, 989, 996, 1003, 1010, 1015, 1022, 1027, 1032,
+ 1039, 1046, 1049, 1058, 1060, 1062, 1063, 1067, 1074, 1078,
+ 1085, 1088, 1094, 1102, 1108, 1113, 1118
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int16 yyrhs[] =
{
- 217, 0, -1, 76, -1, 77, -1, 78, -1, 79,
+ 218, 0, -1, 76, -1, 77, -1, 78, -1, 79,
-1, 80, -1, 81, -1, 82, -1, 83, -1, 84,
-1, 88, -1, 89, -1, 90, -1, 85, -1, 86,
-1, 87, -1, 121, -1, 122, -1, 123, -1, 124,
@@ -1765,144 +1768,145 @@ static const yytype_int16 yyrhs[] =
-1, 12, -1, 13, -1, 16, -1, 15, -1, 14,
-1, 19, -1, 22, -1, 24, -1, 179, -1, -1,
55, 157, 4, 158, -1, -1, 179, 159, -1, -1,
- 20, -1, 23, -1, 185, -1, -1, 183, 159, -1,
- 42, -1, 44, -1, 43, -1, 45, -1, 47, -1,
- 49, -1, 46, -1, 48, -1, 51, -1, -1, 154,
- -1, 155, -1, 156, -1, -1, 46, -1, 48, -1,
- -1, 42, -1, 43, -1, 44, -1, 47, -1, -1,
- 44, -1, 42, -1, -1, 63, -1, 64, -1, 65,
- -1, 66, -1, 67, -1, 68, -1, 62, 4, -1,
- 143, -1, 122, -1, 142, -1, 123, -1, 145, -1,
- 146, -1, 148, -1, 149, -1, 150, -1, 54, 4,
- -1, -1, 194, 193, -1, 144, -1, 147, -1, 143,
- -1, 142, -1, 151, -1, 152, -1, -1, 196, 195,
- -1, -1, 153, 22, -1, -1, 54, 4, -1, -1,
- 160, 54, 4, -1, 34, 22, -1, -1, 200, -1,
- -1, 160, 203, 202, -1, 200, -1, 54, 4, -1,
- 11, -1, 12, -1, 13, -1, 16, -1, 15, -1,
- 14, -1, 17, -1, 50, -1, 204, -1, 205, 181,
- 161, -1, 239, -1, 162, 4, -1, 205, 157, 209,
- 158, 196, -1, 10, 157, 209, 158, 196, -1, 163,
- 4, 164, 205, 165, -1, 166, 4, 164, 205, 167,
- -1, 168, 210, 169, -1, 168, 169, -1, 166, 168,
- 210, 169, 167, -1, 166, 168, 169, 167, -1, 205,
- 194, -1, 205, -1, 10, -1, 206, -1, 208, 160,
- 206, -1, 208, -1, 208, 160, 39, -1, 39, -1,
- -1, 205, -1, 210, 160, 205, -1, 205, 163, 213,
- 165, -1, 205, 163, 165, -1, 205, 170, 22, -1,
- 205, 166, 213, 167, -1, 205, 168, 213, 169, -1,
- 205, 168, 169, -1, 205, 166, 168, 213, 169, 167,
- -1, 205, 166, 168, 169, 167, -1, 205, 40, -1,
- 205, 41, -1, 205, 239, -1, 205, 212, -1, 205,
- 25, -1, 177, 3, -1, 177, 5, -1, 177, 4,
- -1, 177, 6, -1, 11, 26, -1, 11, 27, -1,
- 178, 9, -1, 174, 157, 211, 38, 205, 158, -1,
- 120, 157, 211, 251, 158, -1, 134, 157, 211, 160,
- 211, 160, 211, 158, -1, 172, 157, 211, 160, 211,
- 158, -1, 173, 157, 211, 160, 211, 158, -1, 91,
- 175, 157, 211, 160, 211, 158, -1, 92, 176, 157,
- 211, 160, 211, 158, -1, 93, 175, 157, 211, 160,
- 211, 158, -1, 94, 176, 157, 211, 160, 211, 158,
- -1, 136, 157, 211, 160, 211, 158, -1, 137, 157,
- 211, 160, 211, 160, 211, 158, -1, 138, 157, 211,
- 160, 211, 160, 211, 158, -1, 140, 157, 211, 252,
- 158, -1, 141, 157, 211, 160, 211, 252, 158, -1,
- 213, 160, 211, -1, 211, -1, 32, -1, 33, -1,
- 37, -1, -1, 207, 239, -1, 126, 157, 216, 38,
- 205, 158, -1, 218, -1, -1, 219, -1, 218, 219,
- -1, -1, 31, 220, 235, -1, -1, 30, 221, 236,
- -1, 60, 59, 225, -1, 182, 18, 205, -1, 182,
- 18, 10, -1, -1, 184, 188, 215, 214, 211, 181,
- 222, 202, -1, -1, 184, 186, 188, 215, 214, 211,
- 181, 223, 202, -1, -1, 184, 187, 188, 215, 214,
- 205, 181, 224, 202, -1, 184, 188, 35, 191, 216,
- -1, 52, 226, -1, 56, 159, 227, -1, 22, -1,
- 53, 159, 22, -1, 69, 159, 22, -1, 163, 228,
- 165, -1, 228, 160, 22, -1, 22, -1, -1, 229,
- 160, 205, 194, 180, -1, 205, 194, 180, -1, 229,
- -1, 229, 160, 39, -1, 39, -1, -1, 192, 207,
- 183, 157, 230, 158, 196, 201, 198, 197, -1, 28,
- -1, 168, -1, 190, 188, 231, 232, -1, 29, -1,
- 169, -1, 243, 234, -1, 189, 188, 231, -1, -1,
- 61, -1, 3, -1, 4, -1, 5, -1, 6, -1,
- 9, -1, 26, -1, 27, -1, 40, -1, 41, -1,
- 25, -1, 166, 213, 167, -1, 163, 213, 165, -1,
- 163, 165, -1, 170, 22, -1, 168, 213, 169, -1,
- 168, 169, -1, 166, 168, 213, 169, 167, -1, 166,
- 168, 169, 167, -1, 212, -1, 59, 237, 22, 160,
- 22, -1, 7, -1, 8, -1, 179, -1, 183, -1,
- 239, -1, 238, -1, 205, 240, -1, 241, -1, 242,
- 160, 241, -1, 243, 244, -1, 233, 244, -1, 245,
- 182, 246, -1, 245, 248, -1, -1, 21, -1, 70,
- 242, -1, 70, 10, -1, 71, 17, 240, -1, 71,
- 11, 240, 160, 17, 240, 160, 17, 240, -1, 72,
- 177, 240, 160, 17, 240, 163, 247, 165, -1, 72,
- 177, 240, 160, 17, 240, 163, 165, -1, 73, 192,
- 207, 240, 157, 250, 158, 196, 38, 17, 240, 74,
- 17, 240, -1, 74, -1, 75, -1, 247, 177, 238,
- 160, 17, 240, -1, 177, 238, 160, 17, 240, -1,
- 182, 254, -1, 205, 163, 240, 160, 240, 165, -1,
- 249, 160, 163, 240, 160, 240, 165, -1, 205, 194,
- 240, 194, -1, 17, 194, 240, 194, -1, 250, 160,
- 205, 194, 240, 194, -1, 250, 160, 17, 194, 240,
- 194, -1, -1, -1, 251, 160, 241, -1, 160, 4,
- -1, 252, 160, 4, -1, 58, 57, -1, 57, -1,
- 172, 205, 240, 160, 240, -1, 173, 205, 240, 160,
- 240, -1, 91, 175, 205, 240, 160, 240, -1, 92,
- 176, 205, 240, 160, 240, -1, 93, 175, 205, 240,
- 160, 240, -1, 94, 176, 205, 240, 160, 240, -1,
- 174, 241, 38, 205, -1, 134, 241, 160, 241, 160,
- 241, -1, 135, 241, 160, 205, -1, 136, 241, 160,
- 241, -1, 137, 241, 160, 241, 160, 241, -1, 138,
- 241, 160, 241, 160, 241, -1, 133, 249, -1, 253,
- 192, 207, 240, 157, 250, 158, 196, -1, 256, -1,
- 36, -1, -1, 115, 205, 199, -1, 115, 205, 160,
- 11, 240, 199, -1, 116, 205, 199, -1, 116, 205,
- 160, 11, 240, 199, -1, 117, 241, -1, 255, 118,
- 205, 240, 199, -1, 255, 119, 241, 160, 205, 240,
- 199, -1, 139, 205, 240, 160, 4, -1, 120, 205,
- 240, 251, -1, 140, 205, 240, 252, -1, 141, 205,
- 240, 160, 205, 240, 252, -1
+ 7, 159, -1, 20, -1, 23, -1, 186, -1, -1,
+ 184, 159, -1, 42, -1, 44, -1, 43, -1, 45,
+ -1, 47, -1, 49, -1, 46, -1, 48, -1, 51,
+ -1, -1, 154, -1, 155, -1, 156, -1, -1, 46,
+ -1, 48, -1, -1, 42, -1, 43, -1, 44, -1,
+ 47, -1, -1, 44, -1, 42, -1, -1, 63, -1,
+ 64, -1, 65, -1, 66, -1, 67, -1, 68, -1,
+ 62, 4, -1, 143, -1, 122, -1, 142, -1, 123,
+ -1, 145, -1, 146, -1, 148, -1, 149, -1, 150,
+ -1, 54, 4, -1, -1, 195, 194, -1, 144, -1,
+ 147, -1, 143, -1, 142, -1, 151, -1, 152, -1,
+ -1, 197, 196, -1, -1, 153, 22, -1, -1, 54,
+ 4, -1, -1, 160, 54, 4, -1, 34, 22, -1,
+ -1, 201, -1, -1, 160, 204, 203, -1, 201, -1,
+ 54, 4, -1, 11, -1, 12, -1, 13, -1, 16,
+ -1, 15, -1, 14, -1, 17, -1, 50, -1, 205,
+ -1, 206, 181, 161, -1, 240, -1, 162, 4, -1,
+ 206, 157, 210, 158, 197, -1, 10, 157, 210, 158,
+ 197, -1, 163, 4, 164, 206, 165, -1, 166, 4,
+ 164, 206, 167, -1, 168, 211, 169, -1, 168, 169,
+ -1, 166, 168, 211, 169, 167, -1, 166, 168, 169,
+ 167, -1, 206, 195, -1, 206, -1, 10, -1, 207,
+ -1, 209, 160, 207, -1, 209, -1, 209, 160, 39,
+ -1, 39, -1, -1, 206, -1, 211, 160, 206, -1,
+ 206, 163, 214, 165, -1, 206, 163, 165, -1, 206,
+ 170, 22, -1, 206, 166, 214, 167, -1, 206, 168,
+ 214, 169, -1, 206, 168, 169, -1, 206, 166, 168,
+ 214, 169, 167, -1, 206, 166, 168, 169, 167, -1,
+ 206, 40, -1, 206, 41, -1, 206, 240, -1, 206,
+ 213, -1, 206, 25, -1, 177, 3, -1, 177, 5,
+ -1, 177, 4, -1, 177, 6, -1, 11, 26, -1,
+ 11, 27, -1, 178, 9, -1, 174, 157, 212, 38,
+ 206, 158, -1, 120, 157, 212, 252, 158, -1, 134,
+ 157, 212, 160, 212, 160, 212, 158, -1, 172, 157,
+ 212, 160, 212, 158, -1, 173, 157, 212, 160, 212,
+ 158, -1, 91, 175, 157, 212, 160, 212, 158, -1,
+ 92, 176, 157, 212, 160, 212, 158, -1, 93, 175,
+ 157, 212, 160, 212, 158, -1, 94, 176, 157, 212,
+ 160, 212, 158, -1, 136, 157, 212, 160, 212, 158,
+ -1, 137, 157, 212, 160, 212, 160, 212, 158, -1,
+ 138, 157, 212, 160, 212, 160, 212, 158, -1, 140,
+ 157, 212, 253, 158, -1, 141, 157, 212, 160, 212,
+ 253, 158, -1, 214, 160, 212, -1, 212, -1, 32,
+ -1, 33, -1, 37, -1, -1, 208, 240, -1, 126,
+ 157, 217, 38, 206, 158, -1, 219, -1, -1, 220,
+ -1, 219, 220, -1, -1, 31, 221, 236, -1, -1,
+ 30, 222, 237, -1, 60, 59, 226, -1, 182, 18,
+ 206, -1, 182, 18, 10, -1, -1, 185, 189, 216,
+ 215, 212, 181, 223, 203, -1, -1, 185, 187, 189,
+ 216, 215, 212, 181, 224, 203, -1, -1, 185, 188,
+ 189, 216, 215, 206, 181, 225, 203, -1, 185, 189,
+ 35, 192, 217, -1, 52, 227, -1, 56, 159, 228,
+ -1, 22, -1, 53, 159, 22, -1, 69, 159, 22,
+ -1, 163, 229, 165, -1, 229, 160, 22, -1, 22,
+ -1, -1, 230, 160, 206, 195, 180, -1, 206, 195,
+ 180, -1, 230, -1, 230, 160, 39, -1, 39, -1,
+ -1, 193, 208, 184, 157, 231, 158, 197, 202, 199,
+ 198, -1, 28, -1, 168, -1, 191, 189, 232, 233,
+ -1, 29, -1, 169, -1, 244, 235, -1, 190, 189,
+ 232, -1, -1, 61, -1, 3, -1, 4, -1, 5,
+ -1, 6, -1, 9, -1, 26, -1, 27, -1, 40,
+ -1, 41, -1, 25, -1, 166, 214, 167, -1, 163,
+ 214, 165, -1, 163, 165, -1, 170, 22, -1, 168,
+ 214, 169, -1, 168, 169, -1, 166, 168, 214, 169,
+ 167, -1, 166, 168, 169, 167, -1, 213, -1, 59,
+ 238, 22, 160, 22, -1, 7, -1, 8, -1, 179,
+ -1, 184, -1, 240, -1, 239, -1, 206, 241, -1,
+ 242, -1, 243, 160, 242, -1, 244, 245, -1, 234,
+ 245, -1, 246, 182, 247, -1, 246, 183, 247, -1,
+ 246, 249, -1, -1, 21, -1, 70, 243, -1, 70,
+ 10, -1, 71, 17, 241, -1, 71, 11, 241, 160,
+ 17, 241, 160, 17, 241, -1, 72, 177, 241, 160,
+ 17, 241, 163, 248, 165, -1, 72, 177, 241, 160,
+ 17, 241, 163, 165, -1, 73, 193, 208, 241, 157,
+ 251, 158, 197, 38, 17, 241, 74, 17, 241, -1,
+ 74, -1, 75, -1, 248, 177, 239, 160, 17, 241,
+ -1, 177, 239, 160, 17, 241, -1, 182, 255, -1,
+ 183, 255, -1, 206, 163, 241, 160, 241, 165, -1,
+ 250, 160, 163, 241, 160, 241, 165, -1, 206, 195,
+ 241, 195, -1, 17, 195, 241, 195, -1, 251, 160,
+ 206, 195, 241, 195, -1, 251, 160, 17, 195, 241,
+ 195, -1, -1, -1, 252, 160, 242, -1, 160, 4,
+ -1, 253, 160, 4, -1, 58, 57, -1, 57, -1,
+ 172, 206, 241, 160, 241, -1, 173, 206, 241, 160,
+ 241, -1, 91, 175, 206, 241, 160, 241, -1, 92,
+ 176, 206, 241, 160, 241, -1, 93, 175, 206, 241,
+ 160, 241, -1, 94, 176, 206, 241, 160, 241, -1,
+ 174, 242, 38, 206, -1, 134, 242, 160, 242, 160,
+ 242, -1, 135, 242, 160, 206, -1, 136, 242, 160,
+ 242, -1, 137, 242, 160, 242, 160, 242, -1, 138,
+ 242, 160, 242, 160, 242, -1, 133, 250, -1, 254,
+ 193, 208, 241, 157, 251, 158, 197, -1, 257, -1,
+ 36, -1, -1, 115, 206, 200, -1, 115, 206, 160,
+ 11, 241, 200, -1, 116, 206, 200, -1, 116, 206,
+ 160, 11, 241, 200, -1, 117, 242, -1, 256, 118,
+ 206, 241, 200, -1, 256, 119, 242, 160, 206, 241,
+ 200, -1, 139, 206, 241, 160, 4, -1, 120, 206,
+ 241, 252, -1, 140, 206, 241, 253, -1, 141, 206,
+ 241, 160, 206, 241, 253, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
- 0, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133,
- 1133, 1134, 1134, 1134, 1134, 1134, 1134, 1135, 1135, 1135,
- 1135, 1135, 1135, 1136, 1136, 1136, 1136, 1136, 1136, 1139,
- 1139, 1140, 1140, 1141, 1141, 1142, 1142, 1143, 1143, 1147,
- 1147, 1148, 1148, 1149, 1149, 1150, 1150, 1151, 1151, 1152,
- 1152, 1153, 1153, 1154, 1155, 1160, 1161, 1161, 1161, 1161,
- 1161, 1163, 1163, 1163, 1164, 1164, 1166, 1167, 1171, 1175,
- 1180, 1180, 1182, 1183, 1188, 1194, 1195, 1196, 1197, 1198,
- 1199, 1203, 1204, 1205, 1209, 1210, 1211, 1212, 1216, 1217,
- 1218, 1222, 1223, 1224, 1225, 1226, 1230, 1231, 1232, 1235,
- 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1249, 1250, 1251,
- 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1262, 1263, 1268,
- 1269, 1270, 1271, 1272, 1273, 1276, 1277, 1282, 1283, 1290,
- 1291, 1297, 1298, 1307, 1315, 1316, 1321, 1322, 1323, 1328,
- 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1344, 1348, 1352,
- 1359, 1364, 1372, 1401, 1426, 1431, 1441, 1451, 1455, 1465,
- 1472, 1481, 1488, 1493, 1498, 1505, 1506, 1513, 1520, 1528,
- 1534, 1546, 1574, 1590, 1617, 1645, 1671, 1691, 1717, 1737,
- 1749, 1756, 1822, 1832, 1842, 1848, 1858, 1864, 1874, 1880,
- 1886, 1899, 1911, 1932, 1940, 1946, 1957, 1962, 1967, 1972,
- 1977, 1983, 1989, 1995, 2003, 2014, 2018, 2026, 2026, 2029,
- 2029, 2032, 2044, 2065, 2070, 2078, 2079, 2083, 2083, 2087,
- 2087, 2090, 2093, 2117, 2129, 2128, 2140, 2139, 2149, 2148,
- 2159, 2199, 2202, 2208, 2218, 2222, 2227, 2229, 2234, 2239,
- 2248, 2258, 2269, 2273, 2282, 2291, 2296, 2425, 2425, 2427,
- 2436, 2436, 2438, 2443, 2455, 2459, 2464, 2468, 2472, 2477,
- 2482, 2486, 2490, 2494, 2498, 2502, 2506, 2528, 2550, 2556,
- 2569, 2581, 2586, 2598, 2604, 2608, 2618, 2622, 2626, 2631,
- 2638, 2638, 2644, 2653, 2658, 2663, 2667, 2676, 2685, 2694,
- 2698, 2706, 2726, 2730, 2735, 2746, 2765, 2774, 2860, 2864,
- 2871, 2882, 2895, 2905, 2916, 2926, 2937, 2945, 2955, 2962,
- 2965, 2966, 2974, 2980, 2989, 2993, 2998, 3014, 3031, 3045,
- 3059, 3073, 3087, 3099, 3107, 3114, 3120, 3126, 3132, 3147,
- 3237, 3242, 3246, 3253, 3260, 3270, 3277, 3287, 3295, 3309,
- 3326, 3340, 3355, 3370
+ 0, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136,
+ 1136, 1137, 1137, 1137, 1137, 1137, 1137, 1138, 1138, 1138,
+ 1138, 1138, 1138, 1139, 1139, 1139, 1139, 1139, 1139, 1142,
+ 1142, 1143, 1143, 1144, 1144, 1145, 1145, 1146, 1146, 1150,
+ 1150, 1151, 1151, 1152, 1152, 1153, 1153, 1154, 1154, 1155,
+ 1155, 1156, 1156, 1157, 1158, 1163, 1164, 1164, 1164, 1164,
+ 1164, 1166, 1166, 1166, 1167, 1167, 1169, 1170, 1174, 1178,
+ 1183, 1189, 1189, 1191, 1192, 1197, 1203, 1204, 1205, 1206,
+ 1207, 1208, 1212, 1213, 1214, 1218, 1219, 1220, 1221, 1225,
+ 1226, 1227, 1231, 1232, 1233, 1234, 1235, 1239, 1240, 1241,
+ 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1258, 1259,
+ 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1271, 1272,
+ 1277, 1278, 1279, 1280, 1281, 1282, 1285, 1286, 1291, 1292,
+ 1299, 1300, 1306, 1307, 1316, 1324, 1325, 1330, 1331, 1332,
+ 1337, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1353, 1357,
+ 1361, 1368, 1373, 1381, 1410, 1435, 1440, 1450, 1460, 1464,
+ 1474, 1481, 1490, 1497, 1502, 1507, 1514, 1515, 1522, 1529,
+ 1537, 1543, 1555, 1583, 1599, 1626, 1654, 1680, 1700, 1726,
+ 1746, 1758, 1765, 1831, 1841, 1851, 1857, 1867, 1873, 1883,
+ 1889, 1895, 1908, 1920, 1941, 1949, 1955, 1966, 1971, 1976,
+ 1981, 1986, 1992, 1998, 2004, 2012, 2023, 2027, 2035, 2035,
+ 2038, 2038, 2041, 2053, 2074, 2079, 2087, 2088, 2092, 2092,
+ 2096, 2096, 2099, 2102, 2126, 2138, 2137, 2149, 2148, 2158,
+ 2157, 2168, 2208, 2211, 2217, 2227, 2231, 2236, 2238, 2243,
+ 2248, 2257, 2267, 2278, 2282, 2291, 2300, 2305, 2434, 2434,
+ 2436, 2445, 2445, 2447, 2452, 2464, 2468, 2473, 2477, 2481,
+ 2486, 2491, 2495, 2499, 2503, 2507, 2511, 2515, 2537, 2559,
+ 2565, 2578, 2590, 2595, 2607, 2613, 2617, 2627, 2631, 2635,
+ 2640, 2647, 2647, 2653, 2662, 2667, 2672, 2676, 2685, 2694,
+ 2707, 2716, 2720, 2728, 2748, 2752, 2757, 2768, 2787, 2796,
+ 2882, 2886, 2893, 2904, 2917, 2926, 2939, 2950, 2960, 2971,
+ 2979, 2989, 2996, 2999, 3000, 3008, 3014, 3023, 3027, 3032,
+ 3048, 3065, 3079, 3093, 3107, 3121, 3133, 3141, 3148, 3154,
+ 3160, 3166, 3181, 3271, 3276, 3280, 3287, 3294, 3304, 3311,
+ 3321, 3329, 3343, 3360, 3374, 3389, 3404
};
#endif
@@ -1939,23 +1943,23 @@ static const char *const yytname[] =
"'>'", "'{'", "'}'", "'c'", "$accept", "ArithmeticOps", "LogicalOps",
"CastOps", "IPredicates", "FPredicates", "IntType", "FPType",
"LocalName", "OptLocalName", "OptAddrSpace", "OptLocalAssign",
- "GlobalName", "OptGlobalAssign", "GlobalAssign", "GVInternalLinkage",
- "GVExternalLinkage", "GVVisibilityStyle", "FunctionDeclareLinkage",
- "FunctionDefineLinkage", "AliasLinkage", "OptCallingConv", "ParamAttr",
- "OptParamAttrs", "FuncAttr", "OptFuncAttrs", "OptGC", "OptAlign",
- "OptCAlign", "SectionString", "OptSection", "GlobalVarAttributes",
- "GlobalVarAttribute", "PrimType", "Types", "ArgType", "ResultTypes",
- "ArgTypeList", "ArgTypeListI", "TypeListI", "ConstVal", "ConstExpr",
- "ConstVector", "GlobalType", "ThreadLocal", "AliaseeRef", "Module",
- "DefinitionList", "Definition", "@1", "@2", "@3", "@4", "@5", "AsmBlock",
- "TargetDefinition", "LibrariesDefinition", "LibList", "ArgListH",
- "ArgList", "FunctionHeaderH", "BEGIN", "FunctionHeader", "END",
- "Function", "FunctionProto", "OptSideEffect", "ConstValueRef",
- "SymbolicValueRef", "ValueRef", "ResolvedVal", "ReturnedVal",
- "BasicBlockList", "BasicBlock", "InstructionList", "BBTerminatorInst",
- "JumpTable", "Inst", "PHIList", "ParamList", "IndexList",
- "ConstantIndexList", "OptTailCall", "InstVal", "OptVolatile",
- "MemoryInst", 0
+ "LocalNumber", "GlobalName", "OptGlobalAssign", "GlobalAssign",
+ "GVInternalLinkage", "GVExternalLinkage", "GVVisibilityStyle",
+ "FunctionDeclareLinkage", "FunctionDefineLinkage", "AliasLinkage",
+ "OptCallingConv", "ParamAttr", "OptParamAttrs", "FuncAttr",
+ "OptFuncAttrs", "OptGC", "OptAlign", "OptCAlign", "SectionString",
+ "OptSection", "GlobalVarAttributes", "GlobalVarAttribute", "PrimType",
+ "Types", "ArgType", "ResultTypes", "ArgTypeList", "ArgTypeListI",
+ "TypeListI", "ConstVal", "ConstExpr", "ConstVector", "GlobalType",
+ "ThreadLocal", "AliaseeRef", "Module", "DefinitionList", "Definition",
+ "@1", "@2", "@3", "@4", "@5", "AsmBlock", "TargetDefinition",
+ "LibrariesDefinition", "LibList", "ArgListH", "ArgList",
+ "FunctionHeaderH", "BEGIN", "FunctionHeader", "END", "Function",
+ "FunctionProto", "OptSideEffect", "ConstValueRef", "SymbolicValueRef",
+ "ValueRef", "ResolvedVal", "ReturnedVal", "BasicBlockList", "BasicBlock",
+ "InstructionList", "BBTerminatorInst", "JumpTable", "Inst", "PHIList",
+ "ParamList", "IndexList", "ConstantIndexList", "OptTailCall", "InstVal",
+ "OptVolatile", "MemoryInst", 0
};
#endif
@@ -1995,34 +1999,34 @@ static const yytype_uint16 yyr1[] =
176, 176, 176, 176, 176, 176, 176, 176, 176, 176,
176, 176, 176, 176, 176, 177, 178, 178, 178, 178,
178, 179, 179, 179, 180, 180, 181, 181, 182, 182,
- 183, 183, 184, 184, 185, 186, 186, 186, 186, 186,
- 186, 187, 187, 187, 188, 188, 188, 188, 189, 189,
- 189, 190, 190, 190, 190, 190, 191, 191, 191, 192,
- 192, 192, 192, 192, 192, 192, 192, 193, 193, 193,
- 193, 193, 193, 193, 193, 193, 193, 194, 194, 195,
- 195, 195, 195, 195, 195, 196, 196, 197, 197, 198,
- 198, 199, 199, 200, 201, 201, 202, 202, 203, 203,
- 204, 204, 204, 204, 204, 204, 204, 205, 205, 205,
- 205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
- 206, 207, 207, 208, 208, 209, 209, 209, 209, 210,
- 210, 211, 211, 211, 211, 211, 211, 211, 211, 211,
- 211, 211, 211, 211, 211, 211, 211, 211, 211, 211,
- 211, 212, 212, 212, 212, 212, 212, 212, 212, 212,
- 212, 212, 212, 212, 212, 213, 213, 214, 214, 215,
- 215, 216, 216, 217, 217, 218, 218, 220, 219, 221,
- 219, 219, 219, 219, 222, 219, 223, 219, 224, 219,
- 219, 219, 219, 225, 226, 226, 227, 228, 228, 228,
- 229, 229, 230, 230, 230, 230, 231, 232, 232, 233,
- 234, 234, 235, 236, 237, 237, 238, 238, 238, 238,
- 238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
- 238, 238, 238, 238, 238, 238, 239, 239, 239, 239,
- 240, 240, 241, 242, 242, 243, 243, 244, 245, 245,
- 245, 246, 246, 246, 246, 246, 246, 246, 246, 246,
- 247, 247, 248, 249, 249, 250, 250, 250, 250, 250,
- 251, 251, 252, 252, 253, 253, 254, 254, 254, 254,
- 254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
- 254, 255, 255, 256, 256, 256, 256, 256, 256, 256,
- 256, 256, 256, 256
+ 183, 184, 184, 185, 185, 186, 187, 187, 187, 187,
+ 187, 187, 188, 188, 188, 189, 189, 189, 189, 190,
+ 190, 190, 191, 191, 191, 191, 191, 192, 192, 192,
+ 193, 193, 193, 193, 193, 193, 193, 193, 194, 194,
+ 194, 194, 194, 194, 194, 194, 194, 194, 195, 195,
+ 196, 196, 196, 196, 196, 196, 197, 197, 198, 198,
+ 199, 199, 200, 200, 201, 202, 202, 203, 203, 204,
+ 204, 205, 205, 205, 205, 205, 205, 205, 206, 206,
+ 206, 206, 206, 206, 206, 206, 206, 206, 206, 206,
+ 206, 207, 208, 208, 209, 209, 210, 210, 210, 210,
+ 211, 211, 212, 212, 212, 212, 212, 212, 212, 212,
+ 212, 212, 212, 212, 212, 212, 212, 212, 212, 212,
+ 212, 212, 213, 213, 213, 213, 213, 213, 213, 213,
+ 213, 213, 213, 213, 213, 213, 214, 214, 215, 215,
+ 216, 216, 217, 217, 218, 218, 219, 219, 221, 220,
+ 222, 220, 220, 220, 220, 223, 220, 224, 220, 225,
+ 220, 220, 220, 220, 226, 227, 227, 228, 229, 229,
+ 229, 230, 230, 231, 231, 231, 231, 232, 233, 233,
+ 234, 235, 235, 236, 237, 238, 238, 239, 239, 239,
+ 239, 239, 239, 239, 239, 239, 239, 239, 239, 239,
+ 239, 239, 239, 239, 239, 239, 239, 240, 240, 240,
+ 240, 241, 241, 242, 243, 243, 244, 244, 245, 245,
+ 246, 246, 246, 247, 247, 247, 247, 247, 247, 247,
+ 247, 247, 248, 248, 249, 249, 250, 250, 251, 251,
+ 251, 251, 251, 252, 252, 253, 253, 254, 254, 255,
+ 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
+ 255, 255, 255, 255, 256, 256, 257, 257, 257, 257,
+ 257, 257, 257, 257, 257, 257, 257
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
@@ -2035,34 +2039,34 @@ static const yytype_uint8 yyr2[] =
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, 0, 4, 0, 2, 0,
- 1, 1, 1, 0, 2, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 0, 1, 1, 1, 0, 1,
- 1, 0, 1, 1, 1, 1, 0, 1, 1, 0,
- 1, 1, 1, 1, 1, 1, 2, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 2, 0, 2, 1,
- 1, 1, 1, 1, 1, 0, 2, 0, 2, 0,
- 2, 0, 3, 2, 0, 1, 0, 3, 1, 2,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
- 1, 2, 5, 5, 5, 5, 3, 2, 5, 4,
- 2, 1, 1, 1, 3, 1, 3, 1, 0, 1,
- 3, 4, 3, 3, 4, 4, 3, 6, 5, 2,
+ 2, 1, 1, 1, 0, 2, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 0, 1, 1, 1, 0,
+ 1, 1, 0, 1, 1, 1, 1, 0, 1, 1,
+ 0, 1, 1, 1, 1, 1, 1, 2, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 2, 0, 2,
+ 1, 1, 1, 1, 1, 1, 0, 2, 0, 2,
+ 0, 2, 0, 3, 2, 0, 1, 0, 3, 1,
+ 2, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 3, 1, 2, 5, 5, 5, 5, 3, 2, 5,
+ 4, 2, 1, 1, 1, 3, 1, 3, 1, 0,
+ 1, 3, 4, 3, 3, 4, 4, 3, 6, 5,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 6, 5, 8, 6, 6, 7, 7, 7, 7,
- 6, 8, 8, 5, 7, 3, 1, 1, 1, 1,
- 0, 2, 6, 1, 0, 1, 2, 0, 3, 0,
- 3, 3, 3, 3, 0, 8, 0, 9, 0, 9,
- 5, 2, 3, 1, 3, 3, 3, 3, 1, 0,
- 5, 3, 1, 3, 1, 0, 10, 1, 1, 4,
- 1, 1, 2, 3, 0, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 3, 3, 2, 2,
- 3, 2, 5, 4, 1, 5, 1, 1, 1, 1,
- 1, 1, 2, 1, 3, 2, 2, 3, 2, 0,
- 1, 2, 2, 3, 9, 9, 8, 14, 1, 1,
- 6, 5, 2, 6, 7, 4, 4, 6, 6, 0,
- 0, 3, 2, 3, 2, 1, 5, 5, 6, 6,
- 6, 6, 4, 6, 4, 4, 6, 6, 2, 8,
- 1, 1, 0, 3, 6, 3, 6, 2, 5, 7,
- 5, 4, 4, 7
+ 2, 2, 6, 5, 8, 6, 6, 7, 7, 7,
+ 7, 6, 8, 8, 5, 7, 3, 1, 1, 1,
+ 1, 0, 2, 6, 1, 0, 1, 2, 0, 3,
+ 0, 3, 3, 3, 3, 0, 8, 0, 9, 0,
+ 9, 5, 2, 3, 1, 3, 3, 3, 3, 1,
+ 0, 5, 3, 1, 3, 1, 0, 10, 1, 1,
+ 4, 1, 1, 2, 3, 0, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 3, 3, 2,
+ 2, 3, 2, 5, 4, 1, 5, 1, 1, 1,
+ 1, 1, 1, 2, 1, 3, 2, 2, 3, 3,
+ 2, 0, 1, 2, 2, 3, 9, 9, 8, 14,
+ 1, 1, 6, 5, 2, 2, 6, 7, 4, 4,
+ 6, 6, 0, 0, 3, 2, 3, 2, 1, 5,
+ 5, 6, 6, 6, 6, 4, 6, 4, 4, 6,
+ 6, 2, 8, 1, 1, 0, 3, 6, 3, 6,
+ 2, 5, 7, 5, 4, 4, 7
};
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
@@ -2070,674 +2074,674 @@ static const yytype_uint8 yyr2[] =
means the default is an error. */
static const yytype_uint16 yydefact[] =
{
- 73, 61, 70, 62, 71, 63, 219, 217, 0, 0,
- 0, 0, 0, 0, 84, 72, 0, 73, 215, 88,
- 91, 0, 0, 231, 0, 0, 68, 0, 74, 75,
- 77, 76, 78, 81, 79, 82, 80, 83, 85, 86,
- 87, 84, 84, 210, 1, 216, 89, 90, 84, 220,
- 92, 93, 94, 95, 84, 289, 218, 289, 0, 0,
- 239, 232, 233, 221, 276, 277, 223, 140, 141, 142,
- 145, 144, 143, 146, 147, 0, 0, 0, 0, 278,
- 279, 148, 222, 150, 210, 210, 96, 209, 0, 99,
- 99, 290, 286, 69, 250, 251, 252, 285, 234, 235,
- 238, 0, 168, 151, 0, 0, 0, 0, 157, 169,
- 0, 0, 168, 0, 0, 0, 98, 97, 0, 207,
- 208, 0, 0, 100, 101, 102, 103, 104, 105, 0,
- 253, 0, 332, 288, 0, 236, 167, 117, 163, 165,
- 0, 0, 0, 0, 0, 0, 156, 0, 0, 149,
- 0, 0, 162, 0, 161, 0, 230, 140, 141, 142,
- 145, 144, 143, 0, 0, 67, 67, 106, 0, 247,
- 248, 249, 331, 315, 0, 0, 0, 0, 99, 298,
- 299, 2, 3, 4, 5, 6, 7, 8, 9, 10,
- 14, 15, 16, 11, 12, 13, 0, 0, 0, 0,
- 0, 0, 0, 0, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 28, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 287, 99,
- 302, 0, 330, 237, 160, 0, 125, 67, 67, 159,
- 0, 170, 0, 125, 67, 67, 0, 211, 188, 189,
- 184, 186, 185, 187, 190, 183, 179, 180, 0, 0,
+ 74, 61, 71, 62, 72, 63, 220, 218, 0, 0,
+ 0, 0, 0, 0, 85, 73, 0, 74, 216, 89,
+ 92, 0, 0, 232, 0, 0, 68, 0, 75, 76,
+ 78, 77, 79, 82, 80, 83, 81, 84, 86, 87,
+ 88, 85, 85, 211, 1, 217, 90, 91, 85, 221,
+ 93, 94, 95, 96, 85, 291, 219, 291, 0, 0,
+ 240, 233, 234, 222, 277, 278, 224, 141, 142, 143,
+ 146, 145, 144, 147, 148, 0, 0, 0, 0, 279,
+ 280, 149, 223, 151, 211, 211, 97, 210, 0, 100,
+ 100, 292, 287, 69, 251, 252, 253, 286, 235, 236,
+ 239, 0, 169, 152, 0, 0, 0, 0, 158, 170,
+ 0, 0, 169, 0, 0, 0, 99, 98, 0, 208,
+ 209, 0, 0, 101, 102, 103, 104, 105, 106, 0,
+ 254, 0, 0, 335, 335, 290, 0, 237, 168, 118,
+ 164, 166, 0, 0, 0, 0, 0, 0, 157, 0,
+ 0, 150, 0, 0, 163, 0, 162, 0, 231, 141,
+ 142, 143, 146, 145, 144, 0, 0, 67, 67, 107,
+ 0, 248, 249, 250, 70, 334, 318, 0, 0, 0,
+ 0, 100, 300, 301, 2, 3, 4, 5, 6, 7,
+ 8, 9, 10, 14, 15, 16, 11, 12, 13, 0,
+ 0, 0, 0, 0, 0, 0, 0, 17, 18, 19,
+ 20, 21, 22, 23, 24, 25, 26, 27, 28, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 288, 100, 304, 0, 333, 289, 305, 238, 161,
+ 0, 126, 67, 67, 160, 0, 171, 0, 126, 67,
+ 67, 0, 212, 189, 190, 185, 187, 186, 188, 191,
+ 184, 180, 181, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 182, 181, 224, 0,
-