Changelog for llvm-hs-pure-6.0.0
6.0.0 (2018-03-06)
- Support for LLVM 6.0
- Add
StrictFP
andSanitizeHWAddress
function attributes. - Remove
UnsafeAlgebra
constructor fromFastMathFlags
. - Add
allowReassoc
,allowContract
andapproxFunc
fields toFastMathFlags
. - Remove
NoFastMathFlags
constructor since it is equivalent to setting all fields in theFastMathFlags
record toFalse
. Existing uses ofNoFastMathFlags
can be replaced by thenoFastMathFlags
value.
- Add
- Add
AggregateZero
for zero-initializing structs, arrays and vectors. PreviouslyNull
was used for null pointers as well as zero-inializing aggregates. The new behavior reflects LLVM’s internal representation and the C++-API. Existing uses ofNull
on non-pointer types must be changed toAggregateZero
. - Fix recursive function calls in the
IRBuilder
API.
5.1.2 (2018-01-06)
- Fixes and enhancements to the IRBuilder
sdiv
andudiv
no longer default to exact.- Fix type of global references.
- Add more instructions.
5.1.1 (2017-12-16)
- Add a completely new API for building modules in a monadic style similar to the IRBuilder provided by LLVM’s C++ API. The modules can be found in
LLVM.IRBuilder
. An example can be found in the readme and in the test suite. - Add an API for getting the type of LLVM values in
LLVM.AST.Typed
. This is primarily intended to be used in other libraries that build uponllvm-hs-pure
such asllvm-hs-pretty
.
5.1.0 (2017-10-12)
Enhancements
- Suport string attributes as parameter attributes
- Support more calling conventions
- Support
NoTail
TailCallKind
5.0.0 (2017-09-07)
-
Support for LLVM 5.0
We only give a summary of the changes affecting the public API of
llvm-hs-pure
here. Please refer to the official release notes for LLVM 5.0 for an overview of all changes in LLVM 5.0.- The
X86_64_Win64
calling convention is now calledWin64
. - There is a new
Speculatable
function attribute. - The
CrossThread
synchronization scope has been removed. There is now a newSystem
synchronization scope.
- The
4.1.0 (2017-05-17)
- Switch AST to
ByteString
/ShortByteString
reflecting LLVM’s use of C-style strings. preferredAlignment
is now aWord32
instead ofMaybe Word32
. To recover the old behavior set it to the same value as abiAlignment.GlobalAlias
now expects the element type of a pointer type instead of the pointer type itself. The address space is passed separately via theaddrSpace
field. This makesGlobalAlias
consistent withGlobalVariable
.- The
FloatingPointType
constructor now takes aFloatingPointType
argument instead of a width and aFloatingPointFormat
to more closely match the LLVM IR language reference. - The
IsString
instance ofName
now throws an error on non-ASCII strings instead of silently discarding the upper bytes. There is also a newmkName
function with the same behavior for easier discoverability. Non-ASCII names need to be encoded using an arbitrary encoding to to aShortByteString
which can then be used as aName
.
4.0.0 (initial release, changes in comparison to llvm-general)
- Move modules from
LLVM.General*
toLLVM.*
- Support for LLVM 4.0
- Improved support for LLVM’s exception handling instructions
-fshared-llvm
is now supported on windows (thanks to @RyanGLScott)- Default to
-fshared-llvm
- Expose
LLVM.Internal.*
modules.