summary refs log tree commit diff stats
path: root/compiler/ccgthreadvars.nim
Commit message (Collapse)AuthorAgeFilesLines
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-1/+1
|
* case consistency part 1Araq2013-12-271-2/+2
|
* Revert "Revert "bugfix: emulated thread vars used in combination with the ↵Zahary Karadjov2013-08-191-2/+2
| | | | | | mark & sweep GC"" This reverts commit 75c586bbe1cc649b36fc00362ab40ebb1d163d9f.
* Revert "bugfix: emulated thread vars used in combination with the mark & ↵Araq2013-05-271-2/+2
| | | | | | sweep GC" This reverts commit 420789c2782be7b969ad02448841d90bd0d17a1f.
* bugfix: emulated thread vars used in combination with the mark & sweep GCZahary Karadjov2013-05-261-2/+2
| | | | resulted in invalid code generation
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* more uint related fixesZahary Karadjov2012-06-141-3/+4
|
* proper indentation in the generated C codeZahary Karadjov2012-06-121-3/+2
|
* fix threading testsZahary Karadjov2012-04-151-2/+3
|
* C variables are created in their enclosing block instead of their enclosing ↵Zahary Karadjov2012-04-121-1/+3
| | | | function
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* new compiler option tlsEmulationAraq2011-10-271-3/+1
|
* compilation cache: methods have a chance to workAraq2011-10-231-4/+12
|
* preparations for 0.8.12Araq2011-07-101-0/+0
|
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-11/+10
|
* compiler can emulate thread local variablesAraq2011-06-151-0/+54
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