Lines Matching refs:masm
71 explicit FrameScope(MacroAssembler* masm, StackFrame::Type type) in FrameScope() argument
72 : masm_(masm), type_(type), old_has_frame_(masm->has_frame()) { in FrameScope()
73 masm->set_has_frame(true); in FrameScope()
75 masm->EnterFrame(type); in FrameScope()
104 FrameAndConstantPoolScope(MacroAssembler* masm, StackFrame::Type type) in FrameAndConstantPoolScope() argument
105 : masm_(masm), in FrameAndConstantPoolScope()
107 old_has_frame_(masm->has_frame()), in FrameAndConstantPoolScope()
109 masm->is_constant_pool_available()) { in FrameAndConstantPoolScope()
110 masm->set_has_frame(true); in FrameAndConstantPoolScope()
112 masm->set_constant_pool_available(true); in FrameAndConstantPoolScope()
115 masm->EnterFrame(type, !old_constant_pool_available_); in FrameAndConstantPoolScope()
149 explicit ConstantPoolUnavailableScope(MacroAssembler* masm) in ConstantPoolUnavailableScope() argument
150 : masm_(masm), in ConstantPoolUnavailableScope()
152 masm->is_constant_pool_available()) { in ConstantPoolUnavailableScope()
173 explicit AllowExternalCallThatCantCauseGC(MacroAssembler* masm) in AllowExternalCallThatCantCauseGC() argument
174 : FrameScope(masm, StackFrame::NONE) { } in AllowExternalCallThatCantCauseGC()
180 explicit NoCurrentFrameScope(MacroAssembler* masm) in NoCurrentFrameScope() argument
181 : masm_(masm), saved_(masm->has_frame()) { in NoCurrentFrameScope()
182 masm->set_has_frame(false); in NoCurrentFrameScope()
200 Comment(MacroAssembler* masm, const char* msg);