summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Graey <maxgraey@gmail.com>2022-07-29 07:25:43 +0300
committerGitHub <noreply@github.com>2022-07-29 04:25:43 +0000
commit078f7b9bf57426cca2db96edbf213765354fc57a (patch)
tree11aac0d5014ce7230d9c522ce1be6d3807154ae1 /src
parentd02c260619e5d068b6893d4948de0487d0f1f66d (diff)
downloadbinaryen-078f7b9bf57426cca2db96edbf213765354fc57a.tar.gz
binaryen-078f7b9bf57426cca2db96edbf213765354fc57a.tar.bz2
binaryen-078f7b9bf57426cca2db96edbf213765354fc57a.zip
Refactor doIndent (#4847)
Refactor everywhere from: ```c++ for (size_t i = 0; i < indent; i++) { o << ' '; } ``` to: ```c++ o << std::string(indent, ' '); ``` ### Motivation It is much simpler and should produce smaller code.See godbolt: https://godbolt.org/z/KMYMdn7z5
Diffstat (limited to 'src')
-rw-r--r--src/dataflow/utils.h6
-rw-r--r--src/passes/Print.cpp6
-rw-r--r--src/pretty_printing.h5
3 files changed, 3 insertions, 14 deletions
diff --git a/src/dataflow/utils.h b/src/dataflow/utils.h
index af59c4111..4e88ed1f9 100644
--- a/src/dataflow/utils.h
+++ b/src/dataflow/utils.h
@@ -32,11 +32,7 @@
namespace wasm::DataFlow {
inline std::ostream& dump(Node* node, std::ostream& o, size_t indent = 0) {
- auto doIndent = [&]() {
- for (size_t i = 0; i < indent; i++) {
- o << ' ';
- }
- };
+ auto doIndent = [&]() { o << std::string(indent, ' '); };
doIndent();
o << '[' << node << ' ';
switch (node->type) {
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp
index 797ce46b1..962246569 100644
--- a/src/passes/Print.cpp
+++ b/src/passes/Print.cpp
@@ -3538,11 +3538,7 @@ printStackInst(StackInst* inst, std::ostream& o, Function* func) {
static std::ostream&
printStackIR(StackIR* ir, std::ostream& o, Function* func) {
size_t indent = func ? 2 : 0;
- auto doIndent = [&indent, &o]() {
- for (size_t j = 0; j < indent; j++) {
- o << ' ';
- }
- };
+ auto doIndent = [&]() { o << std::string(indent, ' '); };
int controlFlowDepth = 0;
// Stack to track indices of catches within a try
diff --git a/src/pretty_printing.h b/src/pretty_printing.h
index f1dd9db04..f693c4d51 100644
--- a/src/pretty_printing.h
+++ b/src/pretty_printing.h
@@ -26,10 +26,7 @@
#include "support/colors.h"
inline std::ostream& doIndent(std::ostream& o, unsigned indent) {
- for (unsigned i = 0; i < indent; i++) {
- o << " ";
- }
- return o;
+ return o << std::string(indent, ' ');
}
inline std::ostream& prepareMajorColor(std::ostream& o) {