summary refs log tree commit diff stats
path: root/compiler/dfa.nim
Commit message (Expand)AuthorAgeFilesLines
* isLastRead regression fix (#10463)cooldome2019-01-281-6/+9
* control flow graphs: introduce 'join' points for easy analyses based on abstr...Andreas Rumpf2019-01-231-152/+391
* improve vmgen.codeListing formatting (#10306)Timothee Cour2019-01-151-1/+1
* use control flow graph for sink paramsAndrii Riabushenko2018-12-091-1/+1
* destructors; fixes #9594Araq2018-11-021-2/+12
* DFA: implement exception handling properlyAndreas Rumpf2018-10-141-2/+20
* dfa.nim: clarify exception handlingAndreas Rumpf2018-10-131-1/+4
* compiler: cleanup dfa.nimAndreas Rumpf2018-10-121-21/+25
* don't require an implementation for procs marked with .error; activate the mo...Araq2018-09-291-0/+1
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* make tests green againAndreas Rumpf2018-05-181-1/+2
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-1/+1
* transf and vmgen compile againAndreas Rumpf2018-05-121-7/+7
* lambda lifting compiles againAndreas Rumpf2018-05-121-2/+2
* introduce nkTupleConstr AST node for unary tuple construction; breaking changeAndreas Rumpf2018-04-131-1/+1
* DFA: code cleanups and some support for consuming operationsAndreas Rumpf2017-12-271-109/+9
* DFA attempt to capture the essence of linear typesAndreas Rumpf2017-12-231-2/+21
* DFA works for simple examplesAndreas Rumpf2017-12-211-9/+17
* next steps in giving Nim a decent DFA infrastructureAraq2017-12-181-5/+83
* Fixed koch warning when installing Nim. (#6898)Gerke Max Preussner2017-12-121-3/+3
* deprecated unary '<'Andreas Rumpf2017-10-291-2/+2
* initial version of the new untested destructor passAndreas Rumpf2017-10-121-4/+4
* preparations for a new AST transformation pass with the aim of giving us reli...Andreas Rumpf2017-10-091-22/+40
* disable the new DFAAndreas Rumpf2017-10-091-24/+33
* work in progress: a dataflow architecture for NimAndreas Rumpf2017-10-091-0/+412
href='#n288'>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 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537