Home | History | Annotate | Download | only in compiler

Lines Matching refs:masm

73   FrameScope frame_scope(masm(), StackFrame::MANUAL);
76 PositionsRecorder* recorder = masm()->positions_recorder();
81 ProfileEntryHookStub::MaybeCallEntryHook(masm());
84 info->set_prologue_offset(masm()->pc_offset());
112 if (block->IsLoopHeader()) masm()->Align(16);
142 masm()->RecordComment(buffer_start);
147 masm()->bind(GetLabel(current_block_));
155 masm()->InitializeRootRegister();
161 ConstantPoolUnavailableScope constant_pool_unavailable(masm());
172 masm()->RecordComment("-- Out of line code --");
174 masm()->bind(ool->entry());
176 if (ool->exit()->is_bound()) masm()->jmp(ool->exit());
182 masm()->bind(exit->label());
188 int target_offset = masm()->pc_offset() + Deoptimizer::patch_size();
189 while (masm()->pc_offset() < target_offset) {
190 masm()->nop();
194 FinishCode(masm());
198 masm()->Align(kPointerSize);
200 masm()->bind(table->label());
205 safepoints()->Emit(masm(), frame()->GetTotalFrameSlotCount());
208 v8::internal::CodeGenerator::MakeCodeEpilogue(masm(), info);
258 safepoints()->DefineSafepoint(masm(), kind, arguments, deopt_mode);
378 masm()->bind(&continue_label);
401 masm()->positions_recorder()->RecordPosition(code_pos);
416 masm()->RecordComment(buffer.start());
507 handlers_.push_back({caught, GetLabel(handler_rpo), masm()->pc_offset()});
517 int pc_offset = masm()->pc_offset();
789 last_lazy_deopt_pc_ = masm()->pc_offset();
815 : frame_(gen->frame()), masm_(gen->masm()), next_(gen->ools_) {