Searched refs:Load32BitValue (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_x86_64.h | 656 void Load32BitValue(CpuRegister dest, int32_t value); 658 void Load32BitValue(XmmRegister dest, int32_t value); 660 void Load32BitValue(XmmRegister dest, float value);
|
D | intrinsics_x86.cc | 521 codegen->Load32BitValue(out_loc.AsRegisterPairLow<Register>(), 0); in GenLowestOneBit() 522 codegen->Load32BitValue(out_loc.AsRegisterPairHigh<Register>(), 1 << shift); in GenLowestOneBit() 524 codegen->Load32BitValue(out_loc.AsRegisterPairLow<Register>(), 1 << value); in GenLowestOneBit() 525 codegen->Load32BitValue(out_loc.AsRegisterPairHigh<Register>(), 0); in GenLowestOneBit() 528 codegen->Load32BitValue(out_loc.AsRegister<Register>(), 1 << value); in GenLowestOneBit() 2795 codegen->Load32BitValue(out, result); in GenBitCount() 2864 codegen->Load32BitValue(out, value); in GenLeadingZeros() 2968 codegen->Load32BitValue(out, value); in GenTrailingZeros()
|
D | code_generator_x86.h | 623 void Load32BitValue(Register dest, int32_t value);
|
D | code_generator_x86_64.cc | 475 x86_64_codegen->Load32BitValue( in EmitNativeCode() 1976 Load32BitValue(dest, GetInt32ValueOf(constant)); in Move() 1992 Load32BitValue(dest, static_cast<int32_t>(value)); in Move() 3711 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion() 3724 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion() 3737 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion() 6439 codegen_->Load32BitValue(dest, fp_value); in EmitMove() 8254 void CodeGeneratorX86_64::Load32BitValue(CpuRegister dest, int32_t value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64 8274 void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, int32_t value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64 8290 void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, float value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64 [all …]
|
D | intrinsics_x86_64.cc | 399 codegen_->Load32BitValue(out, kPrimIntMax); in VisitMathRoundFloat() 2872 codegen->Load32BitValue(out, result); in GenBitCount() 2942 codegen->Load32BitValue(out, 1 << value); in GenOneBit() 3065 codegen->Load32BitValue(out, value); in GenLeadingZeros() 3138 codegen->Load32BitValue(out, value); in GenTrailingZeros()
|
D | code_generator_x86.cc | 437 x86_codegen->Load32BitValue( in EmitNativeCode() 9172 void CodeGeneratorX86::Load32BitValue(Register dest, int32_t value) { in Load32BitValue() function in art::x86::CodeGeneratorX86
|