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

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm.c 285 void *vreg = c->vreg; local
290 c->vreg = vreg;
311 c->vreg = rzalloc_array(c, struct brw_wm_value, BRW_WM_MAX_VREG);
brw_wm.h 225 struct brw_wm_value *vreg; member in struct:brw_wm_compile
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm.c 285 void *vreg = c->vreg; local
290 c->vreg = vreg;
311 c->vreg = rzalloc_array(c, struct brw_wm_value, BRW_WM_MAX_VREG);
brw_wm.h 225 struct brw_wm_value *vreg; member in struct:brw_wm_compile
  /external/valgrind/main/VEX/priv/
host_generic_reg_alloc2.c 107 vreg. Is safely left at False, and becomes True after a
113 Bound /* in use (holding value of some vreg) */
116 /* If .disp == Bound, what vreg is it bound to? */
117 HReg vreg; member in struct:__anon29060
123 (vreg_state) from vreg numbers back to entries in rreg_state. It
125 hregNumber(rreg_state[j].vreg) == i -- that is, the two entries
127 which involve looking for a particular vreg: there is no need to
129 vreg_state. The FAQ "does this vreg already have an associated
132 To indicate, in vreg_state[i], that a given vreg is not currently
165 finding the vreg which is mentioned as far ahead as possible, i
353 HReg rreg, vreg, vregS, vregD; local
    [all...]
  /art/runtime/
stack.h 41 // The kind of vreg being accessed in calls to Set/GetVReg.
58 // - JNI - just VRegs, but where every VReg holds a reference.
127 const uint32_t* vreg = &vregs_[i]; local
128 return *reinterpret_cast<const int32_t*>(vreg);
134 const uint32_t* vreg = &vregs_[i]; local
135 return *reinterpret_cast<const float*>(vreg);
140 const uint32_t* vreg = &vregs_[i]; local
141 return *reinterpret_cast<const int64_t*>(vreg);
146 const uint32_t* vreg = &vregs_[i]; local
147 return *reinterpret_cast<const double*>(vreg);
155 const uint32_t* vreg = &vregs_[i]; local
167 uint32_t* vreg = &vregs_[i]; local
173 uint32_t* vreg = &vregs_[i]; local
179 uint32_t* vreg = &vregs_[i]; local
185 uint32_t* vreg = &vregs_[i]; local
191 uint32_t* vreg = &vregs_[i]; local
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocPBQP.cpp 143 /// \brief Finds the initial set of vreg intervals to allocate.
163 assert(vregItr != node2VReg.end() && "No vreg for node.");
167 PBQP::Graph::NodeItr PBQPRAProblem::getNodeForVReg(unsigned vreg) const {
168 VReg2Node::const_iterator nodeItr = vreg2Node.find(vreg);
169 assert(nodeItr != vreg2Node.end() && "No node for vreg.");
175 PBQPRAProblem::getAllowedSet(unsigned vreg) const {
176 AllowedSetMap::const_iterator allowedSetItr = allowedSets.find(vreg);
177 assert(allowedSetItr != allowedSets.end() && "No pregs for vreg.");
182 unsigned PBQPRAProblem::getPRegForOption(unsigned vreg, unsigned option) const {
183 assert(isPRegOption(vreg, option) && "Not a preg option.")
213 unsigned vreg = *vregItr; local
483 unsigned vreg = problem.getVRegForNode(node); local
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator.cc 862 int vreg = GetVirtualRegister(); local
864 cur_input->set_virtual_register(vreg);
2044 int vreg = GetVirtualRegister(); local
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.cc 648 int vreg = allocator_->GetVirtualRegister(); local
651 vreg = 0;
653 operand->set_virtual_register(vreg);
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 701 int vreg = allocator_->GetVirtualRegister(); local
704 vreg = 0;
706 operand->set_virtual_register(vreg);
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.cc 653 int vreg = allocator_->GetVirtualRegister(); local
656 vreg = 0;
658 operand->set_virtual_register(vreg);
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-x64.cc 657 int vreg = allocator_->GetVirtualRegister(); local
660 vreg = 0;
662 operand->set_virtual_register(vreg);
    [all...]

Completed in 408 milliseconds