1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/*
new_orc_parser.c:
Copyright (C) 2006
Steven Yi
Modifications 2009 by Christopher Wilson for multicore
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include "csoundCore.h"
#include "csound_orc.h"
#include "corfile.h"
#include "score_param.h"
#if defined(HAVE_DIRENT_H)
# include <dirent.h>
# if 0 && defined(__MACH__)
typedef void* DIR;
DIR opendir(const char *);
struct dirent *readdir(DIR*);
int closedir(DIR*);
# endif
#endif
#if defined(WIN32) && !defined(__CYGWIN__)
# include <io.h>
# include <direct.h>
#endif
extern void csound_orcrestart(FILE*, void *);
extern int csound_orcdebug;
extern void print_csound_predata(void *);
extern int csound_prelex_init(void *);
extern void csound_preset_extra(void *, void *);
extern int csound_prelex(CSOUND*, void*);
extern int csound_prelex_destroy(void *);
extern int csound_orc_scan_buffer (const char *, size_t, void*);
extern int csound_orcparse(PARSE_PARM *, void *, CSOUND*, TREE**);
extern int csound_orclex_init(void *);
extern void csound_orcset_extra(void *, void *);
extern void csound_orcset_lineno(int, void*);
extern int csound_orclex_destroy(void *);
extern void init_symbtab(CSOUND*);
extern void print_tree(CSOUND *, char *, TREE *);
extern TREE* verify_tree(CSOUND *, TREE *, TYPE_TABLE*);
extern TREE *csound_orc_expand_expressions(CSOUND *, TREE *);
extern TREE* csound_orc_optimize(CSOUND *, TREE *);
//extern void csp_orc_analyze_tree(CSOUND* csound, TREE* root);
extern void csp_orc_sa_print_list(CSOUND*);
#if 0
static void csound_print_preextra(CSOUND *csound, PRE_PARM *x)
{
csound->DebugMsg(csound,"********* Extra Pre Data %p *********\n", x);
csound->DebugMsg(csound,"macros = %p, macro_stack_ptr = %u, ifdefStack=%p,\n"
"isIfndef=%d\n, line=%d\n",
x->macros, x->macro_stack_ptr, x->ifdefStack, x->isIfndef, x->line);
csound->DebugMsg(csound,"******************\n");
}
#endif
uint64_t make_location(PRE_PARM *qq)
{
int d = qq->depth;
uint64_t loc = 0;
int n = (d>8?d-7:0);
for (; n<=d; n++) {
loc = (loc<<8)+(qq->lstack[n]);
}
return loc;
}
uint64_t make_slocation(PRS_PARM *qq)
{
int d = qq->depth;
uint64_t loc = 0;
int n = (d>8?d-7:0);
for (; n<=d; n++) {
loc = (loc<<8)+(qq->lstack[n]);
}
return loc;
}
// Code to add #includes of UDOs
static void add_include_udo_dir(CSOUND *csound, CORFIL *xx)
{
#if defined(HAVE_DIRENT_H)
char *dir = getenv("CS_UDO_DIR");
char buff[1024];
if (dir) {
DIR *udo = opendir(dir);
printf(Str("** found CS_UDO_DIR=%s\n"), dir);
if (udo) {
struct dirent *f;
//printf("**and it opens\n");
strcpy(buff, "#line 0\n");
while ((f = readdir(udo)) != NULL) {
char *fname = &(f->d_name[0]);
int n = (int)strlen(fname);
//printf("** name=%s n=%d\n", fname, n);
if (n>4 && (strcmp(&fname[n-4], ".udo")==0)) {
strlcat(buff, "#include \"", 1024);
strlcat(buff, dir, 1024);
strlcat(buff, "/", 1024);
strlcat(buff, fname, 1024);
strlcat(buff, "\"\n", 1024);
if (strlen(buff)>768) {
corfile_preputs(csound, buff, xx);
buff[0] ='\0';
}
}
}
closedir(udo);
strlcat(buff, "###\n", 1024);
corfile_preputs(csound, buff, xx);
}
}
//printf("Giving\n%s", corfile_body(xx));
#endif
}
TREE *csoundParseOrc(CSOUND *csound, const char *str)
{
int err;
OPARMS *O = csound->oparms;
csound->parserNamedInstrFlag = 2;
{
PRE_PARM qq;
/* Preprocess */
memset(&qq, 0, sizeof(PRE_PARM));
//csp_orc_sa_print_list(csound);
csound_prelex_init(&qq.yyscanner);
csound_preset_extra(&qq, qq.yyscanner);
qq.line = csound->orcLineOffset;
csound->expanded_orc = corfile_create_w(csound);
file_to_int(csound, "**unknown**");
if (str==NULL) {
char bb[80];
if (UNLIKELY(csound->orchstr==NULL && !csound->oparms->daemon))
csound->Die(csound,
Str("parser: failed to open input file %s\n"),
csound->orchname);
else if (csound->orchstr==NULL && csound->oparms->daemon) return NULL;
add_include_udo_dir(csound, csound->orchstr);
if (csound->orchname==NULL ||
csound->orchname[0]=='\0') csound->orchname = csound->csdname;
/* We know this is the start so stack is empty so far */
snprintf(bb, 80, "#source %d\n",
qq.lstack[0] = file_to_int(csound, csound->orchname));
corfile_puts(csound, bb, csound->expanded_orc);
snprintf(bb, 80, "#line %d\n", csound->orcLineOffset);
corfile_puts(csound, bb, csound->expanded_orc);
}
else {
char bb[80];
if (csound->orchstr == NULL ||
corfile_body(csound->orchstr) == NULL)
csound->orchstr = corfile_create_w(csound);
else
corfile_reset(csound->orchstr);
snprintf(bb, 80, "#line %d\n", csound->orcLineOffset);
corfile_puts(csound, bb, csound->orchstr);
corfile_puts(csound, str, csound->orchstr);
corfile_puts(csound, "\n#exit\n", csound->orchstr);
corfile_putc(csound, '\0', csound->orchstr);
corfile_putc(csound, '\0', csound->orchstr);
}
csound->DebugMsg(csound, "Calling preprocess on >>%s<<\n",
corfile_body(csound->orchstr));
//csound->DebugMsg(csound,"FILE: %s\n", csound->orchstr->body);
// csound_print_preextra(&qq);
cs_init_math_constants_macros(csound);
cs_init_omacros(csound, csound->omacros);
// csound_print_preextra(&qq);
csound_prelex(csound, qq.yyscanner);
if (UNLIKELY(qq.ifdefStack != NULL)) {
csound->Message(csound, Str("Unmatched #ifdef or #ifndef\n"));
csound->LongJmp(csound, 1);
}
csound_prelex_destroy(qq.yyscanner);
csound->DebugMsg(csound, "yielding >>%s<<\n",
corfile_body(csound->expanded_orc));
corfile_rm(csound, &csound->orchstr);
}
{
/* VL 15.3.2015 allocating memory here will cause
unwanted growth.
We just pass a pointer, which will be allocated
by make leaf */
TREE* astTree = NULL;
TREE* newRoot;
PARSE_PARM pp;
TYPE_TABLE* typeTable = NULL;
/* Parse */
memset(&pp, '\0', sizeof(PARSE_PARM));
init_symbtab(csound);
csound_orcdebug = O->odebug;
csound_orclex_init(&pp.yyscanner);
csound_orcset_extra(&pp, pp.yyscanner);
csound_orc_scan_buffer(corfile_body(csound->expanded_orc),
corfile_tell(csound->expanded_orc), pp.yyscanner);
//csound_orcset_lineno(csound->orcLineOffset, pp.yyscanner);
//printf("%p\n", astTree);
err = csound_orcparse(&pp, pp.yyscanner, csound, &astTree);
//printf("%p\n", astTree);
//print_tree(csound, "AST - AFTER csound_orcparse()\n", astTree);
//csp_orc_sa_cleanup(csound);
corfile_rm(csound, &csound->expanded_orc);
#ifdef PARCS
if (UNLIKELY(csound->oparms->odebug)) csp_orc_sa_print_list(csound);
#endif
if (UNLIKELY(csound->synterrcnt)) err = 3;
if (LIKELY(err == 0)) {
if (csound->oparms->odebug) csound->Message(csound,
Str("Parsing successful!\n"));
}
else {
if (err == 1){
csoundErrorMsg(csound, Str("Parsing failed due to invalid input!\n"));
}
else if (err == 2){
csoundErrorMsg(csound,
Str("Parsing failed due to memory exhaustion!\n"));
}
else if (err == 3){
csoundErrorMsg(csound, Str("Parsing failed due to %d syntax error%s!\n"),
csound->synterrcnt, csound->synterrcnt==1?"":"s");
}
goto ending;
}
if (UNLIKELY(PARSER_DEBUG)) {
print_tree(csound, "AST - INITIAL\n", astTree);
}
typeTable = csound->Malloc(csound, sizeof(TYPE_TABLE));
typeTable->udos = NULL;
typeTable->globalPool = csoundCreateVarPool(csound);
typeTable->instr0LocalPool = csoundCreateVarPool(csound);
typeTable->localPool = typeTable->instr0LocalPool;
typeTable->labelList = NULL;
astTree = verify_tree(csound, astTree, typeTable);
// csound->Free(csound, typeTable->instr0LocalPool);
// csound->Free(csound, typeTable->globalPool);
// csound->Free(csound, typeTable);
//print_tree(csound, "AST - FOLDED\n", astTree);
if (UNLIKELY(astTree == NULL || csound->synterrcnt)) {
err = 3;
if (astTree)
csound->Message(csound,
Str("Parsing failed due to %d semantic error%s!\n"),
csound->synterrcnt, csound->synterrcnt==1?"":"s");
else if (csound->synterrcnt)
csoundErrorMsg(csound, Str("Parsing failed due to syntax errors\n"));
else
csoundErrorMsg(csound, Str("Parsing failed due to no input!\n"));
goto ending;
}
err = 0;
//csp_orc_analyze_tree(csound, astTree);
// astTree = csound_orc_expand_expressions(csound, astTree);
//
if (UNLIKELY(PARSER_DEBUG)) {
print_tree(csound, "AST - AFTER VERIFICATION/EXPANSION\n", astTree);
}
ending:
csound_orclex_destroy(pp.yyscanner);
if (UNLIKELY(err)) {
csound->ErrorMsg(csound, "%s", Str("Stopping on parser failure\n"));
csoundDeleteTree(csound, astTree);
if (typeTable != NULL) {
csoundFreeVarPool(csound, typeTable->globalPool);
if (typeTable->instr0LocalPool != NULL) {
csoundFreeVarPool(csound, typeTable->instr0LocalPool);
}
if (typeTable->localPool != typeTable->instr0LocalPool) {
csoundFreeVarPool(csound, typeTable->localPool);
}
csound->Free(csound, typeTable);
}
return NULL;
}
astTree = csound_orc_optimize(csound, astTree);
//print_tree(csound, "AST after optmize", astTree);
// small hack: use an extra node as head of tree list to hold the
// typeTable, to be used during compilation
newRoot = make_leaf(csound, 0, 0, 0, NULL);
newRoot->markup = typeTable;
newRoot->next = astTree;
/* if (str!=NULL){ */
/* if (typeTable != NULL) { */
/* csoundFreeVarPool(csound, typeTable->globalPool); */
/* if (typeTable->instr0LocalPool != NULL) { */
/* csoundFreeVarPool(csound, typeTable->instr0LocalPool); */
/* } */
/* if (typeTable->localPool != typeTable->instr0LocalPool) { */
/* csoundFreeVarPool(csound, typeTable->localPool); */
/* } */
/* csound->Free(csound, typeTable); */
/* } */
/* } */
return newRoot;
}
}
|