4coder/custom/generated/lexer_cpp.cpp

5145 lines
108 KiB
C++
Raw Normal View History

2019-09-27 03:52:29 +00:00
#if !defined(FCODER_LEX_GEN_HAND_WRITTEN)
#define FCODER_LEX_GEN_HAND_WRITTEN
internal u64
lexeme_hash(u64 seed, u8 *ptr, umem size){
u64 result = 0;
for (umem i = 0; i < size; i += 1, ptr += 1){
result ^= ((*ptr) ^ result*59) + seed;
}
return(result);
}
internal Lexeme_Table_Lookup
lexeme_table_lookup(u64 *hash_array, String_Const_u8 *key_array,
Lexeme_Table_Value *value_array, i32 slot_count, u64 seed,
u8 *ptr, umem size){
Lexeme_Table_Lookup result = {};
u64 hash = lexeme_hash(seed, ptr, size);
u64 comparison_hash = hash | 1;
i32 first_index = (hash % slot_count);
i32 index = first_index;
for (;;){
if (hash_array[index] == comparison_hash){
if (string_match(SCu8(ptr, size), key_array[index])){
result.found_match = true;
result.base_kind = value_array[index].base_kind;
result.sub_kind = value_array[index].sub_kind;
break;
}
}
else if (hash_array[index] == 0){
break;
}
index += 1;
if (index == slot_count){
index = 0;
}
if (index == first_index){
break;
}
}
return(result);
}
#endif
u64 main_keys_hash_array[121] = {
0xd7d4c38040a2a51b,0xdf638ad4b9cf69f1,0x0000000000000000,0x49161f88607bb631,
0x536665a889795331,0xac2560d906339023,0x0000000000000000,0x0000000000000000,
0x9df913c598e7c12f,0x0000000000000000,0x30a1e151f231a23d,0x0000000000000000,
0xdf638ad451f403ad,0xdf63897bcdc00091,0xb02f5667f4aa212d,0x0000000000000000,
0x0000000000000000,0x0000000000000000,0x0000000000000000,0xac2560d9187f0241,
0x0000000000000000,0xdf638adf7971e675,0xb2eaca38e283efad,0x0000000000000000,
0xdf638ad318e5d1ff,0xdf638ad080551679,0x0000000000000000,0x0000000000000000,
0xdf638ad206456083,0x0000000000000000,0x0000000000000000,0x0000000000000000,
0x0000000000000000,0x0000000000000000,0xac2560dad36752fb,0x0000000000000000,
0x536665a889463469,0xb2ea03bb268a134f,0x0000000000000000,0xb2e835e1b80e6623,
0xd7d4c38040add1c7,0x0000000000000000,0x0000000000000000,0x0000000000000000,
0xdf638ad4bed34c65,0x9df9cfb653425513,0xd7d4c38040ae41d1,0x0000000000000000,
0x947a68a4ac1c1501,0x6d88621e3e0beb01,0x0000000000000000,0x536665a88ceccda5,
0x0000000000000000,0x536665a88ccb6129,0x0000000000000000,0x0000000000000000,
0x536665a8896b20ab,0x0000000000000000,0x0000000000000000,0xb07367b671947053,
0xb2ea3109b4b43533,0x536665a889437cc3,0x0000000000000000,0x0000000000000000,
0xac2560d91bdcfc25,0x9df91c40ba8cd527,0x0000000000000000,0x536665a889769513,
0xdf638979523c12d1,0x0000000000000000,0x0000000000000000,0xb2c5e55df6610773,
0x0000000000000000,0x536665a8894345fb,0x0000000000000000,0x0000000000000000,
0x0000000000000000,0x0000000000000000,0x0000000000000000,0xac2560daec0e3851,
0x0000000000000000,0xb2c54a9d3317afb5,0xac2560d919a44b01,0x0000000000000000,
0xb77ddd8b9e414ce1,0x0000000000000000,0x18f86466c464cb01,0x0000000000000000,
0x0000000000000000,0xd7d4c38040a2854f,0x9df9ce6f49907115,0xac2560d90e3e3341,
0xdf63897b933beefb,0x0000000000000000,0x9df9cfb6534252e9,0xb2ea06e728b259ed,
0x0000000000000000,0x0000000000000000,0xb2ea5877c412647b,0x0000000000000000,
0xac2560d90618b725,0x34cb86f3fc1ca901,0xdf638ad4a65162c3,0x0000000000000000,
0x536665a88c2a1c41,0x49161f88607ba867,0xb2ead185c7065f1b,0x9df91f79b4ec2e9b,
0x0000000000000000,0xdf638ad4bf72e239,0xac2560dad9a93d8b,0xdf638979520bcfbf,
0xac2560dada9feda1,0x0000000000000000,0x0000000000000000,0x536665a88cc8be73,
0xdf63897b8855fa1b,0xb2c5e570be19f85b,0x9df91ccc8c85f8ed,0xd7d4c38040adb35d,
0x0000000000000000,
2019-09-27 03:52:29 +00:00
};
u8 main_keys_key_array_0[] = {0x61,0x73,0x6d,};
u8 main_keys_key_array_1[] = {0x73,0x74,0x72,0x75,0x63,0x74,};
u8 main_keys_key_array_3[] = {0x64,0x6f,};
u8 main_keys_key_array_4[] = {0x67,0x6f,0x74,0x6f,};
u8 main_keys_key_array_5[] = {0x66,0x61,0x6c,0x73,0x65,};
u8 main_keys_key_array_8[] = {0x74,0x79,0x70,0x65,0x64,0x65,0x66,};
u8 main_keys_key_array_10[] = {0x74,0x68,0x72,0x65,0x61,0x64,0x5f,0x6c,0x6f,0x63,0x61,0x6c,};
u8 main_keys_key_array_12[] = {0x73,0x69,0x67,0x6e,0x65,0x64,};
u8 main_keys_key_array_13[] = {0x66,0x72,0x69,0x65,0x6e,0x64,};
u8 main_keys_key_array_14[] = {0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,};
u8 main_keys_key_array_19[] = {0x63,0x6f,0x6e,0x73,0x74,};
u8 main_keys_key_array_21[] = {0x74,0x79,0x70,0x65,0x69,0x64,};
u8 main_keys_key_array_22[] = {0x75,0x6e,0x73,0x69,0x67,0x6e,0x65,0x64,};
u8 main_keys_key_array_24[] = {0x72,0x65,0x74,0x75,0x72,0x6e,};
u8 main_keys_key_array_25[] = {0x70,0x75,0x62,0x6c,0x69,0x63,};
u8 main_keys_key_array_28[] = {0x69,0x6e,0x6c,0x69,0x6e,0x65,};
u8 main_keys_key_array_34[] = {0x77,0x68,0x69,0x6c,0x65,};
u8 main_keys_key_array_36[] = {0x62,0x6f,0x6f,0x6c,};
u8 main_keys_key_array_37[] = {0x6f,0x70,0x65,0x72,0x61,0x74,0x6f,0x72,};
u8 main_keys_key_array_39[] = {0x74,0x79,0x70,0x65,0x6e,0x61,0x6d,0x65,};
u8 main_keys_key_array_40[] = {0x74,0x72,0x79,};
u8 main_keys_key_array_44[] = {0x73,0x77,0x69,0x74,0x63,0x68,};
u8 main_keys_key_array_45[] = {0x61,0x6c,0x69,0x67,0x6e,0x6f,0x66,};
u8 main_keys_key_array_46[] = {0x69,0x6e,0x74,};
u8 main_keys_key_array_48[] = {0x72,0x65,0x69,0x6e,0x74,0x65,0x72,0x70,0x72,0x65,0x74,0x5f,0x63,0x61,0x73,0x74,};
u8 main_keys_key_array_49[] = {0x73,0x74,0x61,0x74,0x69,0x63,0x5f,0x63,0x61,0x73,0x74,};
u8 main_keys_key_array_51[] = {0x76,0x6f,0x69,0x64,};
u8 main_keys_key_array_53[] = {0x74,0x68,0x69,0x73,};
u8 main_keys_key_array_56[] = {0x63,0x68,0x61,0x72,};
u8 main_keys_key_array_59[] = {0x6e,0x61,0x6d,0x65,0x73,0x70,0x61,0x63,0x65,};
u8 main_keys_key_array_60[] = {0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,};
u8 main_keys_key_array_61[] = {0x65,0x6c,0x73,0x65,};
u8 main_keys_key_array_64[] = {0x63,0x61,0x74,0x63,0x68,};
u8 main_keys_key_array_65[] = {0x6e,0x75,0x6c,0x6c,0x70,0x74,0x72,};
u8 main_keys_key_array_67[] = {0x63,0x61,0x73,0x65,};
u8 main_keys_key_array_68[] = {0x65,0x78,0x70,0x6f,0x72,0x74,};
u8 main_keys_key_array_71[] = {0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,};
u8 main_keys_key_array_73[] = {0x65,0x6e,0x75,0x6d,};
u8 main_keys_key_array_79[] = {0x73,0x68,0x6f,0x72,0x74,};
u8 main_keys_key_array_81[] = {0x65,0x78,0x70,0x6c,0x69,0x63,0x69,0x74,};
u8 main_keys_key_array_82[] = {0x63,0x6c,0x61,0x73,0x73,};
u8 main_keys_key_array_84[] = {0x73,0x74,0x61,0x74,0x69,0x63,0x5f,0x61,0x73,0x73,0x65,0x72,0x74,};
u8 main_keys_key_array_86[] = {0x64,0x79,0x6e,0x61,0x6d,0x69,0x63,0x5f,0x63,0x61,0x73,0x74,};
u8 main_keys_key_array_89[] = {0x66,0x6f,0x72,};
u8 main_keys_key_array_90[] = {0x64,0x65,0x66,0x61,0x75,0x6c,0x74,};
u8 main_keys_key_array_91[] = {0x62,0x72,0x65,0x61,0x6b,};
u8 main_keys_key_array_92[] = {0x64,0x65,0x6c,0x65,0x74,0x65,};
u8 main_keys_key_array_94[] = {0x61,0x6c,0x69,0x67,0x6e,0x61,0x73,};
u8 main_keys_key_array_95[] = {0x6e,0x6f,0x65,0x78,0x63,0x65,0x70,0x74,};
u8 main_keys_key_array_98[] = {0x76,0x6f,0x6c,0x61,0x74,0x69,0x6c,0x65,};
u8 main_keys_key_array_100[] = {0x66,0x6c,0x6f,0x61,0x74,};
u8 main_keys_key_array_101[] = {0x63,0x6f,0x6e,0x73,0x74,0x5f,0x63,0x61,0x73,0x74,};
u8 main_keys_key_array_102[] = {0x73,0x69,0x7a,0x65,0x6f,0x66,};
u8 main_keys_key_array_104[] = {0x6c,0x6f,0x6e,0x67,};
u8 main_keys_key_array_105[] = {0x69,0x66,};
u8 main_keys_key_array_106[] = {0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,};
u8 main_keys_key_array_107[] = {0x70,0x72,0x69,0x76,0x61,0x74,0x65,};
u8 main_keys_key_array_109[] = {0x73,0x74,0x61,0x74,0x69,0x63,};
u8 main_keys_key_array_110[] = {0x75,0x6e,0x69,0x6f,0x6e,};
u8 main_keys_key_array_111[] = {0x65,0x78,0x74,0x65,0x72,0x6e,};
u8 main_keys_key_array_112[] = {0x75,0x73,0x69,0x6e,0x67,};
u8 main_keys_key_array_115[] = {0x74,0x72,0x75,0x65,};
u8 main_keys_key_array_116[] = {0x64,0x6f,0x75,0x62,0x6c,0x65,};
u8 main_keys_key_array_117[] = {0x64,0x65,0x63,0x6c,0x74,0x79,0x70,0x65,};
u8 main_keys_key_array_118[] = {0x76,0x69,0x72,0x74,0x75,0x61,0x6c,};
u8 main_keys_key_array_119[] = {0x6e,0x65,0x77,};
String_Const_u8 main_keys_key_array[121] = {
{main_keys_key_array_0, 3},
{main_keys_key_array_1, 6},
{0, 0},
{main_keys_key_array_3, 2},
{main_keys_key_array_4, 4},
{main_keys_key_array_5, 5},
{0, 0},
{0, 0},
{main_keys_key_array_8, 7},
{0, 0},
{main_keys_key_array_10, 12},
{0, 0},
{main_keys_key_array_12, 6},
{main_keys_key_array_13, 6},
{main_keys_key_array_14, 9},
{0, 0},
{0, 0},
{0, 0},
{0, 0},
{main_keys_key_array_19, 5},
{0, 0},
{main_keys_key_array_21, 6},
{main_keys_key_array_22, 8},
{0, 0},
{main_keys_key_array_24, 6},
{main_keys_key_array_25, 6},
{0, 0},
{0, 0},
2019-10-22 05:53:47 +00:00
{main_keys_key_array_28, 6},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{0, 0},
{0, 0},
{0, 0},
{main_keys_key_array_34, 5},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_36, 4},
{main_keys_key_array_37, 8},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_39, 8},
{main_keys_key_array_40, 3},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{0, 0},
{main_keys_key_array_44, 6},
{main_keys_key_array_45, 7},
{main_keys_key_array_46, 3},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_48, 16},
{main_keys_key_array_49, 11},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_51, 4},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_53, 4},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
2019-10-22 05:53:47 +00:00
{main_keys_key_array_56, 4},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{main_keys_key_array_59, 9},
{main_keys_key_array_60, 8},
{main_keys_key_array_61, 4},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{main_keys_key_array_64, 5},
{main_keys_key_array_65, 7},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_67, 4},
2019-10-22 05:53:47 +00:00
{main_keys_key_array_68, 6},
{0, 0},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_71, 8},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_73, 4},
2019-10-22 05:53:47 +00:00
{0, 0},
2019-09-27 03:52:29 +00:00
{0, 0},
2019-10-22 05:53:47 +00:00
{0, 0},
{0, 0},
{0, 0},
{main_keys_key_array_79, 5},
2019-10-22 05:53:47 +00:00
{0, 0},
{main_keys_key_array_81, 8},
{main_keys_key_array_82, 5},
2019-10-22 05:53:47 +00:00
{0, 0},
{main_keys_key_array_84, 13},
2019-10-22 05:53:47 +00:00
{0, 0},
{main_keys_key_array_86, 12},
2019-10-22 05:53:47 +00:00
{0, 0},
{0, 0},
{main_keys_key_array_89, 3},
{main_keys_key_array_90, 7},
{main_keys_key_array_91, 5},
{main_keys_key_array_92, 6},
2019-10-22 05:53:47 +00:00
{0, 0},
{main_keys_key_array_94, 7},
{main_keys_key_array_95, 8},
2019-10-22 05:53:47 +00:00
{0, 0},
{0, 0},
{main_keys_key_array_98, 8},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_100, 5},
{main_keys_key_array_101, 10},
2019-10-22 05:53:47 +00:00
{main_keys_key_array_102, 6},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_104, 4},
{main_keys_key_array_105, 2},
{main_keys_key_array_106, 8},
{main_keys_key_array_107, 7},
2019-09-27 03:52:29 +00:00
{0, 0},
{main_keys_key_array_109, 6},
{main_keys_key_array_110, 5},
{main_keys_key_array_111, 6},
{main_keys_key_array_112, 5},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{main_keys_key_array_115, 4},
{main_keys_key_array_116, 6},
{main_keys_key_array_117, 8},
{main_keys_key_array_118, 7},
{main_keys_key_array_119, 3},
2019-09-27 03:52:29 +00:00
{0, 0},
};
Lexeme_Table_Value main_keys_value_array[121] = {
{4, TokenCppKind_Asm},
{4, TokenCppKind_Struct},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Do},
{4, TokenCppKind_Goto},
{8, TokenCppKind_LiteralFalse},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_Typedef},
2019-10-22 05:53:47 +00:00
{0, 0},
{4, TokenCppKind_ThreadLocal},
2019-10-01 23:34:54 +00:00
{0, 0},
{4, TokenCppKind_Signed},
{4, TokenCppKind_Friend},
{4, TokenCppKind_Protected},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
2019-10-22 05:53:47 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_Const},
2019-10-22 05:53:47 +00:00
{0, 0},
{4, TokenCppKind_TypeID},
{4, TokenCppKind_Unsigned},
2019-10-22 05:53:47 +00:00
{0, 0},
{4, TokenCppKind_Return},
2019-10-22 05:53:47 +00:00
{4, TokenCppKind_Public},
{0, 0},
{0, 0},
{4, TokenCppKind_Inline},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{0, 0},
{0, 0},
{0, 0},
{4, TokenCppKind_While},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Bool},
{4, TokenCppKind_Operator},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Typename},
2019-10-22 05:53:47 +00:00
{4, TokenCppKind_Try},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
2019-10-22 05:53:47 +00:00
{0, 0},
{4, TokenCppKind_Switch},
{4, TokenCppKind_AlignOf},
{4, TokenCppKind_Int},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_ReinterpretCast},
{4, TokenCppKind_StaticCast},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Void},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_This},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_Char},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_Namespace},
{4, TokenCppKind_Register},
{4, TokenCppKind_Else},
2019-09-27 03:52:29 +00:00
{0, 0},
2019-10-22 05:53:47 +00:00
{0, 0},
{4, TokenCppKind_Catch},
{4, TokenCppKind_NullPtr},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Case},
{4, TokenCppKind_Export},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_Continue},
{0, 0},
2019-10-22 05:53:47 +00:00
{4, TokenCppKind_Enum},
{0, 0},
2019-10-22 05:53:47 +00:00
{0, 0},
{0, 0},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_Short},
{0, 0},
{4, TokenCppKind_Explicit},
{4, TokenCppKind_Class},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_StaticAssert},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_DynamicCast},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_For},
{4, TokenCppKind_Default},
{4, TokenCppKind_Break},
{4, TokenCppKind_Delete},
{0, 0},
{4, TokenCppKind_AlignAs},
{4, TokenCppKind_NoExcept},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
{4, TokenCppKind_Volatile},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Float},
2019-10-22 05:53:47 +00:00
{4, TokenCppKind_ConstCast},
{4, TokenCppKind_SizeOf},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Long},
{4, TokenCppKind_If},
{4, TokenCppKind_Template},
{4, TokenCppKind_Private},
2019-09-27 03:52:29 +00:00
{0, 0},
{4, TokenCppKind_Static},
{4, TokenCppKind_Union},
2019-10-22 05:53:47 +00:00
{4, TokenCppKind_Extern},
{4, TokenCppKind_Using},
2019-10-20 01:46:57 +00:00
{0, 0},
{0, 0},
{8, TokenCppKind_LiteralTrue},
{4, TokenCppKind_Double},
{4, TokenCppKind_DeclType},
{4, TokenCppKind_Virtual},
{4, TokenCppKind_New},
2019-10-22 05:53:47 +00:00
{0, 0},
2019-09-27 03:52:29 +00:00
};
i32 main_keys_slot_count = 121;
u64 main_keys_seed = 0xc6a99799e45617dd;
2019-10-01 23:34:54 +00:00
u64 pp_directives_hash_array[25] = {
0xfa6a010b7dbbde13,0x0000000000000000,0xce2f38db2af5366d,0xfa6a010b7d62d06d,
0xcc962e54221688f9,0x0000000000000000,0x03b5dc5556efc84d,0xfa6a010b0bc317e5,
0x0000000000000000,0xcaa053e8a98a24b9,0xcaa053e8a98a2085,0xcc9620cd74b482d5,
0x0000000000000000,0x0000000000000000,0x0000000000000000,0x0000000000000000,
0xce2f38da33096dd7,0xce2f38dbf3d6ad6d,0xfa6a010b0bd76809,0x0000000000000000,
0xfa6a010b0edd496d,0xce2f38e88510d3c9,0x0000000000000000,0xcaa053e8aa33abcd,
0x0000000000000000,
2019-09-27 03:52:29 +00:00
};
u8 pp_directives_key_array_0[] = {0x75,0x73,0x69,0x6e,0x67,};
u8 pp_directives_key_array_2[] = {0x64,0x65,0x66,0x69,0x6e,0x65,};
u8 pp_directives_key_array_3[] = {0x75,0x6e,0x64,0x65,0x66,};
u8 pp_directives_key_array_4[] = {0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,};
u8 pp_directives_key_array_6[] = {0x69,0x66,};
u8 pp_directives_key_array_7[] = {0x65,0x6e,0x64,0x69,0x66,};
u8 pp_directives_key_array_9[] = {0x65,0x6c,0x73,0x65,};
u8 pp_directives_key_array_10[] = {0x65,0x6c,0x69,0x66,};
u8 pp_directives_key_array_11[] = {0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,};
u8 pp_directives_key_array_16[] = {0x69,0x6d,0x70,0x6f,0x72,0x74,};
u8 pp_directives_key_array_17[] = {0x69,0x66,0x6e,0x64,0x65,0x66,};
u8 pp_directives_key_array_18[] = {0x65,0x72,0x72,0x6f,0x72,};
u8 pp_directives_key_array_20[] = {0x69,0x66,0x64,0x65,0x66,};
u8 pp_directives_key_array_21[] = {0x70,0x72,0x61,0x67,0x6d,0x61,};
u8 pp_directives_key_array_23[] = {0x6c,0x69,0x6e,0x65,};
2019-10-01 23:34:54 +00:00
String_Const_u8 pp_directives_key_array[25] = {
{pp_directives_key_array_0, 5},
2019-09-27 03:52:29 +00:00
{0, 0},
{pp_directives_key_array_2, 6},
2019-10-20 01:46:57 +00:00
{pp_directives_key_array_3, 5},
{pp_directives_key_array_4, 7},
2019-09-27 03:52:29 +00:00
{0, 0},
{pp_directives_key_array_6, 2},
{pp_directives_key_array_7, 5},
2019-09-27 03:52:29 +00:00
{0, 0},
2019-10-22 05:53:47 +00:00
{pp_directives_key_array_9, 4},
{pp_directives_key_array_10, 4},
{pp_directives_key_array_11, 7},
{0, 0},
2019-09-27 03:52:29 +00:00
{0, 0},
{0, 0},
2019-09-27 03:52:29 +00:00
{0, 0},
{pp_directives_key_array_16, 6},
{pp_directives_key_array_17, 6},
{pp_directives_key_array_18, 5},
2019-09-27 03:52:29 +00:00
{0, 0},
{pp_directives_key_array_20, 5},
{pp_directives_key_array_21, 6},
{0, 0},
{pp_directives_key_array_23, 4},
2019-09-27 03:52:29 +00:00
{0, 0},
};
2019-10-01 23:34:54 +00:00
Lexeme_Table_Value pp_directives_value_array[25] = {
{5, TokenCppKind_PPUsing},
2019-09-27 03:52:29 +00:00
{0, 0},
2019-10-22 05:53:47 +00:00
{5, TokenCppKind_PPDefine},
2019-10-20 01:46:57 +00:00
{5, TokenCppKind_PPUndef},
2019-10-22 05:53:47 +00:00
{5, TokenCppKind_PPInclude},
{0, 0},
{5, TokenCppKind_PPIf},
{5, TokenCppKind_PPEndIf},
{0, 0},
2019-10-22 05:53:47 +00:00
{5, TokenCppKind_PPElse},
{5, TokenCppKind_PPElIf},
{5, TokenCppKind_PPVersion},
{0, 0},
2019-10-20 01:46:57 +00:00
{0, 0},
2019-09-27 03:52:29 +00:00
{0, 0},
2019-10-22 05:53:47 +00:00
{0, 0},
{5, TokenCppKind_PPImport},
{5, TokenCppKind_PPIfNDef},
{5, TokenCppKind_PPError},
{0, 0},
{5, TokenCppKind_PPIfDef},
{5, TokenCppKind_PPPragma},
{0, 0},
{5, TokenCppKind_PPLine},
{0, 0},
2019-09-27 03:52:29 +00:00
};
2019-10-01 23:34:54 +00:00
i32 pp_directives_slot_count = 25;
u64 pp_directives_seed = 0x7dd6fc44901da387;
2019-09-27 03:52:29 +00:00
u64 pp_keys_hash_array[2] = {
0x0000000000000000,0x3eb4becea6185ce7,
2019-09-27 03:52:29 +00:00
};
u8 pp_keys_key_array_1[] = {0x64,0x65,0x66,0x69,0x6e,0x65,0x64,};
2019-09-27 03:52:29 +00:00
String_Const_u8 pp_keys_key_array[2] = {
{0, 0},
{pp_keys_key_array_1, 7},
2019-09-27 03:52:29 +00:00
};
Lexeme_Table_Value pp_keys_value_array[2] = {
2019-10-22 05:53:47 +00:00
{0, 0},
{4, TokenCppKind_PPDefined},
2019-09-27 03:52:29 +00:00
};
i32 pp_keys_slot_count = 2;
u64 pp_keys_seed = 0x62441372bace9443;
2019-10-22 05:53:47 +00:00
struct Lex_State_Cpp{
u32 flags_ZF0;
u32 flags_KF0;
u16 flags_KB0;
u8 *base;
u8 *delim_first;
u8 *delim_one_past_last;
u8 *emit_ptr;
u8 *ptr;
u8 *opl_ptr;
};
internal void
lex_full_input_cpp_init(Lex_State_Cpp *state_ptr, String_Const_u8 input){
state_ptr->flags_ZF0 = 0;
state_ptr->flags_KF0 = 0;
state_ptr->flags_KB0 = 0;
state_ptr->base = input.str;
state_ptr->delim_first = input.str;
state_ptr->delim_one_past_last = input.str;
state_ptr->emit_ptr = input.str;
state_ptr->ptr = input.str;
state_ptr->opl_ptr = input.str + input.size;
}
internal b32
lex_full_input_cpp_breaks(Arena *arena, Token_List *list, Lex_State_Cpp *state_ptr, u64 max){
b32 result = false;
u64 emit_counter = 0;
Lex_State_Cpp state;
block_copy_struct(&state, state_ptr);
2019-09-27 03:52:29 +00:00
{
state_label_1: // root
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_EOF;
token.kind = 0;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
result = true;
2019-09-27 03:52:29 +00:00
goto end;
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
case 0x00:case 0x01:case 0x02:case 0x03:case 0x04:case 0x05:case 0x06:
case 0x07:case 0x08:case 0x0e:case 0x0f:case 0x10:case 0x11:case 0x12:
case 0x13:case 0x14:case 0x15:case 0x16:case 0x17:case 0x18:case 0x19:
case 0x1a:case 0x1b:case 0x1c:case 0x1d:case 0x1e:case 0x1f:case 0x40:
case 0x60:case 0x7f:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x09:case 0x0b:case 0x0c:case 0x0d:case 0x20:
{
2019-10-22 05:53:47 +00:00
if ((HasFlag(state.flags_KF0, 0x2))){
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_4; // error_body
}
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_3; // whitespace
}break;
case 0x0a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_KB0 &= ~(0x1);
state.flags_KF0 &= ~(0x1);
state.flags_KF0 &= ~(0x2);
2019-09-27 03:52:29 +00:00
goto state_label_3; // whitespace
}break;
case 0x21:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_60; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
if ((HasFlag(state.flags_KF0, 0x1))){
state.ptr += 1;
goto state_label_26; // include_quotes
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x23:
{
2019-10-22 05:53:47 +00:00
if ((!HasFlag(state.flags_KB0, 0x1))){
state.ptr += 1;
goto state_label_23; // pp_directive_whitespace
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_67; // op stage
2019-09-27 03:52:29 +00:00
}break;
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_2; // identifier
}break;
case 0x25:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_64; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x26:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_61; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x27:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x40;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x28:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_ParenOp;
token.kind = 13;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x29:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_ParenCl;
token.kind = 14;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_63; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x2b:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_53; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x2c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Comma;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_54; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x2e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_6; // operator_or_fnumber_dot
}break;
case 0x2f:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_7; // operator_or_comment_slash
}break;
case 0x30:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_9; // znumber
}break;
case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:case 0x37:
case 0x38:case 0x39:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_8; // number
}break;
case 0x3a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_52; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x3b:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Semicolon;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3c:
{
2019-10-22 05:53:47 +00:00
if ((!HasFlag(state.flags_KF0, 0x1))){
state.ptr += 1;
goto state_label_56; // op stage
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_25; // include_pointy
2019-09-27 03:52:29 +00:00
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_59; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x3e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_57; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x3f:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Ternary;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x4;
goto state_label_27; // pre_L
2019-09-27 03:52:29 +00:00
}break;
case 0x52:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_31; // pre_R
2019-09-27 03:52:29 +00:00
}break;
case 0x55:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x20;
goto state_label_29; // pre_U
2019-09-27 03:52:29 +00:00
}break;
case 0x5b:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_BrackOp;
token.kind = 13;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x5c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_5; // backslash
}break;
case 0x5d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_BrackCl;
token.kind = 14;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x5e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Xor;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x10;
goto state_label_28; // pre_u
2019-09-27 03:52:29 +00:00
}break;
case 0x7b:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_BraceOp;
token.kind = 11;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x7c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_62; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x7d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_BraceCl;
token.kind = 12;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x7e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Tilde;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_2: // identifier
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_KB0, 0x1)){
Lexeme_Table_Lookup lookup = lexeme_table_lookup(pp_keys_hash_array, pp_keys_key_array, pp_keys_value_array, pp_keys_slot_count, pp_keys_seed, state.emit_ptr, token.size);
2019-09-27 03:52:29 +00:00
if (lookup.found_match){
token.kind = lookup.base_kind;
token.sub_kind = lookup.sub_kind;
break;
}
}
2019-10-22 05:53:47 +00:00
Lexeme_Table_Lookup lookup = lexeme_table_lookup(main_keys_hash_array, main_keys_key_array, main_keys_value_array, main_keys_slot_count, main_keys_seed, state.emit_ptr, token.size);
2019-09-27 03:52:29 +00:00
if (lookup.found_match){
token.kind = lookup.base_kind;
token.sub_kind = lookup.sub_kind;
break;
}
token.sub_kind = TokenCppKind_Identifier;
token.kind = 6;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
case 0x00:case 0x01:case 0x02:case 0x03:case 0x04:case 0x05:case 0x06:
case 0x07:case 0x08:case 0x09:case 0x0a:case 0x0b:case 0x0c:case 0x0d:
case 0x0e:case 0x0f:case 0x10:case 0x11:case 0x12:case 0x13:case 0x14:
case 0x15:case 0x16:case 0x17:case 0x18:case 0x19:case 0x1a:case 0x1b:
case 0x1c:case 0x1d:case 0x1e:case 0x1f:case 0x20:case 0x21:case 0x22:
case 0x23:case 0x25:case 0x26:case 0x27:case 0x28:case 0x29:case 0x2a:
case 0x2b:case 0x2c:case 0x2d:case 0x2e:case 0x2f:case 0x3a:case 0x3b:
case 0x3c:case 0x3d:case 0x3e:case 0x3f:case 0x40:case 0x5b:case 0x5c:
case 0x5d:case 0x5e:case 0x60:case 0x7b:case 0x7c:case 0x7d:case 0x7e:
case 0x7f:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_KB0, 0x1)){
Lexeme_Table_Lookup lookup = lexeme_table_lookup(pp_keys_hash_array, pp_keys_key_array, pp_keys_value_array, pp_keys_slot_count, pp_keys_seed, state.emit_ptr, token.size);
2019-09-27 03:52:29 +00:00
if (lookup.found_match){
token.kind = lookup.base_kind;
token.sub_kind = lookup.sub_kind;
break;
}
}
2019-10-22 05:53:47 +00:00
Lexeme_Table_Lookup lookup = lexeme_table_lookup(main_keys_hash_array, main_keys_key_array, main_keys_value_array, main_keys_slot_count, main_keys_seed, state.emit_ptr, token.size);
2019-09-27 03:52:29 +00:00
if (lookup.found_match){
token.kind = lookup.base_kind;
token.sub_kind = lookup.sub_kind;
break;
}
token.sub_kind = TokenCppKind_Identifier;
token.kind = 6;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_2; // identifier
}break;
}
}
{
state_label_3: // whitespace
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Whitespace;
token.kind = 1;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Whitespace;
token.kind = 1;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x09:case 0x0b:case 0x0c:case 0x0d:case 0x20:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_3; // whitespace
}break;
case 0x0a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_KB0 &= ~(0x1);
state.flags_KF0 &= ~(0x1);
state.flags_KF0 &= ~(0x2);
2019-09-27 03:52:29 +00:00
goto state_label_3; // whitespace
}break;
}
}
{
state_label_4: // error_body
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PPErrorMessage;
token.kind = 10;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_4; // error_body
}break;
case 0x0a:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PPErrorMessage;
token.kind = 10;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_5: // backslash
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Backslash;
token.kind = 1;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Backslash;
token.kind = 1;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x0a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Backslash;
token.kind = 1;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_6: // operator_or_fnumber_dot
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Dot;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Dot;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_DotStar;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_68; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_10; // fnumber_decimal
}break;
}
}
{
state_label_7: // operator_or_comment_slash
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Div;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Div;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_49; // comment_block
2019-09-27 03:52:29 +00:00
}break;
case 0x2f:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_51; // comment_line
2019-09-27 03:52:29 +00:00
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_DivEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_8: // number
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralInteger;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralInteger;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_10; // fnumber_decimal
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_8; // number
}break;
case 0x45:case 0x65:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_11; // fnumber_exponent
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_18; // L_number
}break;
case 0x55:case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_17; // U_number
}break;
case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_20; // l_number
}break;
}
}
{
state_label_9: // znumber
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralInteger;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralInteger;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_10; // fnumber_decimal
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x2;
2019-09-27 03:52:29 +00:00
goto state_label_16; // number_oct
}break;
case 0x45:case 0x65:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_11; // fnumber_exponent
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_18; // L_number
}break;
case 0x55:case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_17; // U_number
}break;
case 0x58:case 0x78:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x1;
2019-09-27 03:52:29 +00:00
goto state_label_14; // number_hex_first
}break;
case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_20; // l_number
}break;
}
}
{
state_label_10: // fnumber_decimal
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_10; // fnumber_decimal
}break;
case 0x45:case 0x65:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_11; // fnumber_exponent
}break;
case 0x46:case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat32;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_11: // fnumber_exponent
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2b:case 0x2d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_12; // fnumber_exponent_sign
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_13; // fnumber_exponent_digits
}break;
case 0x46:case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat32;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_12: // fnumber_exponent_sign
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_13; // fnumber_exponent_digits
}break;
case 0x46:case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat32;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_13: // fnumber_exponent_digits
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_13; // fnumber_exponent_digits
}break;
case 0x46:case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat32;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralFloat64;
token.kind = 9;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_14: // number_hex_first
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_15; // number_hex
}break;
}
}
{
state_label_15: // number_hex
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralIntegerHex;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralIntegerHex;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_15; // number_hex
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_18; // L_number
}break;
case 0x55:case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_17; // U_number
}break;
case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_20; // l_number
}break;
}
}
{
state_label_16: // number_oct
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralIntegerOct;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LiteralIntegerOct;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x2;
2019-09-27 03:52:29 +00:00
goto state_label_16; // number_oct
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_18; // L_number
}break;
case 0x55:case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_17; // U_number
}break;
case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_20; // l_number
}break;
}
}
{
state_label_17: // U_number
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexU;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctU;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerU;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexU;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctU;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerU;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_19; // UL_number
}break;
case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_21; // Ul_number
}break;
}
}
{
state_label_18: // L_number
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_22; // LL_number
}break;
case 0x55:case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexUL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctUL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerUL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_19: // UL_number
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexUL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctUL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerUL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexUL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctUL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerUL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x4c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexULL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctULL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerULL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_20: // l_number
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x55:case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexUL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctUL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerUL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
goto state_label_22; // LL_number
}break;
}
}
{
state_label_21: // Ul_number
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexUL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctUL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerUL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexUL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctUL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerUL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x6c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexULL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctULL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerULL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_22: // LL_number
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexLL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctLL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerLL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexLL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctLL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerLL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x55:case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x1)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerHexULL;
token.kind = 8;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x2)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralIntegerOctULL;
token.kind = 8;
break;
}
token.sub_kind = TokenCppKind_LiteralIntegerULL;
token.kind = 8;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_23: // pp_directive_whitespace
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
goto state_label_1; // root
}break;
case 0x09:case 0x0b:case 0x0c:case 0x20:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_23; // pp_directive_whitespace
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x47:case 0x48:case 0x49:case 0x4a:case 0x4b:
case 0x4c:case 0x4d:case 0x4e:case 0x4f:case 0x50:case 0x51:case 0x52:
case 0x53:case 0x54:case 0x55:case 0x56:case 0x57:case 0x58:case 0x59:
case 0x5a:case 0x5f:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:case 0x67:case 0x68:case 0x69:case 0x6a:case 0x6b:case 0x6c:
case 0x6d:case 0x6e:case 0x6f:case 0x70:case 0x71:case 0x72:case 0x73:
case 0x74:case 0x75:case 0x76:case 0x77:case 0x78:case 0x79:case 0x7a:
{
2019-10-22 05:53:47 +00:00
state.delim_first = state.ptr;
state.flags_KB0 |= 0x1;
state.ptr += 1;
goto state_label_24; // pp_directive
}break;
}
}
{
state_label_24: // pp_directive
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
2019-10-22 05:53:47 +00:00
state.delim_one_past_last = state.ptr;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
Lexeme_Table_Lookup lookup = lexeme_table_lookup(pp_directives_hash_array, pp_directives_key_array, pp_directives_value_array, pp_directives_slot_count, pp_directives_seed, state.delim_first, (state.delim_one_past_last - state.delim_first));
2019-09-27 03:52:29 +00:00
if (lookup.found_match){
token.kind = lookup.base_kind;
token.sub_kind = lookup.sub_kind;
break;
}
token.sub_kind = TokenCppKind_PPUnknown;
token.kind = 2;
}while(0);
switch (token.sub_kind){
case TokenCppKind_PPInclude:
{
2019-10-22 05:53:47 +00:00
state.flags_KF0 |= 0x1;
2019-09-27 03:52:29 +00:00
}break;
case TokenCppKind_PPError:
{
2019-10-22 05:53:47 +00:00
state.flags_KF0 |= 0x2;
2019-09-27 03:52:29 +00:00
}break;
}
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.delim_one_past_last = state.ptr;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
Lexeme_Table_Lookup lookup = lexeme_table_lookup(pp_directives_hash_array, pp_directives_key_array, pp_directives_value_array, pp_directives_slot_count, pp_directives_seed, state.delim_first, (state.delim_one_past_last - state.delim_first));
2019-09-27 03:52:29 +00:00
if (lookup.found_match){
token.kind = lookup.base_kind;
token.sub_kind = lookup.sub_kind;
break;
}
token.sub_kind = TokenCppKind_PPUnknown;
token.kind = 2;
}while(0);
switch (token.sub_kind){
case TokenCppKind_PPInclude:
{
2019-10-22 05:53:47 +00:00
state.flags_KF0 |= 0x1;
2019-09-27 03:52:29 +00:00
}break;
case TokenCppKind_PPError:
{
2019-10-22 05:53:47 +00:00
state.flags_KF0 |= 0x2;
2019-09-27 03:52:29 +00:00
}break;
}
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x47:case 0x48:case 0x49:case 0x4a:case 0x4b:
case 0x4c:case 0x4d:case 0x4e:case 0x4f:case 0x50:case 0x51:case 0x52:
case 0x53:case 0x54:case 0x55:case 0x56:case 0x57:case 0x58:case 0x59:
case 0x5a:case 0x5f:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:case 0x67:case 0x68:case 0x69:case 0x6a:case 0x6b:case 0x6c:
case 0x6d:case 0x6e:case 0x6f:case 0x70:case 0x71:case 0x72:case 0x73:
case 0x74:case 0x75:case 0x76:case 0x77:case 0x78:case 0x79:case 0x7a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_24; // pp_directive
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_25: // include_pointy
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x20:case 0x2e:case 0x2f:case 0x30:case 0x31:case 0x32:case 0x33:
case 0x34:case 0x35:case 0x36:case 0x37:case 0x38:case 0x39:case 0x41:
case 0x42:case 0x43:case 0x44:case 0x45:case 0x46:case 0x47:case 0x48:
case 0x49:case 0x4a:case 0x4b:case 0x4c:case 0x4d:case 0x4e:case 0x4f:
case 0x50:case 0x51:case 0x52:case 0x53:case 0x54:case 0x55:case 0x56:
case 0x57:case 0x58:case 0x59:case 0x5a:case 0x5c:case 0x5f:case 0x61:
case 0x62:case 0x63:case 0x64:case 0x65:case 0x66:case 0x67:case 0x68:
case 0x69:case 0x6a:case 0x6b:case 0x6c:case 0x6d:case 0x6e:case 0x6f:
case 0x70:case 0x71:case 0x72:case 0x73:case 0x74:case 0x75:case 0x76:
case 0x77:case 0x78:case 0x79:case 0x7a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_25; // include_pointy
2019-09-27 03:52:29 +00:00
}break;
case 0x3e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PPIncludeFile;
token.kind = 10;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_26: // include_quotes
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x20:case 0x2e:case 0x2f:case 0x30:case 0x31:case 0x32:case 0x33:
case 0x34:case 0x35:case 0x36:case 0x37:case 0x38:case 0x39:case 0x41:
case 0x42:case 0x43:case 0x44:case 0x45:case 0x46:case 0x47:case 0x48:
case 0x49:case 0x4a:case 0x4b:case 0x4c:case 0x4d:case 0x4e:case 0x4f:
case 0x50:case 0x51:case 0x52:case 0x53:case 0x54:case 0x55:case 0x56:
case 0x57:case 0x58:case 0x59:case 0x5a:case 0x5c:case 0x5f:case 0x61:
case 0x62:case 0x63:case 0x64:case 0x65:case 0x66:case 0x67:case 0x68:
case 0x69:case 0x6a:case 0x6b:case 0x6c:case 0x6d:case 0x6e:case 0x6f:
case 0x70:case 0x71:case 0x72:case 0x73:case 0x74:case 0x75:case 0x76:
case 0x77:case 0x78:case 0x79:case 0x7a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_26; // include_quotes
2019-09-27 03:52:29 +00:00
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PPIncludeFile;
token.kind = 10;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_27: // pre_L
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_2; // identifier
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_2; // identifier
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x52:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_31; // pre_R
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_28: // pre_u
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_2; // identifier
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_2; // identifier
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x38:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_ZF0 |= 0x8;
goto state_label_30; // pre_u8
2019-09-27 03:52:29 +00:00
}break;
case 0x52:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_31; // pre_R
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_29: // pre_U
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_2; // identifier
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_2; // identifier
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x52:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_31; // pre_R
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_30: // pre_u8
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_2; // identifier
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_2; // identifier
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x52:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_31; // pre_R
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_31: // pre_R
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_2; // identifier
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_2; // identifier
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.delim_first = state.ptr;
goto state_label_45; // raw_string_get_delim
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_32: // string
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x0a:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
if ((!HasFlag(state.flags_ZF0, 0x40))){
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x4)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringWide;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x8)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringUTF8;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x10)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringUTF16;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x20)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringUTF32;
token.kind = 10;
break;
}
token.sub_kind = TokenCppKind_LiteralString;
token.kind = 10;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x27:
{
2019-10-22 05:53:47 +00:00
if ((HasFlag(state.flags_ZF0, 0x40))){
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x4)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralCharacterWide;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x8)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralCharacterUTF8;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x10)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralCharacterUTF16;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x20)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralCharacterUTF32;
token.kind = 10;
break;
}
token.sub_kind = TokenCppKind_LiteralCharacter;
token.kind = 10;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x5c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_33; // string_esc
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_33: // string_esc
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_EOF;
token.kind = 0;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
result = true;
2019-09-27 03:52:29 +00:00
goto end;
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_34; // string_esc_oct2
2019-09-27 03:52:29 +00:00
}break;
case 0x55:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_37; // string_esc_universal_8
2019-09-27 03:52:29 +00:00
}break;
case 0x75:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_41; // string_esc_universal_4
2019-09-27 03:52:29 +00:00
}break;
case 0x78:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_36; // string_esc_hex
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_34: // string_esc_oct2
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_35; // string_esc_oct1
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_35: // string_esc_oct1
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_36: // string_esc_hex
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_36; // string_esc_hex
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_37: // string_esc_universal_8
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_38; // string_esc_universal_7
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_38: // string_esc_universal_7
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_39; // string_esc_universal_6
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_39: // string_esc_universal_6
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_40; // string_esc_universal_5
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_40: // string_esc_universal_5
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_41; // string_esc_universal_4
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_41: // string_esc_universal_4
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_42; // string_esc_universal_3
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_42: // string_esc_universal_3
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_43; // string_esc_universal_2
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_43: // string_esc_universal_2
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_44; // string_esc_universal_1
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_44: // string_esc_universal_1
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
case 0x30:case 0x31:case 0x32:case 0x33:case 0x34:case 0x35:case 0x36:
case 0x37:case 0x38:case 0x39:case 0x41:case 0x42:case 0x43:case 0x44:
case 0x45:case 0x46:case 0x61:case 0x62:case 0x63:case 0x64:case 0x65:
case 0x66:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_32; // string
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_45: // raw_string_get_delim
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_EOF;
token.kind = 0;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
result = true;
2019-09-27 03:52:29 +00:00
goto end;
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_45; // raw_string_get_delim
2019-09-27 03:52:29 +00:00
}break;
case 0x20:case 0x29:case 0x5c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x28:
{
2019-10-22 05:53:47 +00:00
state.delim_one_past_last = state.ptr;
state.ptr += 1;
goto state_label_46; // raw_string_find_close
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_46: // raw_string_find_close
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_EOF;
token.kind = 0;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
result = true;
2019-09-27 03:52:29 +00:00
goto end;
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_46; // raw_string_find_close
2019-09-27 03:52:29 +00:00
}break;
case 0x29:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_47; // raw_string_try_delim
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_47: // raw_string_try_delim
2019-10-22 05:53:47 +00:00
umem delim_length = state.delim_one_past_last - state.delim_first;
2019-09-27 03:52:29 +00:00
umem parse_length = 0;
for (;;){
if (parse_length == delim_length){
goto state_label_48; // raw_string_try_quote
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
goto state_label_48; // raw_string_try_quote
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
if (*state.ptr == state.delim_first[parse_length]){
state.ptr += 1;
2019-09-27 03:52:29 +00:00
parse_length += 1;
}
else{
goto state_label_46; // raw_string_find_close
2019-09-27 03:52:29 +00:00
}
}
}
{
state_label_48: // raw_string_try_quote
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
goto state_label_46; // raw_string_find_close
2019-09-27 03:52:29 +00:00
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
goto state_label_46; // raw_string_find_close
2019-09-27 03:52:29 +00:00
}break;
case 0x22:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x4)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringWideRaw;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x8)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringUTF8Raw;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x10)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringUTF16Raw;
token.kind = 10;
break;
}
2019-10-22 05:53:47 +00:00
if (HasFlag(state.flags_ZF0, 0x20)){
2019-09-27 03:52:29 +00:00
token.sub_kind = TokenCppKind_LiteralStringUTF32Raw;
token.kind = 10;
break;
}
token.sub_kind = TokenCppKind_LiteralStringRaw;
token.kind = 10;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_49: // comment_block
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_BlockComment;
token.kind = 3;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_EOF;
token.kind = 0;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
result = true;
2019-09-27 03:52:29 +00:00
goto end;
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_49; // comment_block
2019-09-27 03:52:29 +00:00
}break;
case 0x0a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
state.flags_KB0 &= ~(0x1);
state.flags_KF0 &= ~(0x1);
goto state_label_49; // comment_block
2019-09-27 03:52:29 +00:00
}break;
case 0x2a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_50; // comment_block_try_close
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_50: // comment_block_try_close
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_BlockComment;
token.kind = 3;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_EOF;
token.kind = 0;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
result = true;
2019-09-27 03:52:29 +00:00
goto end;
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_49; // comment_block
2019-09-27 03:52:29 +00:00
}break;
case 0x2a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_50; // comment_block_try_close
2019-09-27 03:52:29 +00:00
}break;
case 0x2f:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_BlockComment;
token.kind = 3;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_51: // comment_line
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LineComment;
token.kind = 3;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_51; // comment_line
2019-09-27 03:52:29 +00:00
}break;
case 0x0a:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LineComment;
token.kind = 3;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_52: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Colon;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Colon;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_ColonColon;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_53: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Plus;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Plus;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2b:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PlusPlus;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PlusEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_54: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Minus;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Minus;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_MinusMinus;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_MinusEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_55; // op stage
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_55: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Arrow;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Arrow;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2a:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_ArrowStar;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_56: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Less;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Less;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_65; // op stage
2019-09-27 03:52:29 +00:00
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_58; // op stage
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_57: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Grtr;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Grtr;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_GrtrEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
goto state_label_66; // op stage
2019-09-27 03:52:29 +00:00
}break;
}
}
{
state_label_58: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LessEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LessEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Compare;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_59: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Eq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Eq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_EqEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_60: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Not;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Not;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_NotEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_61: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_And;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_And;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x26:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_AndAnd;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_62: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Or;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Or;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x7c:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_OrOr;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_63: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Star;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Star;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_StarEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_64: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Mod;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_Mod;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_ModEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_65: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LeftLeft;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LeftLeft;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LeftLeftEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_66: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_RightRight;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_RightRight;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x3d:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_RightRightEq;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_67: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PPStringify;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PPStringify;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x23:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_PPConcat;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
{
state_label_68: // op stage
2019-10-22 05:53:47 +00:00
if (state.ptr == state.opl_ptr){
2019-09-27 03:52:29 +00:00
if ((true)){
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}
}
2019-10-22 05:53:47 +00:00
switch (*state.ptr){
2019-09-27 03:52:29 +00:00
default:
{
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_LexError;
token.kind = 2;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
}
state.emit_ptr = state.ptr;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
case 0x2e:
{
2019-10-22 05:53:47 +00:00
state.ptr += 1;
2019-09-27 03:52:29 +00:00
{
Token token = {};
2019-10-22 05:53:47 +00:00
token.pos = (i64)(state.emit_ptr - state.base);
token.size = (i64)(state.ptr - state.emit_ptr);
token.flags = state.flags_KB0;
2019-09-27 03:52:29 +00:00
do{
token.sub_kind = TokenCppKind_DotDotDot;
token.kind = 7;
}while(0);
2019-10-22 05:53:47 +00:00
token_list_push(arena, list, &token);
emit_counter += 1;
if (emit_counter == max){
goto end;
2019-09-27 03:52:29 +00:00
}
2019-10-22 05:53:47 +00:00
state.emit_ptr = state.ptr;
}
state.flags_ZF0 = 0;
2019-09-27 03:52:29 +00:00
goto state_label_1; // root
}break;
}
}
end:;
2019-10-22 05:53:47 +00:00
block_copy_struct(state_ptr, &state);
return(result);
}
internal Token_List
lex_full_input_cpp(Arena *arena, String_Const_u8 input){
Lex_State_Cpp state = {};
lex_full_input_cpp_init(&state, input);
Token_List list = {};
lex_full_input_cpp_breaks(arena, &list, &state, max_u64);
2019-09-27 03:52:29 +00:00
return(list);
}