Lines Matching refs:codegen_
26 : codegen_(codegen), in SafepointGenerator()
34 codegen_->RecordSafepoint(pointers_, deopt_mode_); in AfterCall()
38 LCodeGen* codegen_; member in v8::internal::SafepointGenerator
45 : codegen_(codegen) { in PushSafepointRegistersScope()
46 DCHECK(codegen_->info()->is_calling()); in PushSafepointRegistersScope()
47 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kSimple); in PushSafepointRegistersScope()
48 codegen_->expected_safepoint_kind_ = Safepoint::kWithRegisters; in PushSafepointRegistersScope()
50 UseScratchRegisterScope temps(codegen_->masm_); in PushSafepointRegistersScope()
55 codegen_->masm_->Mov(to_be_pushed_lr, lr); in PushSafepointRegistersScope()
56 StoreRegistersStateStub stub(codegen_->isolate()); in PushSafepointRegistersScope()
57 codegen_->masm_->CallStub(&stub); in PushSafepointRegistersScope()
61 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kWithRegisters); in ~PushSafepointRegistersScope()
62 RestoreRegistersStateStub stub(codegen_->isolate()); in ~PushSafepointRegistersScope()
63 codegen_->masm_->CallStub(&stub); in ~PushSafepointRegistersScope()
64 codegen_->expected_safepoint_kind_ = Safepoint::kSimple; in ~PushSafepointRegistersScope()