Home
last modified time | relevance | path

Searched refs:sm (Results 1 – 6 of 6) sorted by relevance

/art/compiler/utils/arm/
Dassembler_arm32.h142 void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL) OVERRIDE;
143 void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL) OVERRIDE;
146 void vmovs(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE;
158 void vadds(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
160 void vsubs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
162 void vmuls(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
164 void vmlas(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
166 void vmlss(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
168 void vdivs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
171 void vabss(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE;
[all …]
Dassembler_arm32.cc348 void Arm32Assembler::vmovs(SRegister sd, SRegister sm, Condition cond) { in vmovs() argument
349 EmitVFPsss(cond, B23 | B21 | B20 | B6, sd, S0, sm); in vmovs()
388 void Arm32Assembler::vadds(SRegister sd, SRegister sn, SRegister sm, in vadds() argument
390 EmitVFPsss(cond, B21 | B20, sd, sn, sm); in vadds()
400 void Arm32Assembler::vsubs(SRegister sd, SRegister sn, SRegister sm, in vsubs() argument
402 EmitVFPsss(cond, B21 | B20 | B6, sd, sn, sm); in vsubs()
412 void Arm32Assembler::vmuls(SRegister sd, SRegister sn, SRegister sm, in vmuls() argument
414 EmitVFPsss(cond, B21, sd, sn, sm); in vmuls()
424 void Arm32Assembler::vmlas(SRegister sd, SRegister sn, SRegister sm, in vmlas() argument
426 EmitVFPsss(cond, 0, sd, sn, sm); in vmlas()
[all …]
Dassembler_thumb2.h179 void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL) OVERRIDE;
180 void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL) OVERRIDE;
183 void vmovs(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE;
195 void vadds(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
197 void vsubs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
199 void vmuls(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
201 void vmlas(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
203 void vmlss(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
205 void vdivs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE;
208 void vabss(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE;
[all …]
Dassembler_thumb2.cc476 void Thumb2Assembler::vmovs(SRegister sd, SRegister sm, Condition cond) { in vmovs() argument
477 EmitVFPsss(cond, B23 | B21 | B20 | B6, sd, S0, sm); in vmovs()
486 void Thumb2Assembler::vadds(SRegister sd, SRegister sn, SRegister sm, in vadds() argument
488 EmitVFPsss(cond, B21 | B20, sd, sn, sm); in vadds()
498 void Thumb2Assembler::vsubs(SRegister sd, SRegister sn, SRegister sm, in vsubs() argument
500 EmitVFPsss(cond, B21 | B20 | B6, sd, sn, sm); in vsubs()
510 void Thumb2Assembler::vmuls(SRegister sd, SRegister sn, SRegister sm, in vmuls() argument
512 EmitVFPsss(cond, B21, sd, sn, sm); in vmuls()
522 void Thumb2Assembler::vmlas(SRegister sd, SRegister sn, SRegister sm, in vmlas() argument
524 EmitVFPsss(cond, 0, sd, sn, sm); in vmlas()
[all …]
Dassembler_arm.h460 virtual void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL) = 0;
461 virtual void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL) = 0;
464 virtual void vmovs(SRegister sd, SRegister sm, Condition cond = AL) = 0;
476 virtual void vadds(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0;
478 virtual void vsubs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0;
480 virtual void vmuls(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0;
482 virtual void vmlas(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0;
484 virtual void vmlss(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0;
486 virtual void vdivs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0;
489 virtual void vabss(SRegister sd, SRegister sm, Condition cond = AL) = 0;
[all …]
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1412 virtual void WalkHeader(BuildNativeCallFrameStateMachine<ComputeNativeCallFrameSize>* sm) in WalkHeader() argument
1414 UNUSED(sm); in WalkHeader()
1418 BuildNativeCallFrameStateMachine<ComputeNativeCallFrameSize> sm(this); in Walk() local
1420 WalkHeader(&sm); in Walk()
1427 sm.AdvanceHandleScope( in Walk()
1436 sm.AdvanceInt(0); in Walk()
1439 sm.AdvanceFloat(0); in Walk()
1442 sm.AdvanceDouble(0); in Walk()
1445 sm.AdvanceLong(0); in Walk()
1453 num_stack_entries_ = sm.GetStackEntries(); in Walk()
[all …]