Home | History | Annotate | Download | only in a64

Lines Matching refs:masm_

1233       : masm_(masm) {
1234 masm_->BlockLiteralPool();
1237 old_allow_macro_instructions_ = masm_->AllowMacroInstructions();
1238 masm_->SetAllowMacroInstructions(false);
1243 : masm_(masm) {
1245 masm_->BlockLiteralPool();
1248 masm_->bind(&start_);
1249 old_allow_macro_instructions_ = masm_->AllowMacroInstructions();
1250 masm_->SetAllowMacroInstructions(false);
1255 masm_->ReleaseLiteralPool();
1258 VIXL_ASSERT(masm_->SizeOfCodeGeneratedSince(&start_) == size_);
1260 masm_->SetAllowMacroInstructions(old_allow_macro_instructions_);
1265 MacroAssembler* masm_;