aboutsummaryrefslogtreecommitdiff
path: root/src/codegen
AgeCommit message (Expand)Author
2023-06-10stage2: move undef, unreach, null values to InternPoolAndrew Kelley
2023-06-10stage2: move many Type encodings to InternPoolAndrew Kelley
2023-06-10stage2: move all integer types to InternPoolAndrew Kelley
2023-06-10Type.isSlice: make it InternPool awareAndrew Kelley
2023-06-10stage2: move most simple values to InternPoolAndrew Kelley
2023-06-10stage2: move most simple types to InternPoolAndrew Kelley
2023-06-10stage2: move named int types to InternPoolAndrew Kelley
2023-06-10stage2: move float types to InternPoolAndrew Kelley
2023-06-10InternPool: implement isSinglePointerAndrew Kelley
2023-06-10stage2: add `interned` AIR tagAndrew Kelley
2023-06-10stage2: start the InternPool transitionAndrew Kelley
2023-06-06llvm: stop generating FPU code if there is no FPUDavid Gonzalez Martin
2023-05-30spirv: eliminate remaining uses of emitConstantRobin Voetter
2023-05-30spirv: rename TypeConstantCache -> CacheRobin Voetter
2023-05-30spirv: translate remaining typesRobin Voetter
2023-05-30spirv: translate remaining typesRobin Voetter
2023-05-30spirv: cache strings for debug namesRobin Voetter
2023-05-30spirv: translate structs to cache keyRobin Voetter
2023-05-30spirv: translate vectors to cache keyRobin Voetter
2023-05-30spirv: cache pointersRobin Voetter
2023-05-30spirv: cache function prototypesRobin Voetter
2023-05-30spirv: cache for intsRobin Voetter
2023-05-30spirv: cache for floatsRobin Voetter
2023-05-30spirv: basic setup for using new type constant cacheRobin Voetter
2023-05-30spirv: TypeConstantCacheRobin Voetter
2023-05-26std.Target adjustmentsVeikka Tuominen
2023-05-25llvm: fix vector type in vector_store_elemVeikka Tuominen
2023-05-23std.sort: add pdqsort and heapsortAli Chraghi
2023-05-23Merge pull request #15235 from Vexu/safetyVeikka Tuominen
2023-05-22llvm: also generate metadata for extern global variablesTw
2023-05-20Merge pull request #15753 from Snektron/spirv-more-testsAndrew Kelley
2023-05-20spirv: make constant handle float, errorset, errorunionRobin Voetter
2023-05-20spirv: don't generate union tag type if it doesnt existRobin Voetter
2023-05-20spirv: ptr_elem_valRobin Voetter
2023-05-20spirv: ptr_subRobin Voetter
2023-05-20spirv: pointer bitcastingRobin Voetter
2023-05-20spirv: lower integer pointer constantsRobin Voetter
2023-05-20spirv: ptr_addRobin Voetter
2023-05-20spirv: use extractField moreRobin Voetter
2023-05-20spirv: fix some (Ptr)AccessChain usesRobin Voetter
2023-05-20spirv: dont use OpIAddCarryRobin Voetter
2023-05-20spirv: use intInfo instead of arithmeticTypeInfo in airIntCastRobin Voetter
2023-05-20spirv: implement pointer comparison in for air cmpRobin Voetter
2023-05-20spirv: lower get_union_tagAli Chraghi
2023-05-16add runtime safety for noreturn function returningVeikka Tuominen
2023-05-15spirv: lower ptrtoint & ignore dbg_inline instructionsAli Chraghi
2023-05-15spirv: implement arithmeticTypeInfo for Enum (`@intToEnum`)Ali Chraghi
2023-05-15spirv: lower float_to_int and int_to_floatAli Chraghi
2023-05-12Merge pull request #15240 from Snektron/spirv-basicAndrew Kelley
2023-05-12Optimize access of array member in a structure.shwqf