[PATCH] D89972: Add pipeline model for HiSilicon's TSV110

2020-10-23 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina added a comment. Failure on test "linux > HWAddressSanitizer-x86_64.TestCases::sizes.cpp" looks bogus. I found the same cases https://reviews.llvm.org/D89895 and https://reviews.llvm.org/D89964. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION

[PATCH] D81825: [Clang] Add support for -Wno-inline-namespace-reopened-noninline

2020-06-17 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina added a comment. Thanks for looking at this. I don't have commit rights, could you please commit the change on my behalf? CHANGES SINCE LAST ACTION https://reviews.llvm.org/D81825/new/ https://reviews.llvm.org/D81825 ___ cfe-commits

[PATCH] D81825: [Clang] Add support for -Wno-inline-namespace-reopened-noninline

2020-06-15 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina created this revision. Elvina added reviewers: rsmith, doug.gregor, CornedBee. Elvina added a project: clang. Herald added subscribers: cfe-commits, dexonsmith. Elvina removed rG LLVM Github Monorepo as the repository for this revision. Elvina retitled this revision from "Add support for

[PATCH] D81825: [Clang] Add support for -Wno-inline-namespace-reopened-noninline

2020-06-15 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina updated this revision to Diff 270739. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D81825/new/ https://reviews.llvm.org/D81825 Files: clang/include/clang/Basic/DiagnosticGroups.td clang/include/clang/Basic/DiagnosticSemaKinds.td clang/test/Misc/warning-flags.c

[PATCH] D83912: [llvm-readobj] Update tests because of changes at llvm-readobj behavior

2020-07-23 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina added a comment. In D83912#2161524 , @jhenderson wrote: > Hi @Elvina, > > Just to let you know that I had to fix up three clang tests that were using > the old behaviour too, prior to committing. I also noticed that you've got > the stack the

[PATCH] D91237: [OpenCL] Make Clang recognize -cl-std=1.0 as a value argument

2020-11-10 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina created this revision. Elvina added reviewers: Anastasia, yaxunl, rsmith. Herald added subscribers: cfe-commits, dang. Herald added a project: clang. Elvina requested review of this revision. This patch makes Clang recognize -cl-std=1.0 as a value argument, before only -std=cl1.0 has to

[PATCH] D91237: [OpenCL] Make Clang recognize -cl-std=1.0 as a value argument

2020-11-11 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina added a comment. Failure on test "linux > HWAddressSanitizer-x86_64.TestCases::sizes.cpp" looks bogus. I had the same issue with another PR https://reviews.llvm.org/D89972 and other people also faced it https://reviews.llvm.org/D89895 Repository: rG LLVM Github Monorepo CHANGES

[PATCH] D91237: [OpenCL] Make Clang recognize -cl-std=1.0 as a value argument

2020-11-11 Thread Elvina Yakubova via Phabricator via cfe-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG624bced7eec0: [OpenCL] Make Clang recognize -cl-std=1.0 as a value argument (authored by Elvina). Repository: rG LLVM Github Monorepo CHANGES

[PATCH] D91237: [OpenCL] Make Clang recognize -cl-std=1.0 as a value argument

2020-11-11 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina added a comment. Anastasia, thank you Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D91237/new/ https://reviews.llvm.org/D91237 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

[PATCH] D89972: Add pipeline model for HiSilicon's TSV110

2020-10-30 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina marked 6 inline comments as done. Elvina added inline comments. Comment at: clang/test/Driver/aarch64-cpus.c:298 +// RUN: %clang -target aarch64 -mcpu=tsv110 -### -c %s 2>&1 | FileCheck -check-prefix=TSV110 %s +// RUN: %clang -target aarch64 -mlittle-endian

[PATCH] D89972: Add pipeline model for HiSilicon's TSV110

2020-10-30 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina updated this revision to Diff 301821. Elvina marked 2 inline comments as done. Elvina added a comment. Merged all into one AArch64SchedTSV110.td, removed aarch64-cpus.c test from this patch CHANGES SINCE LAST ACTION https://reviews.llvm.org/D89972/new/

[PATCH] D89972: Add pipeline model for HiSilicon's TSV110

2020-10-29 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina added a comment. Gentle ping :) Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D89972/new/ https://reviews.llvm.org/D89972 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

[PATCH] D89972: Add pipeline model for HiSilicon's TSV110

2020-10-22 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina created this revision. Elvina added reviewers: bryanpkc, kristof.beyls, t.p.northover, SjoerdMeijer. Elvina added projects: LLVM, clang. Herald added subscribers: cfe-commits, jfb, hiraditya. Elvina requested review of this revision. This patch adds the scheduling and cost model for

[PATCH] D89972: Add pipeline model for HiSilicon's TSV110

2020-11-05 Thread Elvina Yakubova via Phabricator via cfe-commits
Elvina added a comment. @SjoerdMeijer thanks for the review! @bryanpkc does everything look fine? Can I commit it? CHANGES SINCE LAST ACTION https://reviews.llvm.org/D89972/new/ https://reviews.llvm.org/D89972 ___ cfe-commits mailing list

[PATCH] D89972: Add pipeline model for HiSilicon's TSV110

2020-11-06 Thread Elvina Yakubova via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG93b99728b167: [AArch64] Add pipeline model for HiSilicons TSV110 (authored by Elvina). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D89972/new/