Lines Matching refs:frameArgs
136 GateRef frameArgs = acc_.GetValueIn(frameState);
137 size_t inlineCallCounts = GetOrInitialInlineCounts(frameArgs);
151 UpdateInlineCounts(frameArgs, inlineCallCounts);
509 GateRef frameArgs = GetFrameArgs(info);
510 GateRef callerFunc = acc_.GetValueIn(frameArgs, 0);
589 GateRef frameArgs = acc_.GetFrameArgs(preFrameState);
590 builder.SetPreFrameArgs(frameArgs);
628 size_t TSInlineLowering::GetOrInitialInlineCounts(GateRef frameArgs)
630 auto it = inlinedCallMap_.find(frameArgs);
632 inlinedCallMap_[frameArgs] = 0;
634 return inlinedCallMap_[frameArgs];
644 GateRef frameArgs = GetFrameArgs(info);
645 caller = acc_.GetValueIn(frameArgs);
651 frameArgs = acc_.GetFrameArgs(frameArgs);
652 if (frameArgs == Circuit::NullGate()) {
655 caller = acc_.GetValueIn(frameArgs);
718 GateRef frameArgs = GetFrameArgs(info);
719 initCallTarget_ = acc_.GetValueIn(frameArgs, 0);