Home
last modified time | relevance | path

Searched refs:effect_ (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/compiler/
Dallocation-builder.h24 effect_(effect), in AllocationBuilder()
31 effect_ = graph()->NewNode(
32 common()->BeginRegion(RegionObservability::kNotObservable), effect_);
35 jsgraph()->Constant(size), effect_, control_);
36 effect_ = allocation_;
41 effect_ = graph()->NewNode(simplified()->StoreField(access), allocation_, in Store()
42 value, effect_, control_); in Store()
47 effect_ = graph()->NewNode(simplified()->StoreElement(access), allocation_, in Store()
48 index, value, effect_, control_); in Store()
86 node->ReplaceInput(1, effect_); in FinishAndChange()
[all …]
Dgraph-assembler.h138 Node* effect_; variable
307 label->effect_ = graph()->NewNode(common()->EffectPhi(2), current_effect_, in MergeState()
309 Node* terminate = graph()->NewNode(common()->Terminate(), label->effect_, in MergeState()
321 label->effect_->ReplaceInput(1, current_effect_); in MergeState()
332 label->effect_ = current_effect_; in MergeState()
340 label->effect_ = graph()->NewNode(common()->EffectPhi(2), label->effect_, in MergeState()
354 DCHECK_EQ(IrOpcode::kEffectPhi, label->effect_->opcode()); in MergeState()
355 label->effect_->ReplaceInput(merged_count, current_effect_); in MergeState()
356 label->effect_->AppendInput(graph()->zone(), label->control_); in MergeState()
357 NodeProperties::ChangeOp(label->effect_, in MergeState()
[all …]
Djs-type-hint-lowering.h62 Node* effect() const { return effect_; } in effect()
94 : kind_(kind), value_(value), effect_(effect), control_(control) {} in LoweringResult()
98 Node* effect_; variable
Djs-native-context-specialization.h109 : value_(nullptr), effect_(nullptr), control_(nullptr) {} in ValueEffectControl()
111 : value_(value), effect_(effect), control_(control) {} in ValueEffectControl()
114 Node* effect() const { return effect_; } in effect()
119 Node* effect_; variable
Dwasm-compiler.h247 DCHECK_NOT_NULL(*effect_); in Effect()
248 return *effect_; in Effect()
255 *effect_ = node; in SetEffect()
261 void set_effect_ptr(Node** effect) { this->effect_ = effect; } in set_effect_ptr()
327 Node** effect_ = nullptr; variable
Djs-type-hint-lowering.cc58 effect_(effect), in JSSpeculativeBinopBuilder()
168 return graph()->NewNode(op, left_, right_, effect_, control_); in BuildSpeculativeOperation()
206 Node* effect_; member in v8::internal::compiler::JSSpeculativeBinopBuilder
Dwasm-compiler.cc247 if (effect == nullptr) effect = effect_; in StackCheck()
/external/v8/tools/gcmole/
Dgcmole.cc279 bool hasGC() { return (effect_ & kCausesGC) != 0; } in hasGC()
280 void setGC() { effect_ |= kCausesGC; } in setGC()
282 bool hasRawDef() { return (effect_ & kRawDef) != 0; } in hasRawDef()
283 void setRawDef() { effect_ |= kRawDef; } in setRawDef()
285 bool hasRawUse() { return (effect_ & kRawUse) != 0; } in hasRawUse()
286 void setRawUse() { effect_ |= kRawUse; } in setRawUse()
299 return reinterpret_cast<Environment*>(effect_ & ~kAllEffects); in env()
308 : effect_((effect & kAllEffects) | in ExprEffect()
311 intptr_t effect_; member in __anon85d096280111::ExprEffect
508 return ExprEffect(a.effect_ | b.effect_, out); in Merge()
[all …]