LLVM Weekly - #243, August 27th 2018
Welcome to the two hundred and forty-third issue of LLVM Weekly, a weekly newsletter (published every Monday) covering developments in LLVM, Clang, and related projects. LLVM Weekly is brought to you by Alex Bradbury. Subscribe to future issues at https://llvmweekly.org and pass it on to anyone else you think may be interested. Please send any tips or feedback to asb@asbradbury.org, or @llvmweekly or @asbradbury on Twitter.
News and articles from around the web
LLVM 7.0.0-rc2 has been tagged.
The first Women in Compilers and Tools Workshop has been announced, and will take place on October 16th in San Jose, the day before the LLVM Developers' Meeting. Registration (max 100 attendees) opens today.
The deadline to submit papers/talks for the LLVM-HPC2018 workshop at SC18 has been extended to September 9th. Get your proposals in!
Bekket McClane's series on writing an LLVM pass continues in part 3, covering how to integrate a pass into the LLVM source tree.
The point-free libtool will convert pointful template metafunctions to point-free template metafunction classes. If that doesn't mean much to you, worry not because the project's README does an excellent job of unpacking and explaining these terms.
clangmetatool 0.8.0 has been released. This includes functionality to determine whether the value of an argument to a function can be determined at compile time.
On the mailing lists
-
JF Bastien has started an RFC discussion on a new C++17 Parallel STL project. Apple, Red Hat, and Intel hope to begin implementation work of the C++17 Parallel STL under the umbrella of the LLVM Foundation. The Foundation's board approves of this plan, and this thread aims to get wider community feedback as well as attracting contributors.
-
Leonard Chan kicks off a long discussion on fixed point support in LLVM. John McCall makes the case for adding new IR types to represent fixed point values, arguing this may lead to less overall complexity than representing them as integers and adding new intrinsics.
-
Cameron McInally has started a discussion on adding an IR instruction for fneg, explaining that by the IEEE-754 standard neg(x) and sub(-0.0,x) are different operations. The former is a bitwise operation and the latter is an arithmetic operation.
-
Johannes Doerfert proposes a major re-organisation of the function attribute deduction pass.
-
Jonas Toth has been looking at clang-refactor and is looking for feedback on the best way of contributing. Kirill Bobyrev clarifies when it makes sense to implement a transformation in clang-tidy vs clang-refactor.
-
Aleksandar Beserminji is interested in organising an LLVM social in Belgrade or Novi Sad. Get in touch with Aleksandar if you are interested.
-
Kit Barton proposes removing Darwin support from the POWER backend. There seems to be consensus that it's worth doing this.
LLVM commits
-
The MS demangler has been rewritten and refactored. r340710.
-
Work has started to remove TerminatorInst from the IR's instruction type hierarchy. r340698, r34069, r340701.
-
YAML serialization using LLVM's support library was sped up by ~2.5x. r340154.
-
The 'Itanium' demangler has been refactored into a generic reusable library. r340203.
-
Initial support was added for the Tiny Code Model for AArch64. In this code model, code and its statically defined symbols must be within 1MB of each other. r340397.
-
The Mips GlobalISel implementation can how lower i8 and i16 arguments. r340572.
Clang commits
-
The new
-fno-c++-static-destructors
flag and[[clang::no_destroy]]
,[[clang::always_destroy]]
attributes can control static destructor registration. r340306. -
clangd gained a prototype of a new 'Dex' symbol index. r340175.