HomeSort by relevance Sort by last modified time
    Searched defs:temp_reg (Results 1 - 12 of 12) sorted by null

  /art/compiler/dex/quick/
gen_loadstore.cc 58 RegStorage temp_reg = zero_reg; local
59 if (!temp_reg.Valid()) {
60 temp_reg = AllocTemp();
61 LoadConstant(temp_reg, 0);
65 OpRegCopy(RegStorage::Solo32(promotion_map_[pmap_index].core_reg), temp_reg); local
69 StoreBaseDisp(TargetPtrReg(kSp), SRegOffset(rl_dest.s_reg_low), temp_reg, k32, kNotVolatile); local
72 FreeTemp(temp_reg);
  /art/compiler/dex/quick/x86/
fp_x86.cc 220 RegStorage temp_reg = AllocTempSingle(); local
223 NewLIR2(kX86Cvtsi2ssRR, temp_reg.GetReg(), rl_result.reg.GetReg());
224 NewLIR2(kX86ComissRR, rl_src.reg.GetReg(), temp_reg.GetReg());
241 RegStorage temp_reg = AllocTempDouble(); local
244 NewLIR2(kX86Cvtsi2sdRR, temp_reg.GetReg(), rl_result.reg.GetReg());
245 NewLIR2(kX86ComisdRR, rl_src.reg.GetReg(), temp_reg.GetReg());
279 RegStorage temp_reg = AllocTempSingle(); local
283 NewLIR2(kX86Cvtsqi2ssRR, temp_reg.GetReg(), rl_result.reg.GetReg());
284 NewLIR2(kX86ComissRR, rl_src.reg.GetReg(), temp_reg.GetReg());
304 RegStorage temp_reg = AllocTempDouble() local
    [all...]
int_x86.cc 40 RegStorage temp_reg = AllocTemp(); local
43 NewLIR2(kX86Set8R, temp_reg.GetReg(), kX86CondL); // temp = (src1 >= src2) ? 0 : 1
44 NewLIR2(kX86Sub8RR, rl_result.reg.GetReg(), temp_reg.GetReg());
48 FreeTemp(temp_reg);
176 RegStorage temp_reg = AllocTempDouble(); local
177 NewLIR2(kX86MovsdRR, temp_reg.GetReg(), r_src.GetReg());
178 NewLIR2(kX86PsrlqRI, temp_reg.GetReg(), 32);
179 NewLIR2(kX86MovdrxRR, r_dest.GetHighReg(), temp_reg.GetReg());
191 RegStorage temp_reg = AllocTemp(); local
192 OpRegCopy(temp_reg, r_dest.GetHigh())
239 RegStorage temp_reg = AllocTypedTemp(false, dest_reg_class, false); local
1595 RegStorage temp_reg = AllocTemp(); local
2009 RegStorage temp_reg = AllocTemp(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.c 182 unsigned temp_reg; member in struct:r600_shader_ctx
887 return ctx->temp_reg + ctx->max_driver_temp_used++;
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 182 unsigned temp_reg; member in struct:r600_shader_ctx
887 return ctx->temp_reg + ctx->max_driver_temp_used++;
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 2307 LOperand* temp_reg = TempRegister(); local
    [all...]
lithium-codegen-ia32.cc 4782 Register temp_reg = ToRegister(temp); local
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-x64.cc 2282 LOperand* temp_reg = TempRegister(); local
    [all...]
  /external/chromium_org/v8/src/x87/
lithium-x87.cc 2292 LOperand* temp_reg = TempRegister(); local
    [all...]
lithium-codegen-x87.cc 4752 Register temp_reg = ToRegister(temp); local
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 5184 DwVfpRegister temp_reg = ToDoubleRegister(instr->temp()); local
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.cc 5186 DoubleRegister temp_reg = ToDoubleRegister(instr->temp()); local
5202 DoubleRegister temp_reg = ToDoubleRegister(instr->temp()); local
    [all...]

Completed in 3203 milliseconds