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

  /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...]
  /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);
codegen_util.cc     [all...]
mir_to_lir.h     [all...]
  /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
    [all...]
codegen_x86.h     [all...]
utility_x86.cc     [all...]
  /art/compiler/dex/quick/arm64/
int_arm64.cc 287 LIR* Arm64Mir2Lir::OpCmpMemImmBranch(ConditionCode cond, RegStorage temp_reg,
292 // Always compare 32-bit value no matter what temp_reg is.
293 if (temp_reg.Is64Bit()) {
294 temp_reg = As32BitReg(temp_reg);
296 Load32Disp(base_reg, offset, temp_reg);
297 LIR* branch = OpCmpImmBranch(cond, temp_reg, check_value, target);
    [all...]
codegen_arm64.h 93 LIR* OpCmpMemImmBranch(ConditionCode cond, RegStorage temp_reg, RegStorage base_reg,
  /external/chromium_org/v8/src/ia32/
lithium-codegen-ia32.cc 4821 Register temp_reg = ToRegister(temp); local
    [all...]
lithium-ia32.cc 2348 LOperand* temp_reg = TempRegister(); local
    [all...]
  /external/chromium_org/v8/src/x87/
lithium-codegen-x87.cc 5330 Register temp_reg = ToRegister(temp); local
    [all...]
lithium-x87.cc 2352 LOperand* temp_reg = TempRegister(); local
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.cc 5222 DoubleRegister temp_reg = ToDoubleRegister(instr->temp()); local
5238 DoubleRegister temp_reg = ToDoubleRegister(instr->temp()); local
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-x64.cc 2336 LOperand* temp_reg = TempRegister(); local
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 5270 DwVfpRegister temp_reg = ToDoubleRegister(instr->temp()); local
    [all...]
  /external/chromium_org/v8/src/mips64/
lithium-codegen-mips64.cc 5253 DoubleRegister temp_reg = ToDoubleRegister(instr->temp()); local
5269 DoubleRegister temp_reg = ToDoubleRegister(instr->temp()); local
    [all...]

Completed in 962 milliseconds