<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in posix_memalign-alignment.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>96a4167b - [HWASan] Use page aliasing on x86_64.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#96a4167b</link>
        <description>[HWASan] Use page aliasing on x86_64.Userspace page aliasing allows us to use middle pointer bits for tagswithout untagging them before syscalls or accesses.  This should enableeasier experimentation with HWASan on x86_64 platforms.Currently stack, global, and secondary heap tagging are unsupported.Only primary heap allocations get tagged.Note that aliasing mode will not work properly in the presence offork(), since heap memory will be shared between the parent and childprocesses.  This mode is non-ideal; we expect Intel LAM to enable fullHWASan support on x86_64 in the future.Reviewed By: vitalybuka, eugenisDifferential Revision: https://reviews.llvm.org/D98875

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Thu, 25 Mar 2021 13:34:25 +0000</pubDate>
        <dc:creator>Matt Morehouse &lt;mascasa@google.com&gt;</dc:creator>
    </item>
<item>
        <title>c8ef98e5 - Revert &quot;[HWASan] Use page aliasing on x86_64.&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#c8ef98e5</link>
        <description>Revert &quot;[HWASan] Use page aliasing on x86_64.&quot;This reverts commit 63f73c3eb9716256ab8dbb868e16d08a88636cba due tobreakage on aarch64 without TBI.

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Wed, 24 Mar 2021 23:17:38 +0000</pubDate>
        <dc:creator>Matt Morehouse &lt;mascasa@google.com&gt;</dc:creator>
    </item>
<item>
        <title>63f73c3e - [HWASan] Use page aliasing on x86_64.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#63f73c3e</link>
        <description>[HWASan] Use page aliasing on x86_64.Userspace page aliasing allows us to use middle pointer bits for tagswithout untagging them before syscalls or accesses.  This should enableeasier experimentation with HWASan on x86_64 platforms.Currently stack, global, and secondary heap tagging are unsupported.Only primary heap allocations get tagged.Note that aliasing mode will not work properly in the presence offork(), since heap memory will be shared between the parent and childprocesses.  This mode is non-ideal; we expect Intel LAM to enable fullHWASan support on x86_64 in the future.Reviewed By: vitalybuka, eugenisDifferential Revision: https://reviews.llvm.org/D98875

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Wed, 24 Mar 2021 17:04:37 +0000</pubDate>
        <dc:creator>Matt Morehouse &lt;mascasa@google.com&gt;</dc:creator>
    </item>
<item>
        <title>efba6421 - Revert &quot;[tsan] Relax stack trace check&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#efba6421</link>
        <description>Revert &quot;[tsan] Relax stack trace check&quot;Edited hwasan by mistake.This reverts commit a3b942edc8074dce139bac0643b568f840d7a6a0.

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Wed, 29 Apr 2020 06:56:07 +0000</pubDate>
        <dc:creator>Vitaly Buka &lt;vitalybuka@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a3b942ed - [tsan] Relax stack trace check</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#a3b942ed</link>
        <description>[tsan] Relax stack trace checkWith GCC 8 stack is different.

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Tue, 28 Apr 2020 21:04:55 +0000</pubDate>
        <dc:creator>Vitaly Buka &lt;vitalybuka@google.com&gt;</dc:creator>
    </item>
<item>
        <title>e757cadb - hwasan: Untag global variable addresses in tests.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#e757cadb</link>
        <description>hwasan: Untag global variable addresses in tests.Once we start instrumenting globals, all addresses including those of string literalsthat we pass to the operating system will start being tagged. Since we can&apos;t relyon the operating system to be able to cope with these addresses, we need to untagthem before passing them to the operating system. This change introduces a macrothat does so and uses it everywhere it is needed.Differential Revision: https://reviews.llvm.org/D65768llvm-svn: 367938

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Mon, 05 Aug 2019 21:46:10 +0000</pubDate>
        <dc:creator>Peter Collingbourne &lt;peter@pcc.me.uk&gt;</dc:creator>
    </item>
<item>
        <title>2f7d11be - More follow-up to r367851</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#2f7d11be</link>
        <description>More follow-up to r367851llvm-svn: 367856

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Mon, 05 Aug 2019 13:27:37 +0000</pubDate>
        <dc:creator>Nico Weber &lt;nicolasweber@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>53770e78 - compiler-rt: Rename cc files in test/hwasan/TestCases subdirectories as well</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp#53770e78</link>
        <description>compiler-rt: Rename cc files in test/hwasan/TestCases subdirectories as wellShould&apos;ve been part of r367849.llvm-svn: 367851

            List of files:
            /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/Posix/posix_memalign-alignment.cpp</description>
        <pubDate>Mon, 05 Aug 2019 13:12:23 +0000</pubDate>
        <dc:creator>Nico Weber &lt;nicolasweber@gmx.de&gt;</dc:creator>
    </item>
</channel>
</rss>
