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

  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 65 unsigned sub, hreg, hsub; local
68 hreg = mi->getOperand(1).getReg();
72 hreg = mi->getOperand(0).getReg();
76 if (!hreg)
79 if (TargetRegisterInfo::isVirtualRegister(hreg))
80 return sub == hsub ? hreg : 0;
86 return rc->contains(hreg) ? hreg : 0;
88 // reg:sub should match the physreg hreg.
89 return tri.getMatchingSuperReg(hreg, sub, rc)
    [all...]
  /external/valgrind/main/VEX/priv/
host_generic_regs.c 57 void ppHReg ( HReg r )
90 ppHReg(tab->hreg[i]);
101 void addHRegUse ( HRegUsage* tab, HRegMode mode, HReg reg )
106 if (tab->hreg[i] == reg)
111 tab->hreg[tab->n_used] = reg;
160 void addToHRegRemap ( HRegRemap* map, HReg orig, HReg replacement )
178 HReg lookupHRegRemap ( HRegRemap* map, HReg orig )
host_generic_regs.h 71 typedef UInt HReg;
109 /* Print an HReg in a generic (non-target-specific) way. */
110 extern void ppHReg ( HReg );
113 static inline HReg mkHReg ( UInt regno, HRegClass rc, Bool virtual ) {
122 static inline HRegClass hregClass ( HReg r ) {
129 static inline UInt hregNumber ( HReg r ) {
133 static inline Bool hregIsVirtual ( HReg r ) {
140 #define INVALID_HREG ((HReg)0xFFFFFFFF)
160 HReg hreg[N_HREG_USAGE] member in struct:__anon29064
    [all...]
host_generic_reg_alloc2.c 53 Note that state[].hreg is the same as the available real regs.
79 HReg rreg;
96 HReg rreg;
117 HReg vreg;
149 HReg r,
157 if (reg_usage.hreg[i] == r)
314 HReg* available_real_regs,
319 Bool (*isMove) ( HInstr*, HReg*, HReg* ),
334 void (*genSpill) ( HInstr**, HInstr**, HReg, Int, Bool )
    [all...]
host_s390_isel.c 54 - A mapping from IRTemp to HReg. This tells the insn selector
109 HReg *vregmap;
110 HReg *vregmapHI;
127 static HReg s390_isel_int_expr(ISelEnv *, IRExpr *);
131 static void s390_isel_int128_expr(HReg *, HReg *, ISelEnv *, IRExpr *);
132 static HReg s390_isel_float_expr(ISelEnv *, IRExpr *);
133 static void s390_isel_float128_expr(HReg *, HReg *, ISelEnv *, IRExpr *);
192 static HReg
2725 HReg hreg, hregHI; local
    [all...]
host_mips_isel.c 74 - A mapping from IRTemp to HReg. This tells the insn selector
83 32-bit virtual HReg, which holds the high half
113 HReg* vregmap;
114 HReg* vregmapHI;
129 static HReg lookupIRTemp(ISelEnv * env, IRTemp tmp)
136 static void lookupIRTemp64(HReg * vrHI, HReg * vrLO, ISelEnv * env, IRTemp tmp)
146 lookupIRTempPair(HReg * vrHI, HReg * vrLO, ISelEnv * env, IRTemp tmp)
165 static HReg newVRegI(ISelEnv * env
3162 HReg hreg, hregHI; local
    [all...]
host_amd64_isel.c 103 - A mapping from IRTemp to HReg. This tells the insn selector
112 64-bit virtual HReg, which holds the high half
143 HReg* vregmap;
144 HReg* vregmapHI;
159 static HReg lookupIRTemp ( ISelEnv* env, IRTemp tmp )
166 static void lookupIRTempPair ( HReg* vrHI, HReg* vrLO,
185 static HReg newVRegI ( ISelEnv* env )
187 HReg reg = mkHReg(env->vreg_ctr, HRcInt64, True/*virtual reg*/);
192 static HReg newVRegV ( ISelEnv* env
4199 HReg hreg, hregHI; local
    [all...]
host_x86_isel.c 138 - A mapping from IRTemp to HReg. This tells the insn selector
147 32-bit virtual HReg, which holds the high half
177 HReg* vregmap;
178 HReg* vregmapHI;
193 static HReg lookupIRTemp ( ISelEnv* env, IRTemp tmp )
200 static void lookupIRTemp64 ( HReg* vrHI, HReg* vrLO, ISelEnv* env, IRTemp tmp )
218 static HReg newVRegI ( ISelEnv* env )
220 HReg reg = mkHReg(env->vreg_ctr, HRcInt32, True/*virtual reg*/);
225 static HReg newVRegF ( ISelEnv* env
4240 HReg hreg, hregHI; local
    [all...]
host_arm_isel.c 75 - A mapping from IRTemp to HReg. This tells the insn selector
84 32-bit virtual HReg, which holds the high half
114 HReg* vregmap;
115 HReg* vregmapHI;
129 static HReg lookupIRTemp ( ISelEnv* env, IRTemp tmp )
136 static void lookupIRTemp64 ( HReg* vrHI, HReg* vrLO, ISelEnv* env, IRTemp tmp )
162 static HReg newVRegI ( ISelEnv* env )
164 HReg reg = mkHReg(env->vreg_ctr, HRcInt32, True/*virtual reg*/);
169 static HReg newVRegD ( ISelEnv* env
6171 HReg hreg, hregHI; local
    [all...]
host_x86_defs.c 47 void ppHRegX86 ( HReg reg )
79 HReg hregX86_EAX ( void ) { return mkHReg(0, HRcInt32, False); }
80 HReg hregX86_ECX ( void ) { return mkHReg(1, HRcInt32, False); }
81 HReg hregX86_EDX ( void ) { return mkHReg(2, HRcInt32, False); }
82 HReg hregX86_EBX ( void ) { return mkHReg(3, HRcInt32, False); }
83 HReg hregX86_ESP ( void ) { return mkHReg(4, HRcInt32, False); }
84 HReg hregX86_EBP ( void ) { return mkHReg(5, HRcInt32, False); }
85 HReg hregX86_ESI ( void ) { return mkHReg(6, HRcInt32, False); }
86 HReg hregX86_EDI ( void ) { return mkHReg(7, HRcInt32, False); }
88 HReg hregX86_FAKE0 ( void ) { return mkHReg(0, HRcFlt64, False);
    [all...]
  /external/pixman/pixman/
pixman-region.c 1590 region_type_t *hreg; \/* ri[j_half].reg *\/ local
    [all...]

Completed in 321 milliseconds