/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | bytecode_circuit_builder.cpp | 639 gateAcc_.NewIn(depend, 0, state); in NewMerge() 654 gateAcc_.NewIn(loopBegin, 0, state); in NewLoopBegin() 655 gateAcc_.NewIn(loopDepend, 1, depend); in NewLoopBegin() 743 gateAcc_.NewIn(bbNext.loopBackStateMerge, bbNext.loopBackIndex, state); in SetLoopBlockPred() 744 gateAcc_.NewIn(bbNext.loopBackDependMerge, bbNext.loopBackIndex + 1, depend); in SetLoopBlockPred() 750 gateAcc_.NewIn(loopBack, 0, state); in SetLoopBlockPred() 751 gateAcc_.NewIn(bbNext.dependCurrent, 2, depend); // 2: loopback depend in SetLoopBlockPred() 758 gateAcc_.NewIn(bbNext.stateMerge, bbNext.forwardIndex, state); in SetLoopBlockPred() 759 gateAcc_.NewIn(bbNext.dependMerge, bbNext.forwardIndex + 1, depend); in SetLoopBlockPred() 764 gateAcc_.NewIn(bbNext.stateCurrent, 0, state); in SetLoopBlockPred() [all …]
|
D | loop_peeling.cpp | 44 acc_.NewIn(copy, i, copyIn); in Peel() 46 acc_.NewIn(copy, i, in); in Peel()
|
D | gate.cpp | 489 NewIn(idx, in); in Gate() 496 void Gate::NewIn(size_t idx, Gate *in) in NewIn() function in panda::ecmascript::kungfu::Gate 513 NewIn(idx, in); in ModifyIn()
|
D | gate.h | 147 void NewIn(size_t idx, Gate *in);
|
D | circuit.cpp | 323 void Circuit::NewIn(GateRef gate, size_t idx, GateRef in) in NewIn() function in panda::ecmascript::kungfu::Circuit 329 LoadGatePtr(gate)->NewIn(idx, LoadGatePtr(in)); in NewIn()
|
D | circuit.h | 231 void NewIn(GateRef gate, size_t idx, GateRef in);
|
D | gate_accessor.h | 433 void NewIn(GateRef gate, size_t idx, GateRef in);
|
D | circuit_builder.cpp | 1932 GateAccessor(env_->GetCircuit()).NewIn(loopDepend_, 1, predecessors_[0]->GetDepend()); in Bind() 1951 GateAccessor(env_->GetCircuit()).NewIn(predeControl_, 1, otherPredeControls_[0]); in MergeAllControl() 1985 GateAccessor(env_->GetCircuit()).NewIn(loopDepend_, 2, predecessors_[1]->GetDepend()); in MergeAllDepend() 2037 GateAccessor(env_->GetCircuit()).NewIn(val, idx, in); in AddOperandToSelector()
|
D | gate_accessor.cpp | 921 void GateAccessor::NewIn(GateRef gate, size_t idx, GateRef in) in NewIn() function in panda::ecmascript::kungfu::GateAccessor 923 circuit_->NewIn(gate, idx, in); in NewIn()
|