We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a13c2 commit 255c6faCopy full SHA for 255c6fa
runtime/vm/compiler/backend/inliner.cc
@@ -194,6 +194,12 @@ class GraphInfoCollector : public ValueObject {
194
if (current->IsRedefinition()) {
195
continue;
196
}
197
+ // UnboxedConstant is often folded into the indexing
198
+ // instructions (similar to Constant instructions which
199
+ // belong to initial definitions and not counted here).
200
+ if (current->IsUnboxedConstant()) {
201
+ continue;
202
+ }
203
++instruction_count_;
204
// Count inputs of certain instructions as if separate PushArgument
205
// instructions are used for inputs. This is done in order to
0 commit comments