Lines Matching refs:codegen_
363 : codegen_(codegen) { in PushSafepointRegistersScope()
364 DCHECK(codegen_->info()->is_calling()); in PushSafepointRegistersScope()
365 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kSimple); in PushSafepointRegistersScope()
366 codegen_->expected_safepoint_kind_ = Safepoint::kWithRegisters; in PushSafepointRegistersScope()
368 StoreRegistersStateStub stub(codegen_->isolate()); in PushSafepointRegistersScope()
369 codegen_->masm_->push(ra); in PushSafepointRegistersScope()
370 codegen_->masm_->CallStub(&stub); in PushSafepointRegistersScope()
374 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kWithRegisters); in ~PushSafepointRegistersScope()
375 RestoreRegistersStateStub stub(codegen_->isolate()); in ~PushSafepointRegistersScope()
376 codegen_->masm_->push(ra); in ~PushSafepointRegistersScope()
377 codegen_->masm_->CallStub(&stub); in ~PushSafepointRegistersScope()
378 codegen_->expected_safepoint_kind_ = Safepoint::kSimple; in ~PushSafepointRegistersScope()
382 LCodeGen* codegen_;
395 : codegen_(codegen), in LDeferredCode()
411 LCodeGen* codegen() const { return codegen_; } in codegen()
412 MacroAssembler* masm() const { return codegen_->masm(); } in masm()
415 LCodeGen* codegen_;