Home
last modified time | relevance | path

Searched refs:effect_phi (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/compiler/
Dloop-variable-optimizer.cc249 Node* effect_phi = nullptr; in TryGetInductionVariable() local
252 DCHECK_NULL(effect_phi); in TryGetInductionVariable()
253 effect_phi = use; in TryGetInductionVariable()
256 if (!effect_phi) return nullptr; in TryGetInductionVariable()
259 return new (zone()) InductionVariable(phi, effect_phi, arith, incr, initial, in TryGetInductionVariable()
333 NodeProperties::GetEffectInput(induction_var->effect_phi(), 1); in ChangeToPhisAndInsertGuards()
337 induction_var->effect_phi()->ReplaceInput(1, rename); in ChangeToPhisAndInsertGuards()
Dloop-variable-optimizer.h23 Node* effect_phi() const { return effect_phi_; } in effect_phi() function
45 InductionVariable(Node* phi, Node* effect_phi, Node* arith, Node* increment, in InductionVariable() argument
48 effect_phi_(effect_phi), in InductionVariable()
Descape-analysis.cc147 State MergeInputs(Node* effect_phi);
388 VariableTracker::State VariableTracker::MergeInputs(Node* effect_phi) { in MergeInputs() argument
397 DCHECK_EQ(IrOpcode::kEffectPhi, effect_phi->opcode()); in MergeInputs()
398 int arity = effect_phi->op()->EffectInputCount(); in MergeInputs()
399 Node* control = NodeProperties::GetControlInput(effect_phi, 0); in MergeInputs()
404 State first_input = table_.Get(NodeProperties::GetEffectInput(effect_phi, 0)); in MergeInputs()
417 table_.Get(NodeProperties::GetEffectInput(effect_phi, i)).Get(var); in MergeInputs()
429 Node* old_value = table_.Get(effect_phi).Get(var); in MergeInputs()
Djs-inlining-heuristic.cc434 Node* effect_phi = effect; in TryReuseDispatch() local
439 if (merge_use != effect_phi && merge_use != callee && merge_use != node && in TryReuseDispatch()
446 for (Node* effect_phi_use : effect_phi->uses()) { in TryReuseDispatch()
519 Node* effect = effect_phi->InputAt(i); in TryReuseDispatch()
546 effect_phi->ReplaceInput(num_calls, jsgraph()->Dead()); in TryReuseDispatch()
Deffect-control-linearizer.cc76 Node* effect_phi; member
79 PendingEffectPhi(Node* effect_phi, BasicBlock* block) in PendingEffectPhi()
80 : effect_phi(effect_phi), block(block) {} in PendingEffectPhi()
353 Node* effect_phi = nullptr; in Run() local
360 DCHECK_NULL(effect_phi); in Run()
363 effect_phi = node; in Run()
374 if (effect_phi) { in Run()
380 pending_effect_phis.push_back(PendingEffectPhi(effect_phi, block)); in Run()
382 UpdateEffectPhi(effect_phi, block, &block_effects, jsgraph()); in Run()
386 Node* effect = effect_phi; in Run()
[all …]
Dload-elimination.h299 Node* effect_phi, Node* phi); in NON_EXPORTED_BASE()
Dload-elimination.cc1084 AbstractState const* state, Node* effect_phi, Node* phi) { in UpdateStateForPhi() argument
1091 node_states_.Get(NodeProperties::GetEffectInput(effect_phi, 0)); in UpdateStateForPhi()
1096 node_states_.Get(NodeProperties::GetEffectInput(effect_phi, i)); in UpdateStateForPhi()