Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_x86_64.h580 void Load32BitValue(CpuRegister dest, int32_t value);
582 void Load32BitValue(XmmRegister dest, int32_t value);
584 void Load32BitValue(XmmRegister dest, float value);
Dintrinsics_x86.cc540 codegen->Load32BitValue(out_loc.AsRegisterPairLow<Register>(), 0); in GenLowestOneBit()
541 codegen->Load32BitValue(out_loc.AsRegisterPairHigh<Register>(), 1 << shift); in GenLowestOneBit()
543 codegen->Load32BitValue(out_loc.AsRegisterPairLow<Register>(), 1 << value); in GenLowestOneBit()
544 codegen->Load32BitValue(out_loc.AsRegisterPairHigh<Register>(), 0); in GenLowestOneBit()
547 codegen->Load32BitValue(out_loc.AsRegister<Register>(), 1 << value); in GenLowestOneBit()
2205 codegen->Load32BitValue(out, result); in GenBitCount()
2274 codegen->Load32BitValue(out, value); in GenLeadingZeros()
2378 codegen->Load32BitValue(out, value); in GenTrailingZeros()
Dintrinsics_x86_64.cc343 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()
Dcode_generator_x86.h537 void Load32BitValue(Register dest, int32_t value);
Dcode_generator_x86_64.cc412 x86_64_codegen->Load32BitValue( in EmitNativeCode()
1557 Load32BitValue(dest, GetInt32ValueOf(constant)); in Move()
1573 Load32BitValue(dest, static_cast<int32_t>(value)); in Move()
3222 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion()
3235 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion()
3248 codegen_->Load32BitValue(dest, static_cast<float>(v)); in VisitTypeConversion()
5885 codegen_->Load32BitValue(dest, fp_value); in EmitMove()
7590 void CodeGeneratorX86_64::Load32BitValue(CpuRegister dest, int32_t value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64
7610 void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, int32_t value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64
7626 void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, float value) { in Load32BitValue() function in art::x86_64::CodeGeneratorX86_64
[all …]
Dcode_generator_x86.cc401 x86_codegen->Load32BitValue( in EmitNativeCode()
8549 void CodeGeneratorX86::Load32BitValue(Register dest, int32_t value) { in Load32BitValue() function in art::x86::CodeGeneratorX86