Searched refs:vmovs (Results 1 – 8 of 8) sorted by relevance
/art/compiler/utils/arm/ |
D | assembler_arm.h | 464 virtual void vmovs(SRegister sd, SRegister sm, Condition cond = AL) = 0; 468 virtual bool vmovs(SRegister sd, float s_imm, Condition cond = AL) = 0; 542 if (!vmovs(sd, value, cond)) { 547 bool success = vmovs(sd, 2.0, cond); 572 vmovs(high, low);
|
D | assembler_arm32.h | 146 void vmovs(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; 150 bool vmovs(SRegister sd, float s_imm, Condition cond = AL) OVERRIDE;
|
D | assembler_thumb2.h | 183 void vmovs(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; 187 bool vmovs(SRegister sd, float s_imm, Condition cond = AL) OVERRIDE;
|
D | assembler_arm.cc | 662 vmovs(dst.AsSRegister(), src.AsSRegister()); in Move()
|
D | assembler_arm32.cc | 348 void Arm32Assembler::vmovs(SRegister sd, SRegister sm, Condition cond) { in vmovs() function in art::arm::Arm32Assembler 358 bool Arm32Assembler::vmovs(SRegister sd, float s_imm, Condition cond) { in vmovs() function in art::arm::Arm32Assembler
|
D | assembler_thumb2.cc | 446 bool Thumb2Assembler::vmovs(SRegister sd, float s_imm, Condition cond) { in vmovs() function in art::arm::Thumb2Assembler 476 void Thumb2Assembler::vmovs(SRegister sd, SRegister sm, Condition cond) { in vmovs() function in art::arm::Thumb2Assembler
|
/art/compiler/utils/ |
D | assembler_thumb_test.cc | 924 __ vmovs(S1, 1.0); in TEST() local 927 __ vmovs(S1, S2); in TEST() local
|
/art/compiler/optimizing/ |
D | code_generator_arm.cc | 727 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>()); in Move32() local 1728 __ vmovs(temp, in.AsFpuRegister<SRegister>()); in VisitTypeConversion() local 3599 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>()); in EmitMove() local 3724 __ vmovs(source.AsFpuRegister<SRegister>(), destination.AsFpuRegister<SRegister>()); in EmitSwap() local
|