Lines Matching refs:codegen_
360 : codegen_(codegen) { in PushSafepointRegistersScope()
361 DCHECK(codegen_->info()->is_calling()); in PushSafepointRegistersScope()
362 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kSimple); in PushSafepointRegistersScope()
363 codegen_->expected_safepoint_kind_ = Safepoint::kWithRegisters; in PushSafepointRegistersScope()
365 StoreRegistersStateStub stub(codegen_->isolate()); in PushSafepointRegistersScope()
366 codegen_->masm_->push(ra); in PushSafepointRegistersScope()
367 codegen_->masm_->CallStub(&stub); in PushSafepointRegistersScope()
371 DCHECK(codegen_->expected_safepoint_kind_ == Safepoint::kWithRegisters); in ~PushSafepointRegistersScope()
372 RestoreRegistersStateStub stub(codegen_->isolate()); in ~PushSafepointRegistersScope()
373 codegen_->masm_->push(ra); in ~PushSafepointRegistersScope()
374 codegen_->masm_->CallStub(&stub); in ~PushSafepointRegistersScope()
375 codegen_->expected_safepoint_kind_ = Safepoint::kSimple; in ~PushSafepointRegistersScope()
379 LCodeGen* codegen_;
392 : codegen_(codegen), in LDeferredCode()
408 LCodeGen* codegen() const { return codegen_; } in codegen()
409 MacroAssembler* masm() const { return codegen_->masm(); } in masm()
412 LCodeGen* codegen_;