Skip to content
Snippets Groups Projects
Select Git revision
  • aba7c1206f7e79f81c5d4931b8a10bea1e02a4e5
  • master default protected
  • streebog
  • gost28147
  • master-updates
  • ed448
  • shake256
  • curve448
  • ecc-sqrt
  • gosthash94cp
  • cmac64
  • block16-refactor
  • siv-mode
  • cmac-layout
  • delete-des-compat
  • delete-rsa_blind
  • aes-struct-layout
  • release-3.4-fixes
  • struct-layout
  • attribute-deprecated
  • rename-data-symbols
  • nettle_3.5.1_release_20190627
  • nettle_3.5_release_20190626
  • nettle_3.5rc1
  • nettle_3.4.1_release_20181204
  • nettle_3.4.1rc1
  • nettle_3.4_release_20171119
  • nettle_3.4rc2
  • nettle_3.4rc1
  • nettle_3.3_release_20161001
  • nettle_3.2_release_20160128
  • nettle_3.1.1_release_20150424
  • nettle_3.1_release_20150407
  • nettle_3.1rc3
  • nettle_3.1rc2
  • nettle_3.1rc1
  • nettle_3.0_release_20140607
  • nettle_2.7.1_release_20130528
  • nettle_2.7_release_20130424
  • nettle_2.6_release_20130116
  • nettle_2.5_release_20120707
41 results

aes-meta.c

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    docode.h 1.11 KiB
    /*
    || This file is part of Pike. For copyright information see COPYRIGHT.
    || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
    || for more information.
    */
    
    #ifndef DOCODE_H
    #define DOCODE_H
    
    #define DO_LVALUE 1
    #define DO_NOT_COPY 2
    #define DO_POP 4
    #define DO_INDIRECT 8
    #define DO_LVALUE_IF_POSSIBLE 16
    #define DO_NOT_COPY_TOPLEVEL 32
    
    #define WANT_LVALUE (DO_LVALUE | DO_INDIRECT)
    
    #define emit0(X)     insert_opcode0((X),c->lex.current_line, c->lex.current_file)
    #define emit1(X,Y)   insert_opcode1((X),(Y),c->lex.current_line, c->lex.current_file)
    #define emit2(X,Y,Z) insert_opcode2((X),(Y),(Z),c->lex.current_line, c->lex.current_file)
    
    /* Prototypes begin here */
    void upd_int(int offset, INT32 tmp);
    INT32 read_int(int offset);
    void push_address(void);
    void push_explicit(INT32 address);
    INT32 pop_address(void);
    int alloc_label(void);
    int do_jump(int token,INT32 lbl);
    void modify_stack_depth(int delta);
    void do_pop(int x);
    int do_docode(node *n, int flags);
    void do_cond_jump(node *n, int label, int iftrue, int flags);
    INT32 do_code_block(node *n);
    INT32 docode(node *n);
    /* Prototypes end here */
    
    #endif