Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* keywords */
  2.      DEF(TOK_INT, "int")
  3.      DEF(TOK_VOID, "void")
  4.      DEF(TOK_CHAR, "char")
  5.      DEF(TOK_IF, "if")
  6.      DEF(TOK_ELSE, "else")
  7.      DEF(TOK_WHILE, "while")
  8.      DEF(TOK_BREAK, "break")
  9.      DEF(TOK_RETURN, "return")
  10.      DEF(TOK_FOR, "for")
  11.      DEF(TOK_EXTERN, "extern")
  12.      DEF(TOK_STATIC, "static")
  13.      DEF(TOK_UNSIGNED, "unsigned")
  14.      DEF(TOK_GOTO, "goto")
  15.      DEF(TOK_DO, "do")
  16.      DEF(TOK_CONTINUE, "continue")
  17.      DEF(TOK_SWITCH, "switch")
  18.      DEF(TOK_CASE, "case")
  19.  
  20.      DEF(TOK_CONST1, "const")
  21.      DEF(TOK_CONST2, "__const") /* gcc keyword */
  22.      DEF(TOK_CONST3, "__const__") /* gcc keyword */
  23.      DEF(TOK_VOLATILE1, "volatile")
  24.      DEF(TOK_VOLATILE2, "__volatile") /* gcc keyword */
  25.      DEF(TOK_VOLATILE3, "__volatile__") /* gcc keyword */
  26.      DEF(TOK_LONG, "long")
  27.      DEF(TOK_REGISTER, "register")
  28.      DEF(TOK_SIGNED1, "signed")
  29.      DEF(TOK_SIGNED2, "__signed") /* gcc keyword */
  30.      DEF(TOK_SIGNED3, "__signed__") /* gcc keyword */
  31.      DEF(TOK_AUTO, "auto")
  32.      DEF(TOK_INLINE1, "inline")
  33.      DEF(TOK_INLINE2, "__inline") /* gcc keyword */
  34.      DEF(TOK_INLINE3, "__inline__") /* gcc keyword */
  35.      DEF(TOK_RESTRICT1, "restrict")
  36.      DEF(TOK_RESTRICT2, "__restrict")
  37.      DEF(TOK_RESTRICT3, "__restrict__")
  38.      DEF(TOK_EXTENSION, "__extension__") /* gcc keyword */
  39.      
  40.      DEF(TOK_FLOAT, "float")
  41.      DEF(TOK_DOUBLE, "double")
  42.      DEF(TOK_BOOL, "_Bool")
  43.      DEF(TOK_SHORT, "short")
  44.      DEF(TOK_STRUCT, "struct")
  45.      DEF(TOK_UNION, "union")
  46.      DEF(TOK_TYPEDEF, "typedef")
  47.      DEF(TOK_DEFAULT, "default")
  48.      DEF(TOK_ENUM, "enum")
  49.      DEF(TOK_SIZEOF, "sizeof")
  50.      DEF(TOK_ATTRIBUTE1, "__attribute")
  51.      DEF(TOK_ATTRIBUTE2, "__attribute__")
  52.      DEF(TOK_ALIGNOF1, "__alignof")
  53.      DEF(TOK_ALIGNOF2, "__alignof__")
  54.      DEF(TOK_TYPEOF1, "typeof")
  55.      DEF(TOK_TYPEOF2, "__typeof")
  56.      DEF(TOK_TYPEOF3, "__typeof__")
  57.      DEF(TOK_LABEL, "__label__")
  58.      DEF(TOK_ASM1, "asm")
  59.      DEF(TOK_ASM2, "__asm")
  60.      DEF(TOK_ASM3, "__asm__")
  61.  
  62. /*********************************************************************/
  63. /* the following are not keywords. They are included to ease parsing */
  64. /* preprocessor only */
  65.      DEF(TOK_DEFINE, "define")
  66.      DEF(TOK_INCLUDE, "include")
  67.      DEF(TOK_INCLUDE_NEXT, "include_next")
  68.      DEF(TOK_IFDEF, "ifdef")
  69.      DEF(TOK_IFNDEF, "ifndef")
  70.      DEF(TOK_ELIF, "elif")
  71.      DEF(TOK_ENDIF, "endif")
  72.      DEF(TOK_DEFINED, "defined")
  73.      DEF(TOK_UNDEF, "undef")
  74.      DEF(TOK_ERROR, "error")
  75.      DEF(TOK_WARNING, "warning")
  76.      DEF(TOK_LINE, "line")
  77.      DEF(TOK_PRAGMA, "pragma")
  78.      DEF(TOK___LINE__, "__LINE__")
  79.      DEF(TOK___FILE__, "__FILE__")
  80.      DEF(TOK___DATE__, "__DATE__")
  81.      DEF(TOK___TIME__, "__TIME__")
  82.      DEF(TOK___FUNCTION__, "__FUNCTION__")
  83.      DEF(TOK___VA_ARGS__, "__VA_ARGS__")
  84.      
  85. /* special identifiers */
  86.      DEF(TOK___FUNC__, "__func__")
  87.      
  88. /* attribute identifiers */
  89. /* XXX: handle all tokens generically since speed is not critical */
  90.      DEF(TOK_SECTION1, "section")
  91.      DEF(TOK_SECTION2, "__section__")
  92.      DEF(TOK_ALIGNED1, "aligned")
  93.      DEF(TOK_ALIGNED2, "__aligned__")
  94.      DEF(TOK_PACKED1, "packed")
  95.      DEF(TOK_PACKED2, "__packed__")
  96.      DEF(TOK_UNUSED1, "unused")
  97.      DEF(TOK_UNUSED2, "__unused__")
  98.      DEF(TOK_CDECL1, "cdecl")
  99.      DEF(TOK_CDECL2, "__cdecl")
  100.      DEF(TOK_CDECL3, "__cdecl__")
  101.      DEF(TOK_STDCALL1, "stdcall")
  102.      DEF(TOK_STDCALL2, "__stdcall")
  103.      DEF(TOK_STDCALL3, "__stdcall__")
  104.      DEF(TOK_DLLEXPORT, "dllexport")
  105.      DEF(TOK_NORETURN1, "noreturn")
  106.      DEF(TOK_NORETURN2, "__noreturn__")
  107.      DEF(TOK_builtin_types_compatible_p, "__builtin_types_compatible_p")
  108.      DEF(TOK_builtin_constant_p, "__builtin_constant_p")
  109.      DEF(TOK_REGPARM1, "regparm")
  110.      DEF(TOK_REGPARM2, "__regparm__")
  111.  
  112. /* pragma */
  113.      DEF(TOK_pack, "pack")
  114. #if !defined(TCC_TARGET_I386)
  115.      /* already defined for assembler */
  116.      DEF(TOK_ASM_push, "push")
  117.      DEF(TOK_ASM_pop, "pop")
  118. #endif
  119.  
  120. /* builtin functions or variables */
  121.      DEF(TOK_memcpy, "memcpy")
  122.      DEF(TOK_memset, "memset")
  123.      DEF(TOK_alloca, "alloca")
  124.      DEF(TOK___divdi3, "__divdi3")
  125.      DEF(TOK___moddi3, "__moddi3")
  126.      DEF(TOK___udivdi3, "__udivdi3")
  127.      DEF(TOK___umoddi3, "__umoddi3")
  128. #if defined(TCC_TARGET_ARM)
  129.      DEF(TOK___divsi3, "__divsi3")
  130.      DEF(TOK___modsi3, "__modsi3")
  131.      DEF(TOK___udivsi3, "__udivsi3")
  132.      DEF(TOK___umodsi3, "__umodsi3")
  133.      DEF(TOK___sardi3, "__ashrdi3")
  134.      DEF(TOK___shrdi3, "__lshrdi3")
  135.      DEF(TOK___shldi3, "__ashldi3")
  136.      DEF(TOK___slltold, "__slltold")
  137.      DEF(TOK___fixunssfsi, "__fixunssfsi")
  138.      DEF(TOK___fixunsdfsi, "__fixunsdfsi")
  139.      DEF(TOK___fixunsxfsi, "__fixunsxfsi")
  140.      DEF(TOK___fixsfdi, "__fixsfdi")
  141.      DEF(TOK___fixdfdi, "__fixdfdi")
  142.      DEF(TOK___fixxfdi, "__fixxfdi")
  143. #elif defined(TCC_TARGET_C67)
  144.      DEF(TOK__divi, "_divi")
  145.      DEF(TOK__divu, "_divu")
  146.      DEF(TOK__divf, "_divf")
  147.      DEF(TOK__divd, "_divd")
  148.      DEF(TOK__remi, "_remi")
  149.      DEF(TOK__remu, "_remu")
  150.      DEF(TOK___sardi3, "__sardi3")
  151.      DEF(TOK___shrdi3, "__shrdi3")
  152.      DEF(TOK___shldi3, "__shldi3")
  153. #else
  154.      /* XXX: same names on i386 ? */
  155.      DEF(TOK___sardi3, "__sardi3")
  156.      DEF(TOK___shrdi3, "__shrdi3")
  157.      DEF(TOK___shldi3, "__shldi3")
  158. #endif
  159.      DEF(TOK___tcc_int_fpu_control, "__tcc_int_fpu_control")
  160.      DEF(TOK___tcc_fpu_control, "__tcc_fpu_control")
  161.      DEF(TOK___ulltof, "__ulltof")
  162.      DEF(TOK___ulltod, "__ulltod")
  163.      DEF(TOK___ulltold, "__ulltold")
  164.      DEF(TOK___fixunssfdi, "__fixunssfdi")
  165.      DEF(TOK___fixunsdfdi, "__fixunsdfdi")
  166.      DEF(TOK___fixunsxfdi, "__fixunsxfdi")
  167.      DEF(TOK___chkstk, "__chkstk")
  168.  
  169. /* bound checking symbols */
  170. #ifdef CONFIG_TCC_BCHECK
  171.      DEF(TOK___bound_ptr_add, "__bound_ptr_add")
  172.      DEF(TOK___bound_ptr_indir1, "__bound_ptr_indir1")
  173.      DEF(TOK___bound_ptr_indir2, "__bound_ptr_indir2")
  174.      DEF(TOK___bound_ptr_indir4, "__bound_ptr_indir4")
  175.      DEF(TOK___bound_ptr_indir8, "__bound_ptr_indir8")
  176.      DEF(TOK___bound_ptr_indir12, "__bound_ptr_indir12")
  177.      DEF(TOK___bound_ptr_indir16, "__bound_ptr_indir16")
  178.      DEF(TOK___bound_local_new, "__bound_local_new")
  179.      DEF(TOK___bound_local_delete, "__bound_local_delete")
  180.      DEF(TOK_malloc, "malloc")
  181.      DEF(TOK_free, "free")
  182.      DEF(TOK_realloc, "realloc")
  183.      DEF(TOK_memalign, "memalign")
  184.      DEF(TOK_calloc, "calloc")
  185.      DEF(TOK_memmove, "memmove")
  186.      DEF(TOK_strlen, "strlen")
  187.      DEF(TOK_strcpy, "strcpy")
  188. #endif
  189.  
  190. /* Tiny Assembler */
  191.  
  192.  DEF_ASM(byte)
  193.  DEF_ASM(align)
  194.  DEF_ASM(skip)
  195.  DEF_ASM(space)
  196.  DEF_ASM(string)
  197.  DEF_ASM(asciz)
  198.  DEF_ASM(ascii)
  199.  DEF_ASM(globl)
  200.  DEF_ASM(global)
  201.  DEF_ASM(text)
  202.  DEF_ASM(data)
  203.  DEF_ASM(bss)
  204.  DEF_ASM(previous)
  205.  DEF_ASM(fill)
  206.  DEF_ASM(org)
  207.  DEF_ASM(quad)
  208.  
  209. #ifdef TCC_TARGET_I386
  210.  
  211. /* WARNING: relative order of tokens is important. */
  212.  DEF_ASM(al)
  213.  DEF_ASM(cl)
  214.  DEF_ASM(dl)
  215.  DEF_ASM(bl)
  216.  DEF_ASM(ah)
  217.  DEF_ASM(ch)
  218.  DEF_ASM(dh)
  219.  DEF_ASM(bh)
  220.  DEF_ASM(ax)
  221.  DEF_ASM(cx)
  222.  DEF_ASM(dx)
  223.  DEF_ASM(bx)
  224.  DEF_ASM(sp)
  225.  DEF_ASM(bp)
  226.  DEF_ASM(si)
  227.  DEF_ASM(di)
  228.  DEF_ASM(eax)
  229.  DEF_ASM(ecx)
  230.  DEF_ASM(edx)
  231.  DEF_ASM(ebx)
  232.  DEF_ASM(esp)
  233.  DEF_ASM(ebp)
  234.  DEF_ASM(esi)
  235.  DEF_ASM(edi)
  236.  DEF_ASM(mm0)
  237.  DEF_ASM(mm1)
  238.  DEF_ASM(mm2)
  239.  DEF_ASM(mm3)
  240.  DEF_ASM(mm4)
  241.  DEF_ASM(mm5)
  242.  DEF_ASM(mm6)
  243.  DEF_ASM(mm7)
  244.  DEF_ASM(xmm0)
  245.  DEF_ASM(xmm1)
  246.  DEF_ASM(xmm2)
  247.  DEF_ASM(xmm3)
  248.  DEF_ASM(xmm4)
  249.  DEF_ASM(xmm5)
  250.  DEF_ASM(xmm6)
  251.  DEF_ASM(xmm7)
  252.  DEF_ASM(cr0)
  253.  DEF_ASM(cr1)
  254.  DEF_ASM(cr2)
  255.  DEF_ASM(cr3)
  256.  DEF_ASM(cr4)
  257.  DEF_ASM(cr5)
  258.  DEF_ASM(cr6)
  259.  DEF_ASM(cr7)
  260.  DEF_ASM(tr0)
  261.  DEF_ASM(tr1)
  262.  DEF_ASM(tr2)
  263.  DEF_ASM(tr3)
  264.  DEF_ASM(tr4)
  265.  DEF_ASM(tr5)
  266.  DEF_ASM(tr6)
  267.  DEF_ASM(tr7)
  268.  DEF_ASM(db0)
  269.  DEF_ASM(db1)
  270.  DEF_ASM(db2)
  271.  DEF_ASM(db3)
  272.  DEF_ASM(db4)
  273.  DEF_ASM(db5)
  274.  DEF_ASM(db6)
  275.  DEF_ASM(db7)
  276.  DEF_ASM(dr0)
  277.  DEF_ASM(dr1)
  278.  DEF_ASM(dr2)
  279.  DEF_ASM(dr3)
  280.  DEF_ASM(dr4)
  281.  DEF_ASM(dr5)
  282.  DEF_ASM(dr6)
  283.  DEF_ASM(dr7)
  284.  DEF_ASM(es)
  285.  DEF_ASM(cs)
  286.  DEF_ASM(ss)
  287.  DEF_ASM(ds)
  288.  DEF_ASM(fs)
  289.  DEF_ASM(gs)
  290.  DEF_ASM(st)
  291.  
  292.  DEF_BWL(mov)
  293.  
  294.  /* generic two operands */
  295.  DEF_BWL(add)
  296.  DEF_BWL(or)
  297.  DEF_BWL(adc)
  298.  DEF_BWL(sbb)
  299.  DEF_BWL(and)
  300.  DEF_BWL(sub)
  301.  DEF_BWL(xor)
  302.  DEF_BWL(cmp)
  303.  
  304.  /* unary ops */
  305.  DEF_BWL(inc)
  306.  DEF_BWL(dec)
  307.  DEF_BWL(not)
  308.  DEF_BWL(neg)
  309.  DEF_BWL(mul)
  310.  DEF_BWL(imul)
  311.  DEF_BWL(div)
  312.  DEF_BWL(idiv)
  313.  
  314.  DEF_BWL(xchg)
  315.  DEF_BWL(test)
  316.  
  317.  /* shifts */
  318.  DEF_BWL(rol)
  319.  DEF_BWL(ror)
  320.  DEF_BWL(rcl)
  321.  DEF_BWL(rcr)
  322.  DEF_BWL(shl)
  323.  DEF_BWL(shr)
  324.  DEF_BWL(sar)
  325.  
  326.  DEF_ASM(shldw)
  327.  DEF_ASM(shldl)
  328.  DEF_ASM(shld)
  329.  DEF_ASM(shrdw)
  330.  DEF_ASM(shrdl)
  331.  DEF_ASM(shrd)
  332.  
  333.  DEF_ASM(pushw)
  334.  DEF_ASM(pushl)
  335.  DEF_ASM(push)
  336.  DEF_ASM(popw)
  337.  DEF_ASM(popl)
  338.  DEF_ASM(pop)
  339.  DEF_BWL(in)
  340.  DEF_BWL(out)
  341.  
  342.  DEF_WL(movzb)
  343.  
  344.  DEF_ASM(movzwl)
  345.  DEF_ASM(movsbw)
  346.  DEF_ASM(movsbl)
  347.  DEF_ASM(movswl)
  348.  
  349.  DEF_WL(lea)
  350.  
  351.  DEF_ASM(les)
  352.  DEF_ASM(lds)
  353.  DEF_ASM(lss)
  354.  DEF_ASM(lfs)
  355.  DEF_ASM(lgs)
  356.  
  357.  DEF_ASM(call)
  358.  DEF_ASM(jmp)
  359.  DEF_ASM(lcall)
  360.  DEF_ASM(ljmp)
  361.  
  362.  DEF_ASMTEST(j)
  363.  
  364.  DEF_ASMTEST(set)
  365.  DEF_ASMTEST(cmov)
  366.  
  367.  DEF_WL(bsf)
  368.  DEF_WL(bsr)
  369.  DEF_WL(bt)
  370.  DEF_WL(bts)
  371.  DEF_WL(btr)
  372.  DEF_WL(btc)
  373.  
  374.  DEF_WL(lsl)
  375.  
  376.  /* generic FP ops */
  377.  DEF_FP(add)
  378.  DEF_FP(mul)
  379.  
  380.  DEF_ASM(fcom)
  381.  DEF_ASM(fcom_1) /* non existant op, just to have a regular table */
  382.  DEF_FP1(com)
  383.  
  384.  DEF_FP(comp)
  385.  DEF_FP(sub)
  386.  DEF_FP(subr)
  387.  DEF_FP(div)
  388.  DEF_FP(divr)
  389.  
  390.  DEF_BWL(xadd)
  391.  DEF_BWL(cmpxchg)
  392.  
  393.  /* string ops */
  394.  DEF_BWL(cmps)
  395.  DEF_BWL(scmp)
  396.  DEF_BWL(ins)
  397.  DEF_BWL(outs)
  398.  DEF_BWL(lods)
  399.  DEF_BWL(slod)
  400.  DEF_BWL(movs)
  401.  DEF_BWL(smov)
  402.  DEF_BWL(scas)
  403.  DEF_BWL(ssca)
  404.  DEF_BWL(stos)
  405.  DEF_BWL(ssto)
  406.  
  407.  /* generic asm ops */
  408.  
  409. #define ALT(x)
  410. #define DEF_ASM_OP0(name, opcode) DEF_ASM(name)
  411. #define DEF_ASM_OP0L(name, opcode, group, instr_type)
  412. #define DEF_ASM_OP1(name, opcode, group, instr_type, op0)
  413. #define DEF_ASM_OP2(name, opcode, group, instr_type, op0, op1)
  414. #define DEF_ASM_OP3(name, opcode, group, instr_type, op0, op1, op2)
  415. #include "i386-asm.h"
  416.  
  417. #define ALT(x)
  418. #define DEF_ASM_OP0(name, opcode)
  419. #define DEF_ASM_OP0L(name, opcode, group, instr_type) DEF_ASM(name)
  420. #define DEF_ASM_OP1(name, opcode, group, instr_type, op0) DEF_ASM(name)
  421. #define DEF_ASM_OP2(name, opcode, group, instr_type, op0, op1) DEF_ASM(name)
  422. #define DEF_ASM_OP3(name, opcode, group, instr_type, op0, op1, op2) DEF_ASM(name)
  423. #include "i386-asm.h"
  424.  
  425. #endif
  426.