Home | History | Annotate | Download | only in src

Lines Matching refs:masm

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