Lines Matching refs:builder_
42 GateRef isEqual = builder_.Equal(newTarget, builder_.Undefined());
44 GateRef ifBranchCondition = builder_.Branch(stateEntry_, isEqual, 1, 1, "checkNewTarget");
45 GateRef ifTrueCondition = builder_.IfTrue(ifBranchCondition);
46 GateRef ifFalseCondition = builder_.IfFalse(ifBranchCondition);
52 GateRef contextOffset = builder_.IntPtr(JSGeneratorObject::GENERATOR_CONTEXT_OFFSET);
53 GateRef val = builder_.PtrAdd(newTarget, contextOffset);
54 GateRef dependStart = builder_.DependRelay(ifFalseCondition, dependEntry_);
58 GateRef bcOffset = builder_.IntPtr(GeneratorContext::GENERATOR_BC_OFFSET_OFFSET);
59 val = builder_.PtrAdd(contextGate, bcOffset);
81 offsetConstantGate = builder_.TruncInt64ToInt32(offsetConstantGate);
89 GateRef condition = builder_.Equal(offsetConstantGate, restoreOffsetGate);
93 GateRef ifTrueDepend = builder_.DependRelay(ifTrue, restoreOffsetGate);
94 GateRef ifFalseDepend = builder_.DependRelay(ifFalse, restoreOffsetGate);
109 auto constant = builder_.UndefineConstant();
133 GateRef condition = builder_.Equal(offsetConstantGate, bcOffsetPhiGate);