Home
last modified time | relevance | path

Searched refs:NewIn (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_circuit_builder.cpp639 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 …]
Dloop_peeling.cpp44 acc_.NewIn(copy, i, copyIn); in Peel()
46 acc_.NewIn(copy, i, in); in Peel()
Dgate.cpp489 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()
Dgate.h147 void NewIn(size_t idx, Gate *in);
Dcircuit.cpp323 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()
Dcircuit.h231 void NewIn(GateRef gate, size_t idx, GateRef in);
Dgate_accessor.h433 void NewIn(GateRef gate, size_t idx, GateRef in);
Dcircuit_builder.cpp1932 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()
Dgate_accessor.cpp921 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()