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

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_reg_allocate.cpp 291 * - When we call this function from spill_reg(), we pass in scratch_reg the
298 * In either case, we check if the previous instructions read scratch_reg until
300 * scratch_reg at all.
304 unsigned scratch_reg)
309 /* See if any previous source in the same instructions reads scratch_reg */
311 if (inst->src[n].file == VGRF && inst->src[n].nr == scratch_reg)
315 /* Now check if previous instructions read/write scratch_reg */
320 /* If the previous instruction writes to scratch_reg then we can reuse
324 if (prev_inst->dst.file == VGRF && prev_inst->dst.nr == scratch_reg) {
331 * other registers (that won't read/write scratch_reg) do not stop us fro
524 int scratch_reg = -1; local
    [all...]
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc 2419 Register scratch_reg = pop_reg.is(ecx) ? edx : ecx; local
    [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc 2601 Register scratch_reg = pop_reg.is(rcx) ? rdx : rcx; local
    [all...]
  /external/v8/src/compiler/x87/
code-generator-x87.cc 2536 Register scratch_reg = pop_reg.is(ecx) ? edx : ecx; local
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 1965 Register scratch_reg = ToRegister(instr->temp()); local
1972 __ or_(MemOperand(esp, 0), scratch_reg); local
    [all...]

Completed in 162 milliseconds