Go to file
Adrian Prantl 6c5f03a1b2 Debug Info: Support DW_AT_calling_convention on composite types.
This implements the DWARF 5 feature described at
http://www.dwarfstd.org/ShowIssue.php?issue=141215.1

This allows a consumer to understand whether a composite data type is
trivially copyable and thus should be passed by value instead of by
reference. The canonical example is being able to distinguish the
following two types:

  // S is not trivially copyable because of the explicit destructor.
  struct S {
     ~S() {}
  };

  // T is a POD type.
  struct T {
    ~T() = default;
  };

<rdar://problem/36034993>
Differential Revision: https://reviews.llvm.org/D41039

llvm-svn: 321845
2018-01-05 01:13:52 +00:00
clang Debug Info: Support DW_AT_calling_convention on composite types. 2018-01-05 01:13:52 +00:00
clang-tools-extra [clang-tidy] Update fuchsia-overloaded-operator to check for valid loc 2018-01-03 22:10:11 +00:00
compiler-rt [asan] Fix build with Android NDK < 14. 2018-01-04 19:47:55 +00:00
debuginfo-tests [debuginfo-tests] Support moving debuginfo-tests to llvm/projects 2017-12-12 16:54:20 +00:00
libclc configure.py: Add gfx900 (Vega, Raven) 2017-11-27 11:14:06 +00:00
libcxx Update version to 7.0.0svn: cmake, include files and docs 2018-01-03 15:40:29 +00:00
libcxxabi Update version to 7.0.0svn 2018-01-03 15:42:34 +00:00
libunwind Update PACKAGE_VERSION to 7.0.0svn 2018-01-03 16:59:48 +00:00
lld [COFF] Add a testcase for dllexported symbols via embedded directives 2018-01-04 08:06:34 +00:00
lldb [IRExecutionUnit] Remove broken/dead code. 2018-01-04 23:37:18 +00:00
llgo irgen: Create functions instead of global variables for builtin hash and equal algorithms. 2017-06-04 22:11:28 +00:00
llvm Debug Info: Support DW_AT_calling_convention on composite types. 2018-01-05 01:13:37 +00:00
openmp Fix some comments and formatting in kmp_dispatch.cpp 2018-01-04 23:05:26 +00:00
parallel-libs [Axccel] Remove -Wno-missing-braces in build 2016-12-19 21:34:07 +00:00
polly Docs, release notes: update version to 7.0.0 2018-01-03 15:54:54 +00:00
README.md Add an svn project to contain the files that appear at the root of the 2017-10-19 21:09:49 +00:00

README.md

Low Level Virtual Machine (LLVM)

This directory and its subdirectories contain source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and runtime environments.