|
Graphviz 14.1.3~dev.20260207.2357
|
#include "config.h"#include <assert.h>#include <ast/error.h>#include <cgraph/cgraph.h>#include <gvpr/actions.h>#include <gvpr/compile.h>#include <inttypes.h>#include <limits.h>#include <math.h>#include <stdbool.h>#include <stddef.h>#include <stdint.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <util/agxbuf.h>#include <util/alloc.h>#include <util/list.h>#include <util/prisize_t.h>#include <util/startswith.h>#include <util/strview.h>#include <util/unreachable.h>#include <gvpr/gdefs.h>#include <ctype.h>#include <gvpr/trie.c>Go to the source code of this file.
Macros | |
| #define | MIN(a, b) ((a) < (b) ? (a) : (b)) |
| #define | MAX(a, b) ((a) > (b) ? (a) : (b)) |
| #define | MINTYPE (LAST_M + 1) /* First type occurs after last M_ */ |
| #define | haveGraph (1 <= codePhase && codePhase <= 4) |
| #define | haveTarget (2 <= codePhase && codePhase <= 4) |
| #define | inWalk (2 <= codePhase && codePhase <= 3) |
Functions | |
| static int | isedge (Agobj_t *obj) |
| static void * | int2ptr (long long i) |
| static long long | ptr2int (const void *p) |
| static char * | nameOf (Expr_t *ex, Agobj_t *obj, agxbuf *tmps) |
| static char * | bbOf (Expr_t *pgm, char *pt, bool getll) |
| static char * | xyOf (Expr_t *pgm, char *pt, bool getx) |
| static int | posOf (Agnode_t *np, int idx, double *v) |
| static Agdesc_t | xargs (char *args) |
| static char * | deparse (Expr_t *ex, Exnode_t *n, agxbuf *xb) |
| static Agobj_t * | deref (Expr_t *pgm, Exnode_t *x, Exref_t *ref, Agobj_t *objp, Gpr_t *state) |
| static void | assignable (Agobj_t *objp, unsigned char *name) |
| static int | setattr (Agobj_t *objp, char *name, char *val) |
| static char * | kindToStr (int kind) |
| static char * | kindOf (Agobj_t *objp) |
| static int | lookup (Expr_t *pgm, Agobj_t *objp, Exid_t *sym, Extype_t *v) |
| static int | getArg (long long n, Gpr_t *state, strview_t *out) |
| static int | setDfltAttr (Agraph_t *gp, char *k, char *name, char *value) |
| static int | toKind (char *k, char *fn) |
| static char * | nxtAttr (Agraph_t *gp, char *k, char *name) |
| static char * | getDfltAttr (Agraph_t *gp, char *k, char *name) |
| static Extype_t | getval (Expr_t *pgm, Exnode_t *node, Exid_t *sym, Exref_t *ref, void *env, int elt, Exdisc_t *disc) |
| static char * | typeName (long op) |
| static int | setval (Expr_t *pgm, Exnode_t *x, Exid_t *sym, Exref_t *ref, void *env, Extype_t v) |
| static Extype_t | length (Exid_t *rhs, Exdisc_t *disc) |
| static int | in (Extype_t lhs, Exid_t *rhs, Exdisc_t *disc) |
| static tctype | typeChk (tctype intype, Exid_t *sym) |
| static tctype | typeChkExp (Exref_t *ref, Exid_t *sym) |
| static Extype_t | refval (Expr_t *pgm, Exnode_t *node, Exid_t *sym, Exref_t *ref) |
| static int | binary (Exnode_t *l, Exnode_t *ex, Exnode_t *r, int arg) |
| static int | strToTvtype (char *s) |
| static char * | tvtypeToStr (long long v) |
| static int | stringOf (Expr_t *prog, Exnode_t *x, int arg) |
| static int | convert (Exnode_t *x, long type, int arg) |
| static Extype_t | keyval (Extype_t v, long type) |
| static Exdisc_t * | initDisc (Gpr_t *state) |
| static Exnode_t * | compile (Expr_t *prog, char *src, char *input, int line, const char *lbl, const char *sfx, int kind) |
| static void | checkGuard (Exnode_t *gp, char *src, int line) |
| static case_stmt * | mkStmts (Expr_t *prog, char *src, case_infos_t cases, const char *lbl) |
| static bool | mkBlock (comp_block *bp, Expr_t *prog, char *src, parse_block *inp, size_t i) |
| static const char * | doFlags (compflags_t flags) |
| comp_prog * | compileProg (parse_prog *inp, Gpr_t *state, compflags_t flags) |
| void | freeCompileProg (comp_prog *p) |
| Agraph_t * | readG (FILE *fp) |
| Agraph_t * | openG (char *name, Agdesc_t desc) |
| Agraph_t * | openSubg (Agraph_t *g, char *name) |
| Agnode_t * | openNode (Agraph_t *g, char *name) |
| Agedge_t * | openEdge (Agraph_t *g, Agnode_t *t, Agnode_t *h, char *key) |
Variables | |
| static int | codePhase |
| static int | a2t [] |
|
static |
|
static |
Definition at line 91 of file compile.c.
References exstralloc(), exstring(), and len().
Referenced by getval().
Definition at line 1838 of file compile.c.
References BUILTIN, compare(), Exdata_u::constant, Exnode_s::data, EQ, GE, int2ptr(), EX_STYPE::integer, INTEGRAL, LE, NE, Exnode_s::op, Exnode_s::type, and Exdata_u::value.
Referenced by initDisc().
|
static |
Definition at line 2234 of file compile.c.
References error, ERROR_WARNING, exisAssign(), exnoncast(), and setErrorFileLine().
Referenced by mkStmts().
|
static |
Definition at line 2199 of file compile.c.
References agxbdisown(), agxbprint(), excomp(), exexpr(), getErrorErrors(), label(), and NULL.
Referenced by compileProg(), mkBlock(), and mkStmts().
| comp_prog * compileProg | ( | parse_prog * | inp, |
| Gpr_t * | state, | ||
| compflags_t | flags | ||
| ) |
Definition at line 2358 of file compile.c.
References comp_prog::begin_stmt, parse_prog::begin_stmt, comp_prog::blocks, parse_prog::blocks, codePhase, compile(), doFlags(), Gpr_t::dp, comp_prog::end_stmt, parse_prog::end_stmt, comp_prog::endg_stmt, parse_prog::endg_stmt, error, ERROR_ERROR, exinit(), exopen(), flags, freeCompileProg(), G, getErrorErrors(), gv_calloc(), initDisc(), parse_prog::l_begin, parse_prog::l_end, parse_prog::l_endg, LIST_AT, LIST_IS_EMPTY, LIST_SIZE, mkBlock(), comp_prog::n_blocks, NULL, comp_prog::prog, setErrorLine(), parse_prog::source, symbols, T_graph, TBITS, tchk, Exid_s::type, comp_prog::uses_graph, VOIDTYPE, and Y.
Referenced by gvpr_core().
|
static |
Definition at line 2075 of file compile.c.
References AGNODE, AGRAPH, AGTYPE, BUILTIN, Exdata_u::constant, Exnode_s::data, exerror(), FLOATING, int2ptr(), INTEGER, EX_STYPE::integer, isedge(), STRING, EX_STYPE::string, strToTvtype(), T_edge, T_graph, T_node, tvtypeToStr(), type, Exnode_s::type, validTVT(), and Exdata_u::value.
Referenced by initDisc().
|
static |
Definition at line 204 of file compile.c.
References AGHEAD, AGTAIL, agxbfree(), Exdata_u::constant, Gpr_t::curgraph, Gpr_t::curobj, Exnode_s::data, deparse(), deref(), Exdata_u::dyna, DYNAMIC, exerror(), Exid_s::index, int2ptr(), EX_STYPE::integer, isedge(), Exid_s::lex, Exid_s::name, Exref_s::next, Gpr_t::nextgraph, Gpr_t::outgraph, Exref_s::symbol, Gpr_t::target, Gpr_t::tvedge, Gpr_t::tvnext, Gpr_t::tvroot, Exdata_u::value, and Exdata_u::variable.
Referenced by deref(), getval(), and setval().
|
static |
Definition at line 2344 of file compile.c.
References flags.
Referenced by compileProg().
| void freeCompileProg | ( | comp_prog * | p | ) |
Definition at line 2437 of file compile.c.
References comp_prog::blocks, comp_block::edge_stmts, exclose(), free(), comp_prog::n_blocks, comp_block::node_stmts, and comp_prog::prog.
Referenced by compileProg(), and gvpr().
get value associated with $n
| out | [out] Found argument on success |
Definition at line 470 of file compile.c.
References Gpr_t::args, exerror(), LIST_GET, LIST_SIZE, NULL, and out().
Referenced by getval().
|
static |
Definition at line 551 of file compile.c.
References agattr_text(), Agsym_s::defval, error, ERROR_WARNING, kindToStr(), and toKind().
Referenced by getval().
|
static |
Definition at line 563 of file compile.c.
References addEdge(), addNode(), agattr_text(), agattrsym(), agcontains(), agdegree(), agfstedge(), agfstin(), agfstnode(), agfstout(), agfstsubg(), aghead, aghtmlstr(), AGINEDGE, agisdirected(), agisstrict(), agnedges(), agnnodes(), AGNODE, agnode(), agnxtedge(), agnxtin(), agnxtnode(), agnxtout(), agnxtsubg(), AGOUTEDGE, AGRAPH, agraphof(), agrelabel_node(), agroot(), agsubg(), agtail, AGTYPE, agxbfree(), agxget(), Gpr_t::args, bbOf(), canon(), cloneG(), cloneO(), closeFile(), colorx(), compOf(), CONSTANT, copy(), copyAttr(), Gpr_t::curgraph, Gpr_t::curobj, strview_t::data, deleteObj(), deparse(), deref(), disc, error, ERROR_ERROR, ERROR_WARNING, EX_ARRAY, EX_CALL, exerror(), exstralloc(), findBinding(), EX_STYPE::floating, gvprbinding::fn, freadFile(), fwriteFile(), getArg(), getDfltAttr(), graphviz_node_induce(), ID, Exid_s::index, indexOf(), Gpr_t::infname, int2ptr(), EX_STYPE::integer, isEdge(), kindOf(), LAST_V, Exid_s::lex, LIST_APPEND, LIST_REMOVE, LIST_SIZE, lockGraph(), lookup(), match(), MAX, MIN, Exid_s::name, nameOf(), Gpr_t::nextgraph, NULL, nxtAttr(), openEdge(), openFile(), openG(), openNode(), openSubg(), Gpr_t::outFile, Gpr_t::outgraph, ptr2int(), readFile(), readLine(), rindexOf(), setattr(), setDfltAttr(), sfioWrite(), strview_t::size, SIZE_MAX, EX_STYPE::string, Gpr_t::target, Gpr_t::tgtname, toHtml(), toKind(), toLower(), toUpper(), Gpr_t::tvedge, Gpr_t::tvnext, Gpr_t::tvroot, Gpr_t::tvt, UNREACHABLE, writeFile(), xargs(), and xyOf().
Referenced by initDisc().
gvpr’s custom in implementation
The main purpose of this is to extend in to work on the command line options array, ARGV.
| lhs | The left-hand side operand to in. |
| rhs | The right-hand side operand to in. |
| disc | The libexpr discipline. |
lhs was found to be within rhs. Definition at line 1641 of file compile.c.
References Gpr_t::args, disc, exerror(), Exid_s::index, EX_STYPE::integer, LIST_SIZE, and Exid_s::name.
Referenced by agdeledgeimage(), initDisc(), installedge(), MdiChild::loadFile(), newedge(), and Blocks::totalOrder().
Definition at line 2163 of file compile.c.
References a2t, binary(), Exdisc_s::binaryf, convert(), Exdisc_s::convertf, Gpr_t::dp, Gpr_t::errf, error, ERROR_ERROR, errorf(), Exdisc_s::errorf, EX_CHARSTRING, EX_UNDECLARED, EX_VERSION, Exdisc_s::exitf, Gpr_t::exitf, Exdisc_s::flags, Exdisc_s::getf, getval(), in(), Exdisc_s::inf, Exdisc_s::keyf, keyval(), length(), Exdisc_s::lengthf, Exdisc_s::reff, refval(), Exdisc_s::setf, setval(), stringOf(), Exdisc_s::stringof, Exdisc_s::symbols, symbols, typeName(), Exdisc_s::typename, Exdisc_s::types, Exdisc_s::user, and Exdisc_s::version.
Referenced by compileProg().
|
static |
|
static |
Definition at line 2151 of file compile.c.
References AGID, int2ptr(), EX_STYPE::integer, and type.
Referenced by initDisc().
|
static |
Definition at line 330 of file compile.c.
References agobjkind(), and kindToStr().
Referenced by getval(), and lookup().
|
static |
gvpr’s custom # implementation
The main purpose of this is to extend # to work on the command line options array, ARGV.
| rhs | The right-hand side operand to #. |
| disc | The libexpr discipline. |
Definition at line 1615 of file compile.c.
References Gpr_t::args, disc, exerror(), Exid_s::index, EX_STYPE::integer, LIST_SIZE, and Exid_s::name.
Referenced by arrow_length(), arrow_length_tee(), arrow_type_tee(), doBlock(), fig_textspan(), find_longest_path(), gv_strndup(), gvRenderData(), initDisc(), jpeg_size(), mapToSphere(), position(), positionChildren(), reader(), renderdata(), writer(), and xml_core().
Definition at line 335 of file compile.c.
References agattr_text(), agattrsym(), agdegree(), AGHEAD, agisdirected(), agisstrict(), agnameof(), agnedges(), agnnodes(), AGNODE, agparent(), AGRAPH, agraphof(), agroot(), AGTAIL, AGTYPE, agxbfree(), agxget(), error, ERROR_WARNING, exerror(), EX_STYPE::floating, ID, Exid_s::index, EX_STYPE::integer, isedge(), kindOf(), Exid_s::lex, Exid_s::name, nameOf(), posOf(), ptr2int(), and EX_STYPE::string.
Referenced by getval().
|
static |
Definition at line 2283 of file compile.c.
References agxbfree(), agxbprint(), agxbuse(), comp_block::begg_stmt, parse_block::begg_stmt, codePhase, compile(), comp_block::does_walk_graph, E, comp_block::edge_stmts, parse_block::edge_stmts, free(), G, getErrorErrors(), parse_block::l_beging, label(), LIST_IS_EMPTY, LIST_SIZE, mkStmts(), comp_block::n_estmts, comp_block::n_nstmts, comp_block::node_stmts, parse_block::node_stmts, PRISIZE_T, symbols, T_edge, T_graph, T_node, tchk, Exid_s::type, V, VOIDTYPE, and Y.
Referenced by compileProg().
|
static |
Definition at line 2244 of file compile.c.
References case_stmt::action, case_info::action, agxbfree(), agxbprint(), agxbuse(), case_info::astart, checkGuard(), compile(), getErrorErrors(), case_info::gstart, case_stmt::guard, case_info::guard, gv_calloc(), INTEGER, LIST_AT, LIST_SIZE, and PRISIZE_T.
Referenced by mkBlock().
Definition at line 58 of file compile.c.
References AGHEAD, agisdirected(), AGMKOUT, agnameof(), AGNODE, AGRAPH, agraphof(), AGTAIL, AGTYPE, agxbput(), agxbputc(), agxbuse(), and exstring().
Referenced by getval(), lookup(), and stringOf().
|
static |
Definition at line 527 of file compile.c.
References agattr_text(), agnxtattr(), exerror(), Agsym_s::name, NULL, and toKind().
Referenced by getval().
Definition at line 2495 of file compile.c.
References agbindrec(), agedge(), aggetrec(), sameG(), and UDATA.
Referenced by cloneO(), copy(), and getval().
Definition at line 2485 of file compile.c.
References agbindrec(), aggetrec(), agnode(), and UDATA.
Referenced by cloneO(), copy(), and getval().
Definition at line 2475 of file compile.c.
References agbindrec(), aggetrec(), agsubg(), and UDATA.
Referenced by cloneO(), compOf(), copy(), getval(), and traverse().
|
static |
|
static |
| Agraph_t * readG | ( | FILE * | fp | ) |
Definition at line 1770 of file compile.c.
References agxbfree(), CONSTANT, deparse(), exerror(), exzero(), Exid_s::index, EX_STYPE::integer, Exid_s::lex, TV_bfs, TV_dfs, TV_en, TV_flat, TV_fwd, TV_ne, TV_postdfs, TV_postfwd, TV_postrev, TV_prepostdfs, TV_prepostfwd, TV_prepostrev, TV_rev, and typeChkExp().
Referenced by initDisc().
|
static |
Definition at line 304 of file compile.c.
References agattr_text(), agattrsym(), agraphof(), agroot(), AGTYPE, and agxset().
Referenced by getval(), and setval().
|
static |
|
static |
Definition at line 1533 of file compile.c.
References agnameof(), agroot(), agxbfree(), assignable(), Gpr_t::curgraph, Gpr_t::curobj, deparse(), deref(), error, exerror(), Gpr_t::flags, free(), GV_NEXT_SET, Exid_s::index, int2ptr(), EX_STYPE::integer, MAXNAME, Exid_s::name, Gpr_t::name_used, Gpr_t::outgraph, setattr(), EX_STYPE::string, Exref_s::symbol, Gpr_t::tgtname, Gpr_t::tvnext, Gpr_t::tvroot, Gpr_t::tvt, typeName(), and validTVT().
Referenced by initDisc().
Definition at line 2044 of file compile.c.
References agxbfree(), Exdata_u::constant, Exnode_s::data, exerror(), int2ptr(), EX_STYPE::integer, nameOf(), STRING, EX_STYPE::string, tvtypeToStr(), Exnode_s::type, typeName(), and Exdata_u::value.
Referenced by initDisc().
|
static |
Definition at line 1950 of file compile.c.
References exerror(), startswith(), TV_bfs, TV_dfs, TV_en, TV_flat, TV_fwd, TV_ne, TV_postdfs, TV_postfwd, TV_postrev, TV_prepostdfs, TV_prepostfwd, TV_prepostrev, and TV_rev.
Referenced by convert().
|
static |
|
static |
Definition at line 1989 of file compile.c.
References exerror(), TV_bfs, TV_dfs, TV_en, TV_flat, TV_fwd, TV_ne, TV_postdfs, TV_postfwd, TV_postrev, TV_prepostdfs, TV_prepostfwd, TV_prepostrev, and TV_rev.
Referenced by convert(), and stringOf().
Definition at line 1668 of file compile.c.
References DYNAMIC, E, exerror(), F, FLOATING, G, haveGraph, haveTarget, I, ID, Exid_s::index, INTEGER, Exid_s::lex, MAXNAME, NAME, Exid_s::name, S, STRING, T_edge, T_graph, T_node, tchk, Exid_s::type, V, Y, and YALL.
Referenced by typeChkExp().
Definition at line 1751 of file compile.c.
References Exref_s::next, Exref_s::symbol, and typeChk().
Referenced by refval().
|
static |
Definition at line 1527 of file compile.c.
References MINTYPE, and typenames.
Referenced by initDisc(), setval(), and stringOf().
|
static |
Definition at line 161 of file compile.c.
References Agdirected, Agdesc_s::directed, error, ERROR_WARNING, and Agdesc_s::strict.
Referenced by getval().
|
static |
Definition at line 112 of file compile.c.
References exstralloc(), exstring(), and len().
Referenced by getval().
|
static |
|
static |
Definition at line 1655 of file compile.c.
Referenced by compileProg(), and mkBlock().