aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
AgeCommit message (Expand)Author
2020-02-18improvements which allow zig to emit multiple things at onceAndrew Kelley
2020-02-18Improve support for generating LLVM IR/asm filesNoam Preil
2020-02-17target_os_requires_libc implies dynamic linkingAndrew Kelley
2020-02-17fix glibc not forcing dynamic linkAndrew Kelley
2020-02-17target requiring PIC does not imply dynamic linkingAndrew Kelley
2020-02-17support the concept of a target not having a dynamic linkerAndrew Kelley
2020-02-17self-host dynamic linker detectionAndrew Kelley
2020-02-16rename libuserland to libstage2Andrew Kelley
2020-02-16self-hosted libc detectionAndrew Kelley
2020-02-16Implement noasync awaitsAndrew Kelley
2020-02-16fix taking address of temporary async frameAndrew Kelley
2020-02-10stage1: memory/report overhaulMichael Dusan
2020-02-10Merge pull request #4404 from ziglang/async-stdAndrew Kelley
2020-02-09fix defer interfering with return value spillAndrew Kelley
2020-02-08fix async runtime function call resolves target fn frameAndrew Kelley
2020-02-07Add wWinMain and wWinMainCRTStartup to fix #4376Jared Miller
2020-02-07fix async function call resolves target fn frameAndrew Kelley
2020-02-07more carefully calculate llvm field indexesAndrew Kelley
2020-02-06more std lib async I/O integrationAndrew Kelley
2020-02-05ability to run tests in evented I/O modeAndrew Kelley
2020-01-29Add support for code model selectionValentin Anger
2020-01-28fix regression of storing optional with 0-bit payloadAndrew Kelley
2020-01-27fix assertion with var debug loc not initializedAndrew Kelley
2020-01-27fix nested bitcast passed as tuple elementAndrew Kelley
2020-01-27Merge branch 'master' into ir-clean-up-varsAndrew Kelley
2020-01-25Merge remote-tracking branch 'origin/master' into layneson-cpus_and_featuresAndrew Kelley
2020-01-25Merge pull request #4290 from ziglang/split-ir-structsAndrew Kelley
2020-01-25split IrInstruction into IrInst, IrInstSrc, IrInstGenAndrew Kelley
2020-01-24Merge pull request #4279 from mikdusan/create-global-cacheMichael Dusan
2020-01-23Don't include stdbool.h for void and unreachableTadeo Kondrak
2020-01-23stage1: make sure to create native_libc.txt dirMichael Dusan
2020-01-22aarch64: less feature-full baseline CPUAndrew Kelley
2020-01-22fix not respecting sub-arch featureAndrew Kelley
2020-01-22std.Target.CpuFeatures is now a struct with both CPU and feature setAndrew Kelley
2020-01-21enable native CPU feature for windows; disable failing testsAndrew Kelley
2020-01-21put hack back in to disable windows native cpu featuresAndrew Kelley
2020-01-21hit a comptime limitation with computing dense setsAndrew Kelley
2020-01-21properly forward baseline target cpu features to llvmAndrew Kelley
2020-01-19progress towards mergingAndrew Kelley
2020-01-19Pass target_details to child CodeGensLayne Gustafson
2020-01-19Pass target details to c compilerLayne Gustafson
2020-01-19Add defaut feature supportLayne Gustafson
2020-01-19Add builtin.zig supportLayne Gustafson
2020-01-19Add TargetDetails abstractionLayne Gustafson
2020-01-19Add cpu/feature to cache hashLayne Gustafson
2020-01-19Add cpu/feature specification to cmndlineLayne Gustafson
2020-01-17Merge pull request #4191 from Vexu/non-exhaustive-enumsAndrew Kelley
2020-01-16fix regressions double implicit casting return ptrAndrew Kelley
2020-01-16zig ir.cpp details: remove the mem_slot mechanismAndrew Kelley
2020-01-16implement `@bitSizeOf`Vexu