Skip to content
Snippets Groups Projects
Select Git revision
  • 37f25f066869f4f5645288a9913ed65d53b14cfd
  • master default protected
  • 8.0
  • 9.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2006
  • v8.0.2004
  • v8.0.2002
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
41 results

docode.h

Blame
  • 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