forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a -mattr flag to llvm-mca, for cases where the -mcpu option does not contain all optional features. Differential Revision: https://reviews.llvm.org/D68190 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373358 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
b821fa8
commit bb1cbfa
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# NOTE: Assertions have been autogenerated by utils/update_mca_test_checks.py | ||
# RUN: llvm-mca -mtriple=arm-none-none-eabi -mcpu=cortex-m4 -mattr=+fp64 -instruction-tables < %s | FileCheck %s | ||
|
||
vadd.f32 s0, s2, s2 | ||
vadd.f64 d0, d2, d2 | ||
|
||
# CHECK: Instruction Info: | ||
# CHECK-NEXT: [1]: #uOps | ||
# CHECK-NEXT: [2]: Latency | ||
# CHECK-NEXT: [3]: RThroughput | ||
# CHECK-NEXT: [4]: MayLoad | ||
# CHECK-NEXT: [5]: MayStore | ||
# CHECK-NEXT: [6]: HasSideEffects (U) | ||
|
||
# CHECK: [1] [2] [3] [4] [5] [6] Instructions: | ||
# CHECK-NEXT: 1 1 1.00 vadd.f32 s0, s2, s2 | ||
# CHECK-NEXT: 1 1 1.00 vadd.f64 d0, d2, d2 | ||
|
||
# CHECK: Resources: | ||
# CHECK-NEXT: [0] - M4Unit | ||
|
||
# CHECK: Resource pressure per iteration: | ||
# CHECK-NEXT: [0] | ||
# CHECK-NEXT: 2.00 | ||
|
||
# CHECK: Resource pressure by instruction: | ||
# CHECK-NEXT: [0] Instructions: | ||
# CHECK-NEXT: 1.00 vadd.f32 s0, s2, s2 | ||
# CHECK-NEXT: 1.00 vadd.f64 d0, d2, d2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters