Searched refs:gasm_ (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
H A D | wasm-compiler.cc | 87 gasm_->LoadFromObject( \ 92 gasm_->LoadImmutable( \ 97 gasm_->Load( \ 107 : gasm_->LoadImmutable( \ 524 : gasm_(std::make_unique<WasmGraphAssembler>(mcgraph, zone)), in WasmGraphBuilder() 558 instance_node_ = gasm_->LoadExportedFunctionInstance( in Start() 559 gasm_->LoadFunctionDataFromJSFunction( in Start() 591 gasm_->MergeControlToEnd(terminate); in TerminateLoop() 614 gasm_->MergeControlToEnd(terminate); in TerminateThrow() 679 return gasm_ in RefFunc() [all...] |
H A D | graph-assembler.h | 458 gasm_(gasm) { in LoopScopeInternal() 463 gasm_->loop_nesting_level_--; in ~LoopScopeInternal() 464 DCHECK_EQ(gasm_->loop_nesting_level_, previous_loop_nesting_level_); in ~LoopScopeInternal() 469 GraphAssembler* const gasm_; member in v8::internal::compiler::GraphAssembler::final::LoopScopeInternal 475 gasm_(gasm), in LoopScope() 478 DCHECK(gasm_->mark_loop_exits_); in LoopScope() 480 DCHECK_EQ(static_cast<int>(gasm_->loop_headers_.size()), in LoopScope() 481 gasm_->loop_nesting_level_); in LoopScope() 485 DCHECK_EQ(static_cast<int>(gasm_->loop_headers_.size()), in ~LoopScope() 486 gasm_ in ~LoopScope() 496 GraphAssembler* const gasm_; global() member in v8::internal::compiler::GraphAssembler::final 512 GraphAssembler* const gasm_; global() member in v8::internal::compiler::GraphAssembler::RestoreEffectControlScope [all...] |
H A D | js-call-reducer.cc | 119 : gasm_(gasm), in IfBuilder0() 148 DCHECK_EQ(gasm_->effect(), initial_effect_); in ~IfBuilder0() 149 DCHECK_EQ(gasm_->control(), initial_control_); in ~IfBuilder0() 157 auto if_true = (hint_ == BranchHint::kFalse) ? gasm_->MakeDeferredLabel() in ~IfBuilder0() 158 : gasm_->MakeLabel(); in ~IfBuilder0() 159 auto if_false = (hint_ == BranchHint::kTrue) ? gasm_->MakeDeferredLabel() in ~IfBuilder0() 160 : gasm_->MakeLabel(); in ~IfBuilder0() 161 auto merge = gasm_->MakeLabel(); in ~IfBuilder0() 162 gasm_->Branch(cond_, &if_true, &if_false); in ~IfBuilder0() 164 gasm_ in ~IfBuilder0() 179 JSGraphAssembler* const gasm_; global() member in v8::internal::compiler::JSCallReducerAssembler::final 249 JSGraphAssembler* const gasm_; global() member in v8::internal::compiler::JSCallReducerAssembler::IfBuilder1 426 JSCallReducerAssembler* gasm_ = nullptr; global() member in v8::internal::compiler::JSCallReducerAssembler::CatchScope 468 JSCallReducerAssembler* const gasm_; global() member in v8::internal::compiler::JSCallReducerAssembler::TryCatchBuilder0 518 JSGraphAssembler* const gasm_; global() member in v8::internal::compiler::JSCallReducerAssembler::ForBuilder0 592 JSGraphAssembler* const gasm_; global() member in v8::internal::ForBuilder1 [all...] |
H A D | graph-assembler.cc | 24 explicit BlockInlineReduction(GraphAssembler* gasm) : gasm_(gasm) { in BlockInlineReduction() 25 DCHECK(!gasm_->inline_reductions_blocked_); in BlockInlineReduction() 26 gasm_->inline_reductions_blocked_ = true; in BlockInlineReduction() 29 DCHECK(gasm_->inline_reductions_blocked_); in ~BlockInlineReduction() 30 gasm_->inline_reductions_blocked_ = false; in ~BlockInlineReduction() 34 GraphAssembler* gasm_; member in v8::internal::compiler::GraphAssembler::BlockInlineReduction
|
H A D | wasm-compiler.h | 807 std::unique_ptr<WasmGraphAssembler> gasm_; variable
|
Completed in 12 milliseconds