Searched refs:Load32BitValue (Results 1 – 6 of 6) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | code_generator_x86_64.h | 582 void Load32BitValue(CpuRegister dest, int32_t value); 584 void Load32BitValue(XmmRegister dest, int32_t value); 586 void Load32BitValue(XmmRegister dest, float value);
|
H A D | intrinsics_x86.cc | 542 codegen->Load32BitValue(out_loc.AsRegisterPairLow<Register>(), 0); in GenLowestOneBit() 543 codegen->Load32BitValue(out_loc.AsRegisterPairHigh<Register>(), 1 << shift); in GenLowestOneBit() 545 codegen->Load32BitValue(out_loc.AsRegisterPairLow<Register>(), 1 << value); in GenLowestOneBit() 546 codegen->Load32BitValue(out_loc.AsRegisterPairHigh<Register>(), 0); in GenLowestOneBit() 549 codegen->Load32BitValue(out_loc.AsRegister<Register>(), 1 << value); in GenLowestOneBit() 2308 codegen->Load32BitValue(out, result); in GenBitCount() 2377 codegen->Load32BitValue(out, value); in GenLeadingZeros() 2481 codegen->Load32BitValue(out, value); in GenTrailingZeros()
|
H A D | intrinsics_x86_64.cc | 343 codegen_->Load32BitValue(out, kPrimIntMax); in VisitMathRoundFloat() 2290 codegen->Load32BitValue(out, result); in GenBitCount() 2360 codegen->Load32BitValue(out, 1 << value); in GenOneBit() 2483 codegen->Load32BitValue(out, value); in GenLeadingZeros() 2556 codegen->Load32BitValue(out, value); in GenTrailingZeros()
|
H A D | code_generator_x86_64.cc | 419 x86_64_codegen->Load32BitValue( in EmitNativeCode() 1630 Load32BitValue(dest, GetInt32ValueOf(constant)); in Move() 1646 Load32BitValue(dest, static_cast<int32_t>(value)); in Move() 3309 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion() 3322 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion() 3335 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion() 6016 codegen_->Load32BitValue(dest, fp_value); in EmitMove() 7729 void CodeGeneratorX86_64::Load32BitValue(CpuRegister dest, int32_t value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64 7749 void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, int32_t value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64 7765 void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, float value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64 [all …]
|
H A D | code_generator_x86.h | 561 void Load32BitValue(Register dest, int32_t value);
|
H A D | code_generator_x86.cc | 408 x86_codegen->Load32BitValue( in EmitNativeCode() 8887 void CodeGeneratorX86::Load32BitValue(Register dest, int32_t value) { in Load32BitValue() function in art::x86::CodeGeneratorX86
|