Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions collector/compile-benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ They mostly consist of real-world crates.
Rust programs.
- **cranelift-codegen-0.82.1**: The largest crate from a code generator. Used by
wasmtime. Stresses obligation processing.
- **cranelift-codegen-0.119.0**: The largest crate from a code generator. Used by wasmtime. Stresses obligation processing.
- **diesel-1.4.8**: A type safe SQL query builder. Utilizes the type system to
ensure a lot of invariants. Stresses anything related to resolving
trait bounds, by having a lot of trait impls for a large number of different
Expand Down
5 changes: 5 additions & 0 deletions collector/compile-benchmarks/REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ path = "cranelift-codegen-0.82.1/**"
SPDX-FileCopyrightText = "The Cranelift Project Developers"
SPDX-License-Identifier = "Apache-2.0 WITH LLVM-exception"

[[annotations]]
path = "cranelift-codegen-0.119.0/**"
SPDX-FileCopyrightText = "The Cranelift Project Developers"
SPDX-License-Identifier = "Apache-2.0 WITH LLVM-exception"

[[annotations]]
path = "ctfe-stress-5/**"
SPDX-FileCopyrightText = "The Rust Project Developers (see https://thanks.rust-lang.org)"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"git": {
"sha1": "d3054950c67c340491f4f48021e58c11002e7513"
},
"path_in_vcs": "cranelift/codegen"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/src/loop_analysis.rs b/src/loop_analysis.rs
index 71f84565..e8e2dcc6 100644
--- a/src/loop_analysis.rs
+++ b/src/loop_analysis.rs
@@ -230,6 +230,7 @@ impl LoopAnalysis {
domtree: &DominatorTree,
layout: &Layout,
) {
+ println!("testing");
let mut stack: Vec<Block> = Vec::new();
// We handle each loop header in reverse order, corresponding to a pseudo postorder
// traversal of the graph.
Loading
Loading