Home | History | Annotate | Download | only in src

Lines Matching full:masm

98   explicit FrameScope(MacroAssembler* masm, StackFrame::Type type)
99 : masm_(masm), type_(type), old_has_frame_(masm->has_frame()) {
100 masm->set_has_frame(true);
102 masm->EnterFrame(type);
131 explicit AllowExternalCallThatCantCauseGC(MacroAssembler* masm)
132 : FrameScope(masm, StackFrame::NONE) { }
138 explicit NoCurrentFrameScope(MacroAssembler* masm)
139 : masm_(masm), saved_(masm->has_frame()) {
140 masm->set_has_frame(false);
158 Comment(MacroAssembler* masm, const char* msg);