- Nov 04, 2021
-
-
Johannes Doerfert authored
Reviewed By: carlo.bertolli Differential Revision: https://reviews.llvm.org/D113111
-
Johannes Doerfert authored
Reviewed By: ye-luo Differential Revision: https://reviews.llvm.org/D113110
-
Johannes Doerfert authored
Minimize the `impl` interface and clean up some uses of mapping functions. Reviewed By: jhuber6 Differential Revision: https://reviews.llvm.org/D112154
-
Philip Reames authored
This extends the logic in canonicalizeExitConditions to use loop guards to specialize the SCEV of the loop invariant term before quering it's range.
-
Arthur Eubanks authored
We almost always want to use the default AA pipeline. It's very easy for users of PassBuilder to forget to customize the AAManager to use the default AA pipeline (for example, the NewPM C API forgets to do this). If somebody wants a custom AA pipeline, similar to what is being done now with the default AA pipeline registration, they can FAM.registerPass([&] { return std::move(MyAA); }); before calling PB.registerFunctionAnalyses(FAM); For example, LTOBackend.cpp and NewPMDriver.cpp do this. Reviewed By: asbirlea Differential Revision: https://reviews.llvm.org/D113210
-
Ben Langmuir authored
If a tool wants to introduce new indirections via stubs at link-time in ORC, it can cause fidelity issues around the address of the function if some references to the function do not have relocations. This is known to happen inside the body of the function itself on x86_64 for example, where a PC-relative address is formed, but without a relocation. ``` _foo: leaq -7(%rip), %rax ## form pointer to '_foo' without relocation _bar: leaq (%rip), %rax ## uses X86_64_RELOC_SIGNED to '_foo' ``` The consequence of introducing a stub for such a function at link time is that if it forms a pointer to itself without relocation, it will not have the same value as a pointer from outside the function. If the function pointer is used as a key, this can cause problems. This utility provides best-effort support for adding such missing relocations using MCDisassembler and MCInstrAnalysis to identify the problematic instructions. Currently it is only implemented for x86_64. Note: the related issue with call/jump instructions is not handled here, only forming function pointers. rdar://83514317 Differential revision: https://reviews.llvm.org/D113038
-
Daniel McIntosh authored
Same logic, but much easier to read this way Reviewed By: ldionne, #libc, Mordante Differential Revision: https://reviews.llvm.org/D112958
-
David Blaikie authored
Specifically in DWARFv5 the unit for the line table entry was correct but the context was incorrect - leading to looking up .debug_line_str in the dwp instead of the executable. (perhaps we could/should remove the context pointer entirely, and rely on the one in the unit... I might try that as a separate follow-up commit)
-
Philip Reames authored
This relaxes the one-use requirement on the rotation transform specifically for the case where we know we're zexting an IV of the loop. This allows us to discover trip count information in SCEV, which seems worth a single extra loop invariant truncate. Honestly, I'd prefer if SCEV could just compute the trip count directly (e.g. D109457), but this unblocks practical benefit.
-
Mogball authored
- String binary search does 1 less string comparison - Identifier linear scan on large attribute list is switched to string binary search Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D112970
-
Mike Rice authored
Differential Revision: https://reviews.llvm.org/D113154
-
Stanislav Mekhanoshin authored
Tests for: (~(a | b) & c) | ~(a | (b | c)) -> ~(a | b) (~(a | b) & c) | ~(b | (a | c)) -> ~(a | b)
-
Yonghong Song authored
This patch added clang codegen and llvm support for btf_type_tag support. Currently, btf_type_tag attribute info is preserved in DebugInfo IR only for pointer types associated with typedef, global variable and function declaration. Eventually, such information is emitted to dwarf. The following is an example: $ cat test.c #define __tag __attribute__((btf_type_tag("tag"))) int __tag *g; $ clang -O2 -g -c test.c $ llvm-dwarfdump --debug-info test.o ... 0x0000001e: DW_TAG_variable DW_AT_name ("g") DW_AT_type (0x00000033 "int *") DW_AT_external (true) DW_AT_decl_file ("/home/yhs/test.c") DW_AT_decl_line (2) DW_AT_location (DW_OP_addr 0x0) 0x00000033: DW_TAG_pointer_type DW_AT_type (0x00000042 "int") 0x00000038: DW_TAG_LLVM_annotation DW_AT_name ("btf_type_tag") DW_AT_const_value ("tag") 0x00000041: NULL 0x00000042: DW_TAG_base_type DW_AT_name ("int") DW_AT_encoding (DW_ATE_signed) DW_AT_byte_size (0x04) 0x00000049: NULL Basically, a DW_TAG_LLVM_annotation tag will be inserted under DW_TAG_pointer_type tag if that pointer has a btf_type_tag associated with it. Differential Revision: https://reviews.llvm.org/D111199
-
Philip Reames authored
As discussed in the original reviews, but done in a follow on.
-
Yonghong Song authored
This patch introduced btf_type_tag attribute. The attribute is a type attribute and intends to address the below linux use cases. typedef int __user *__intp; int foo(int __user *arg, ...) static int do_execve(struct filename *filename, const char __user *const __user *__argv, const char __user *const __user *__envp) Here __user in the kernel defined as __attribute__((noderef, address_space(__user))) for sparse ([1]) type checking mode. For normal clang compilation, we intend to replace it with __attribute__((btf_type_tag("user"))) and record such informaiton in dwarf and BTF so such information later can be used in kernel for bpf verification or for other tracing functionalities. [1] https://www.kernel.org/doc/html/v4.11/dev-tools/sparse.html Differential Revision: https://reviews.llvm.org/D111199
-
Thomas Symalla authored
[AMDGPU] Changes the AMDGPU_Gfx calling convention by making the SGPRs 4..29 callee-save. This is to avoid superfluous s_movs when executing amdgpu_gfx function calls as the callee is likely not going to change the argument values. This patch changes the AMDGPU_Gfx calling convention. It defines the SGPR registers s[4:29] as callee-save and leaves some SGPRs usable for callers. The intention is to avoid unneccessary s_mov instructions for arguments the caller would otherwise save and restore in these registers. Reviewed By: sebastian-ne Differential Revision: https://reviews.llvm.org/D111637
-
Noah Shutty authored
This diff makes several amendments to the local file caching mechanism which was migrated from ThinLTO to Support in rGe678c51177102845c93529d457b020f969125373 in response to follow-up discussion on that commit. Patch By: noajshu Differential Revision: https://reviews.llvm.org/D113080
-
Kiran Chandramohan authored
The IsPointer check currently fails for host-associated symbols in OpenMP regions. This causes some failures in semantic checks for pointer association in an OpenMP region. Fix is to use the ultimate symbol in the call to the IsPointer function in CheckPointerAssignment function in lib/Semantics/pointer-assignment.cpp. Reviewed By: klausler, peixin Differential Revision: https://reviews.llvm.org/D112876
-
Simon Pilgrim authored
-
Mogball authored
OpAdaptor::verify performs string lookups on an attribute dictionary. By calling OpAdaptor::verify, Op::verify is not able to use cached attribute identifiers for faster lookups. Reviewed By: jpienaar, rriddle Differential Revision: https://reviews.llvm.org/D113039
-
Mogball authored
Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D112957
-
David Green authored
Currently when tail predicating loops, vpt blocks need to be created with the vctp predicate in case we need to revert to non-tail predicated form. This has the unfortunate side effect of severely hampering post-ra scheduling at times as the instructions are already stuck in vpt blocks, not allowed to be independently ordered. This patch addresses that by just moving the creation of VPT blocks later in the pipeline, after post-ra scheduling has been performed. This allows more optimal scheduling post-ra before the vpt blocks are created, leading to more optimal tail predicated loops. Differential Revision: https://reviews.llvm.org/D113094
-
Michael Jones authored
Adds an implementation for stpcpy and stpncpy, which are posix extension functions. Reviewed By: sivachandra, lntue Differential Revision: https://reviews.llvm.org/D111913
-
Wouter van Oortmerssen authored
This is a reworked version of the reverted patch: https://reviews.llvm.org/D112487 Note that a) it doesn't need the test changes anymore, and b) I checked at least locally it passes other.test_pthread_lsan_leak Differential Revision: https://reviews.llvm.org/D113208
-
Mark de Wever authored
When wide characters are supported libc++ manually translates a `narrow non-breaking space` and a `non-breaking space` to a space. This behaviour wasn't available when wide characters were disabled. This enables an emulation for that configuration. Updating the libc++ Docker image to Ubuntu Focal caused some breakage. This was temporary disabled in D112737. This re-enables four of these tests. Reviewed By: ldionne, #libc Differential Revision: https://reviews.llvm.org/D113133
-
Arthur O'Dwyer authored
These can't be made constexpr-constructible (constinit'able), so they aren't C++20-conforming. Also, the platform versions are going to be bigger than the atomic/futex version, so we'd have the awkward situation that `semaphore<42>` could be bigger than `semaphore<43>`, and that's just silly. Differential Revision: https://reviews.llvm.org/D110110
-
Chia-hung Duan authored
Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D111203
-
Josh Mottley authored
The flang plugin ``flang-omp-report`` takes one fortran file in and returns a YAML report file of the input file. This becomes an issue when you want to analyse an entire project into one final report. The purpose of this Python script is to generate a final YAML report from all of the files generated by ``flang-omp-report``. The report can have (currently) 2 formats; summary and log. Summary focuses on "summarizing" all constructs and there clauses from all YAML files with a corresponding "count" for each. Log instead combines the generated YAML files into one report in a "cleaner" format. (Pseudo) Examples can be found for both formats at the top of the script. Differential Revision: https://reviews.llvm.org/D111042 Co-Authored by: Ivan Zhechev <ivan.zhechev@arm.com>
-
Craig Topper authored
This is similar to D112762, but the VL for the mask instruction comes from a Phi node selecting between two vsetvlis.
-
Rahman Lavaee authored
The only binary-format-related field in the BBAddrMap structure is the function address (`Addr`), which will use uint64_t in 64B format and uint32_t in 32B format. This patch changes it to use uint64_t in both formats. This allows non-templated use of the struct, at the expense of a marginal additional size overhead for the 32-bit format. The size of the BB address map section does not change. Differential Revision: https://reviews.llvm.org/D112679
-
Zakk Chen authored
Rename vpopc/vmandnot/vmornot to vcpop/vmandn/vmorn assembler mnemonic. Reviewed By: frasercrmck, jrtc27, craig.topper Differential Revision: https://reviews.llvm.org/D111062
-
Aart Bik authored
Reviewed By: bixia Differential Revision: https://reviews.llvm.org/D113152
-
Jonas Devlieghere authored
rdar://85020754
-
Philip Reames authored
We generally prefer build bots which build each change as they come in as long as they can keep up. This generates much higher quality feedback to a developer. However, the code structure is such that we currently default new builders to batching. This change updates the getting started instruction for a builder to explicitly advocate for not collapsing requests. Differential Revision: https://reviews.llvm.org/D112776
-
Tobias Gysi authored
Extend fusion on tensors to fuse producers greedily. Reviewed By: nicolasvasilache, hanchung Differential Revision: https://reviews.llvm.org/D110262
-
Geoffrey Martin-Noble authored
A default calculated size for SmallVector was added in https://reviews.llvm.org/D92522 after discussion in https://groups.google.com/g/llvm-dev/c/Z-VwNCTRGSg, but to_vector still requires an explicit size. This patch adds the default size to to_vector as well, so that this case doesn't unnecessarily force users to pick an arbitrary size. Reviewed By: silvas, dblaikie Differential Revision: https://reviews.llvm.org/D112968
-
Alex Bradbury authored
These relocations have been removed from the psABI doc in https://github.com/riscv-non-isa/riscv-elf-psabi-doc/pull/199. This patch simply updates llvm/include/llvm/BinaryFormat/ELFRelocs/RISCV.def to match. Differential Revision: https://reviews.llvm.org/D112999
-
Kazu Hirata authored
-
Daniel Kiss authored
On Armv6-M the branch may not able to reach the _Unwind_Resume function because it's relocation(R_ARM_THM_JUMP11) is in -2048, 2047 range only. Reviewed By: chill, stuij, lenary Differential Revision: https://reviews.llvm.org/D113181
-
Clement Courbet authored
In preparation for D112453. Fix numbering of tests for [over.built]: 15->16, 16->17.
-