- Nov 02, 2021
-
-
David Blaikie authored
There's a nuanced check about when to use suffixes on these integer non-type-template-parameters, but when rebuilding names for -gsimple-template-names there isn't enough data in the DWARF to determine when to use suffixes or not. So turn on suffixes always to make it easy to match up names in llvm-dwarfdump --verify. I /think/ if we correctly modelled auto non-type-template parameters maybe we could put suffixes only on those. But there's also some logic in Clang that puts the suffixes on overloaded functions - at least that's what the parameter says (see D77598 and printTemplateArguments "TemplOverloaded" parameter) - but I think maybe it's for anything that /can/ be overloaded, not necessarily only the things that are overloaded (the argument value is hardcoded at the various callsites, doesn't seem to depend on overload resolution/searching for overloaded functions). So maybe with "auto" modeled more accurately, and differentiating between function templates (always using type suffixes there) and class/variable templates (only using the suffix for "auto" types) we could correctly use integer type suffixes only in the minimal set of cases. But that seems all too much fuss, so let's just put integer type suffixes everywhere always in the debug info of integer non-type template parameters in template names. (more context: * https://reviews.llvm.org/D77598#inline-1057607 * https://groups.google.com/g/llvm-dev/c/ekLMllbLIZg/m/-dhJ0hO1AAAJ ) Differential Revision: https://reviews.llvm.org/D111477
-
Vitaly Buka authored
-
- Nov 01, 2021
-
-
Lang Hames authored
Handlers for jit-dispatch calls are allowed to make their own EPC calls, so we don't want to run these on the handler thread.
-
Wouter van Oortmerssen authored
To support return (it not being supported well was the ground cause for https://github.com/WebAssembly/wasi-sdk/issues/200) we also have to have at least a basic notion of unreachable, which in this case just means to stop type checking until there is an end_block (an incoming control flow edge). This is conservative (may miss on some type checking opportunities) but is simple and an improvement over what we had before. Differential Revision: https://reviews.llvm.org/D112953
-
Stanislav Mekhanoshin authored
-
thomasraoux authored
-
Yonghong Song authored
Commit acabad9f ("[InstCombine] try to canonicalize icmp with trunc op into mask and cmp") added a transformation to convert "(conv)a < power_2_const" to "a & <const>" in certain cases and bpf kernel verifier has to handle the resulted code conservatively and this may reject otherwise legitimate program. This commit tries to prevent such a transformation. A bpf backend builtin llvm.bpf.compare is added. The ICMP insn, which is subject to above InstCombine transformation, is converted to the builtin function. The builtin function is later lowered to original ICMP insn, certainly after InstCombine pass. With this change, all affected bpf strobemeta* selftests are passed now. Differential Revision: https://reviews.llvm.org/D112938
-
Craig Topper authored
When D105690 changed the mnemonic from vf(w)redsum to vf(w)redusum, several tests were deleted instead of being renamed. This commit also consistently renames the other tests that weren't deleted.
-
Shoaib Meenai authored
LLD_IN_TEST determines how many times each port's `main` function is run in each LLD process, and setting LLD_IN_TEST=2 (or higher) is useful for checking if we're cleaning up and resetting global state correctly. Add a test suite parameter to enable this easily. There's work in progress to remove global state (e.g. D108850), but this seems useful in the interim. Reviewed By: rnk Differential Revision: https://reviews.llvm.org/D112898
-
Stanislav Mekhanoshin authored
-
Arthur Eubanks authored
blockaddresses do not participate in the call graph since the only instructions that use them must all return to someplace within the current function. And passes cannot retrieve a function address from a blockaddress. This was suggested by efriedma in D58260. Fixes PR50881. Reviewed By: nickdesaulniers Differential Revision: https://reviews.llvm.org/D112178
-
Sylvain Audi authored
The #pragma directives push_macro/pop_macro and include_alias may influence the #include / import directives encountered by dependency scanning tools like clang-scan-deps. This patch ensures that those directives are not removed during source code minimization. Differential Revision: https://reviews.llvm.org/D112088
-
Peter Hawkins authored
This BUILD file: * generates machine-generated Python files using tblgen, and * exports both generated and handwritten Python files via filegroup() rules. This allows downstream users to use Bazel to build Python wheels that incorporate the MLIR Python bindings. Reviewed By: GMNGeoffrey Differential Revision: https://reviews.llvm.org/D112844
-
Michael Jones authored
add an implementation of strndup Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D112846
-
Michael Benfield authored
This reverts commit 5a8c1736. The warning needs to correctly handle * specifiers (which are to be ignored).
-
thomasraoux authored
In order to support fusion with mma matrix type we need to be able to execute elementwise operations on them. This add an op to be able to support some basic elementwise operations. This is a is not a full solution as it only supports a limited scope or operations. Ideally we would want to be able to fuse with more kind of operations. Differential Revision: https://reviews.llvm.org/D112857
-
Aaron Ballman authored
-
Louis Dionne authored
Those tests would pass when run on a C Standard Library that actually provides wide characters, but fail when run on top of one that doesn't. It's really difficult to test this 100% perfectly in the CI without introducing an actual platform that doesn't provide these declarations. Differential Revision: https://reviews.llvm.org/D112937
-
MaheshRavishankar authored
Differential Revision: https://reviews.llvm.org/D112781
-
Nikita Popov authored
It it now sufficient to track only direct addrec users of a loop, and let the SCEVUsers mechanism track and invalidate transitive users. Differential Revision: https://reviews.llvm.org/D112875
-
Raphael Isemann authored
'Point' is actually a system type defined on macOS.
-
Cameron McInally authored
For NEON, FMA matching is done in the MachineCombiner, and not the DAGCombiner. That causes problems with VLS lowering, since the vectors are fixed width at the DAGCombiner, but are scalable in the MachineCombiner. This patch corrects it by matching FMAs for VLS vectors in the DAGCombiner. Reviewed By: paulwalker-arm Differential Revision: https://reviews.llvm.org/D112557
-
thomasraoux authored
wmma intrinsics have a large number of combinations, ideally we want to be able to target all the different variants. To avoid a combinatorial explosion in the number of mlir op we use attributes to represent the different variation of load/store/mma ops. We also can generate with tablegen helpers to know which combinations are available. Using this we can avoid having too hardcode a path for specific shapes and can support more types. This patch also adds boiler plates for tf32 op support. Differential Revision: https://reviews.llvm.org/D112689
-
Quinn Pham authored
[NFC] This patch fixes a URL within a git repo whose master branch was renamed to main.
-
Michael Benfield authored
Differential Revision: https://reviews.llvm.org/D111833
-
wlei authored
Allow filling zero count for all the function ranges even there is no samples hitting that function. Add a switch for this. Reviewed By: hoy, wenlei Differential Revision: https://reviews.llvm.org/D112858
-
Valentin Clement authored
Address some of the comments on D112845 after it was committed. Reviewed By: mehdi_amini Differential Revision: https://reviews.llvm.org/D112918
-
Arthur Eubanks authored
-
Jonas Devlieghere authored
Now that passing libcxx via LLVM_ENABLE_PROJECTS has been deprecated, update the error message and recommend using LLVM_ENABLE_RUNTIMES instead. This patch also remove the error message for the old layout. Differential revision: https://reviews.llvm.org/D112856
-
Jay Foad authored
-
Ted Woodward authored
SetSourceMapFromArguments is called after the core is loaded. This means that the source file for the crashing code won't have the source map applied. Move the call to SetSourceMapFromArguments in request_attach to just after the call to RunInitCommands, matching request_launch behavior. Reviewed By: clayborg, wallace Differential Revision: https://reviews.llvm.org/D112834
-
Sanjay Patel authored
Similar to 54e969cf (and with cosmetic updates to hopefully make that easier to read), this fold has been around since early in LLVM history. Intermediate folds have been added subsequently, so extra uses are required to exercise this code. The test example actually shows an unintended consequence with extra uses - we end up with an extra instruction compared to what we started with. But this at least makes scalar/vector consistent. General proof: https://alive2.llvm.org/ce/z/tmuBza
-
Sanjay Patel authored
-
Jinsong Ji authored
For D106555.
-
Kazu Hirata authored
Note that the identically named class is defined in an anonymous namespace in X86ELFObjectWriter.cpp.
-
Jay Foad authored
-
Weiwei Li authored
Add the shufflevector conversion. It only handles the static, i.e., IntegerAttr, index. Co-authored: Xinyi Liu <xyliuhelen@gmail.com> Reviewed by: antiagainst Differential revision: https://reviews.llvm.org/D112161
-
Raphael Isemann authored
This is currently only tested indirectly in the huge stdlibc++ formatter tests.
-
Jay Foad authored
-
Louis Dionne authored
I was going to make a change in that area of the code and I noticed that we basically duplicated the same code 5 times to handle integral types and floating point types. This commit simply pulls the duplication into a function. Differential Revision: https://reviews.llvm.org/D112830
-