summary refs log tree commit diff stats
path: root/lib/system/gc2.nim
Commit message (Expand)AuthorAgeFilesLines
* clean up a few stray c_stdout's in gc debug codeJacek Sieka2016-07-311-9/+9
* GC v2 compiles againAndreas Rumpf2016-05-231-0/+8
* Replaced ignoreStackAndRegisters with stackSize in GC_stepRuslan Mustakov2016-05-111-14/+24
* Added ignoreStackAndRegisters parameter to GC_stepRuslan Mustakov2016-05-101-11/+13
* further progress on --gc:v2Andreas Rumpf2016-02-171-48/+142
* some progress on GC v2Andreas Rumpf2016-02-031-6/+10
* removes 'x is iterator' special casing in the languageAraq2015-12-031-0/+2
* proper color flippingAraq2015-12-011-34/+27
* next steps for the GCAraq2015-12-011-5/+22
* only mark roots when markingAraq2015-12-011-4/+5
* first compiling version of the new GCAraq2015-12-011-18/+45
* first version of the new hard realtime GCAraq2015-12-011-1005/+478
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-70/+70
* lib/system/g-w - Dropped 'T' from typespdw2015-06-041-73/+78
* Clean up GCs a bitdef2015-03-101-6/+12
* Only zero strings when necessary.def2015-03-041-1/+1
* Merge pull request #2150 from def-/gc2-compilingAndreas Rumpf2015-02-161-70/+72
|\
| * Clean up some more deprecation warningsdef2015-02-161-6/+6
| * Make gc2 compile againdef2015-02-161-64/+66
* | Fix typosFederico Ceratto2015-02-151-2/+2
|/
* Some GC renames to get rid of deprecation warningsdef2015-01-061-1/+1
* the big renamefest: first stepsAraq2014-08-221-1/+1
* distinguish between 'defined' and 'declared'Araq2014-08-111-1/+1
* support for multiple test variables and var qualifiers in user-defined type c...Zahary Karadjov2013-11-131-2/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* revert to old GC; use --gc:v2 to activate the new GCAraq2013-01-311-0/+1386
07 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