/third_party/node/deps/v8/src/compiler/ |
H A D | select-lowering.cc | 28 #define __ gasm()-> 38 if (gasm()->control() == nullptr) { in LowerSelect() 39 gasm()->InitializeEffectControl(start(), start()); in LowerSelect() 50 gasm()->Reset(); in LowerSelect()
|
H A D | graph-assembler.h | 456 explicit LoopScopeInternal(GraphAssembler* gasm) in LoopScopeInternal() argument 457 : previous_loop_nesting_level_(gasm->loop_nesting_level_), in LoopScopeInternal() 458 gasm_(gasm) { in LoopScopeInternal() 459 gasm->loop_nesting_level_++; in LoopScopeInternal() 473 explicit LoopScope(GraphAssembler* gasm) in LoopScope() argument 474 : internal_scope_(gasm), in LoopScope() 475 gasm_(gasm), in LoopScope() 476 loop_header_label_(gasm->MakeLoopLabel(Reps...)) { in LoopScope() 479 gasm->loop_headers_.push_back(&loop_header_label_.control_); in LoopScope() 503 explicit RestoreEffectControlScope(GraphAssembler* gasm) in RestoreEffectControlScope() argument [all...] |
H A D | memory-lowering.cc | 133 #define __ gasm()-> 153 gasm()->InitializeEffectControl(effect, control); in ReduceAllocateRaw() 272 effect = gasm()->effect(); in ReduceAllocateRaw() 273 control = gasm()->control(); in ReduceAllocateRaw() 320 effect = gasm()->effect(); in ReduceAllocateRaw() 321 control = gasm()->control(); in ReduceAllocateRaw() 362 effect = gasm()->effect(); in ReduceAllocateRaw() 363 control = gasm()->control(); in ReduceAllocateRaw()
|
H A D | select-lowering.h | 30 JSGraphAssembler* gasm() const { return graph_assembler_; } in gasm() function in v8::internal::compiler::final
|
H A D | memory-lowering.h | 123 JSGraphAssembler* gasm() const { return graph_assembler_; } in gasm() function in v8::internal::compiler::final
|
H A D | js-call-reducer.cc | 118 IfBuilder0(JSGraphAssembler* gasm, TNode<Boolean> cond, bool negate_cond) in IfBuilder0() argument 119 : gasm_(gasm), in IfBuilder0() 122 initial_effect_(gasm->effect()), in IfBuilder0() 123 initial_control_(gasm->control()) {} in IfBuilder0() 197 IfBuilder1(JSGraphAssembler* gasm, TNode<Boolean> cond) in IfBuilder1() argument 198 : gasm_(gasm), cond_(cond) {} in IfBuilder1() 346 CatchScope(Zone* zone, JSCallReducerAssembler* gasm) in CatchScope() argument 347 : gasm_(gasm), in CatchScope() 348 parent_(gasm->catch_scope_), in CatchScope() 358 static CatchScope Inner(Zone* zone, JSCallReducerAssembler* gasm) { in Inner() argument 437 TryCatchBuilder0(JSCallReducerAssembler* gasm, const TryFunction& try_body) TryCatchBuilder0() argument 482 ForBuilder0(JSGraphAssembler* gasm, TNode<Number> initial_value, const ConditionFunction1& cond, const StepFunction1& step) ForBuilder0() argument 541 ForBuilder1(JSGraphAssembler* gasm, TNode<Number> initial_value, const ConditionFunction1& cond, const StepFunction1& step, TNode<Object> initial_arg0) ForBuilder1() argument [all...] |
H A D | graph-assembler.cc | 24 explicit BlockInlineReduction(GraphAssembler* gasm) : gasm_(gasm) { in BlockInlineReduction() argument
|
H A D | effect-control-linearizer.cc | 335 JSGraphAssembler* gasm() const { return graph_assembler_; } in gasm() function in v8::internal::compiler::EffectControlLinearizer 627 gasm()->Reset(); in Run() 634 gasm()->AddNode(control); in Run() 669 gasm()->AddNode(node); in Run() 718 gasm()->AddNode(effect); in Run() 758 gasm()->InitializeEffectControl(effect, control); in Run() 778 gasm()->UpdateEffectControlWith(block->control_input()); in Run() 793 data->current_effect = gasm()->effect(); in Run() 796 data->current_control = gasm()->control(); in Run() 819 NodeProperties::ReplaceEffectInput(node, gasm() in UpdateEffectControlForNode() [all...] |
H A D | js-call-reducer.h | 230 Reduction ReplaceWithSubgraph(JSCallReducerAssembler* gasm, Node* subgraph);
|
H A D | js-typed-lowering.cc | 847 #define __ gasm. in ReduceJSEqual() 848 JSGraphAssembler gasm(jsgraph(), jsgraph()->zone()); in ReduceJSEqual() 849 gasm.InitializeEffectControl(r.effect(), r.control()); in ReduceJSEqual() 873 ReplaceWithValue(node, value, gasm.effect(), gasm.control()); in ReduceJSEqual()
|
H A D | wasm-compiler.cc | 6760 WasmGraphAssembler* gasm) 6766 gasm->LoadFromObject(MachineType::Pointer(), isolate_root,
|