Searched defs:vreg (Results 1 - 13 of 13) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h36 /// to a register allocation solution. (i.e. The PBQP-node <--> vreg map,
49 /// and the set of allowed pregs for the vreg.
55 void recordVReg(unsigned vreg, PBQP::Graph::NodeItr node, argument
58 assert(vreg2Node.find(vreg) == vreg2Node.end() && "Re-mapping vreg.");
59 assert(allowedSets[vreg].empty() && "vreg already has pregs.");
61 node2VReg[node] = vreg;
62 vreg2Node[vreg] = node;
63 std::copy(arBegin, arEnd, std::back_inserter(allowedSets[vreg]));
74 isPRegOption(unsigned vreg, unsigned option) const argument
82 isSpillOption(unsigned vreg, unsigned option) const argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm.c285 void *vreg = c->vreg; local
290 c->vreg = vreg;
311 c->vreg = rzalloc_array(c, struct brw_wm_value, BRW_WM_MAX_VREG);
H A Dbrw_wm.h225 struct brw_wm_value *vreg; member in struct:brw_wm_compile
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm.c285 void *vreg = c->vreg; local
290 c->vreg = vreg;
311 c->vreg = rzalloc_array(c, struct brw_wm_value, BRW_WM_MAX_VREG);
H A Dbrw_wm.h225 struct brw_wm_value *vreg; member in struct:brw_wm_compile
/external/llvm/lib/CodeGen/
H A DRegAllocPBQP.cpp143 /// \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 { argument
183 assert(isPRegOption(vreg, optio
213 unsigned vreg = *vregItr; local
483 unsigned vreg = problem.getVRegForNode(node); local
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_generic_reg_alloc2.c107 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:__anon27585
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 whic
353 HReg rreg, vreg, vregS, vregD; local
[all...]
H A Dhost_x86_defs.c1751 /* The given instruction reads the specified vreg exactly once, and
1752 that vreg is currently located at the given spill offset. If
1756 X86Instr* directReload_X86( X86Instr* i, HReg vreg, Short spill_off ) argument
1760 /* Deal with form: src=RMI_Reg, dst=Reg where src == vreg
1767 && i->Xin.Alu32R.src->Xrmi.Reg.reg == vreg) {
1768 vassert(i->Xin.Alu32R.dst != vreg);
1776 /* Deal with form: src=RMI_Imm, dst=Reg where dst == vreg
1782 && i->Xin.Alu32R.dst == vreg) {
1795 && i->Xin.Push.src->Xrmi.Reg.reg == vreg) {
1801 /* Deal with form: CMov32(src=RM_Reg, dst) where vreg
[all...]
/external/chromium_org/v8/src/
H A Dlithium-allocator.cc867 int vreg = GetVirtualRegister(); local
869 cur_input->set_virtual_register(vreg);
2057 int vreg = GetVirtualRegister(); local
2059 LiveRange* result = LiveRangeFor(vreg);
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc668 int vreg = allocator_->GetVirtualRegister(); local
671 vreg = 0;
673 operand->set_virtual_register(vreg);
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc733 int vreg = allocator_->GetVirtualRegister(); local
736 vreg = 0;
738 operand->set_virtual_register(vreg);
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc673 int vreg = allocator_->GetVirtualRegister(); local
676 vreg = 0;
678 operand->set_virtual_register(vreg);
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc677 int vreg = allocator_->GetVirtualRegister(); local
680 vreg = 0;
682 operand->set_virtual_register(vreg);

Completed in 602 milliseconds