Lines Matching refs:codegen_
295 : codegen_(codegen) { in PushSafepointRegistersScope()
296 DCHECK(codegen_->info()->is_calling()); in PushSafepointRegistersScope()
297 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kSimple); in PushSafepointRegistersScope()
298 codegen_->expected_safepoint_kind_ = Safepoint::kWithRegisters; in PushSafepointRegistersScope()
299 StoreRegistersStateStub stub(codegen_->isolate()); in PushSafepointRegistersScope()
300 codegen_->masm_->CallStub(&stub); in PushSafepointRegistersScope()
304 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kWithRegisters); in ~PushSafepointRegistersScope()
305 RestoreRegistersStateStub stub(codegen_->isolate()); in ~PushSafepointRegistersScope()
306 codegen_->masm_->CallStub(&stub); in ~PushSafepointRegistersScope()
307 codegen_->expected_safepoint_kind_ = Safepoint::kSimple; in ~PushSafepointRegistersScope()
311 LCodeGen* codegen_;
324 : codegen_(codegen), in LDeferredCode()
340 LCodeGen* codegen() const { return codegen_; } in codegen()
341 MacroAssembler* masm() const { return codegen_->masm(); } in masm()
344 LCodeGen* codegen_;