Lines Matching refs:codegen_
361 : codegen_(codegen) { in PushSafepointRegistersScope()
362 ASSERT(codegen_->expected_safepoint_kind_ == Safepoint::kSimple); in PushSafepointRegistersScope()
363 codegen_->expected_safepoint_kind_ = kind; in PushSafepointRegistersScope()
365 switch (codegen_->expected_safepoint_kind_) { in PushSafepointRegistersScope()
367 codegen_->masm_->PushSafepointRegisters(); in PushSafepointRegistersScope()
370 codegen_->masm_->PushSafepointRegistersAndDoubles(); in PushSafepointRegistersScope()
378 Safepoint::Kind kind = codegen_->expected_safepoint_kind_; in ~PushSafepointRegistersScope()
382 codegen_->masm_->PopSafepointRegisters(); in ~PushSafepointRegistersScope()
385 codegen_->masm_->PopSafepointRegistersAndDoubles(); in ~PushSafepointRegistersScope()
390 codegen_->expected_safepoint_kind_ = Safepoint::kSimple; in ~PushSafepointRegistersScope()
394 LCodeGen* codegen_;
407 : codegen_(codegen), in LDeferredCode()
423 LCodeGen* codegen() const { return codegen_; } in codegen()
424 MacroAssembler* masm() const { return codegen_->masm(); } in masm()
427 LCodeGen* codegen_;