Home | History | Annotate | Download | only in priv

Lines Matching refs:HInstr

175    Bool         (*isMove)       ( HInstr*, HReg*, HReg* );
176 void (*getRegUsage) ( HRegUsage*, HInstr*, Bool );
177 void (*mapRegs) ( HRegRemap*, HInstr*, Bool );
178 void (*genSpill) ( HInstr**, HInstr**, HReg, Int, Bool );
179 void (*genReload) ( HInstr**, HInstr**, HReg, Int, Bool );
180 HInstr* (*directReload) ( HInstr*, HReg, Short );
181 void (*ppInstr) ( HInstr*, Bool );
185 Int (*emit) ( UChar*, Int, HInstr*, Bool, void* );
240 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_X86Instr;
241 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool))
243 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_X86Instr;
244 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
246 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
248 directReload = (HInstr*(*)(HInstr*,HReg,Short)) directReload_X86;
249 ppInstr = (void(*)(HInstr*, Bool)) ppX86Instr;
252 emit = (Int(*)(UChar*,Int,HInstr*,Bool,void*)) emit_X86Instr;
263 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_AMD64Instr;
264 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool))
266 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_AMD64Instr;
267 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
269 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
271 ppInstr = (void(*)(HInstr*, Bool)) ppAMD64Instr;
274 emit = (Int(*)(UChar*,Int,HInstr*,Bool,void*)) emit_AMD64Instr;
285 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_PPCInstr;
286 getRegUsage = (void(*)(HRegUsage*,HInstr*,Bool)) getRegUsage_PPCInstr;
287 mapRegs = (void(*)(HRegRemap*,HInstr*,Bool)) mapRegs_PPCInstr;
288 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_PPC;
289 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_PPC;
290 ppInstr = (void(*)(HInstr*,Bool)) ppPPCInstr;
293 emit = (Int(*)(UChar*,Int,HInstr*,Bool,void*)) emit_PPCInstr;
304 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_PPCInstr;
305 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool)) getRegUsage_PPCInstr;
306 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_PPCInstr;
307 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_PPC;
308 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_PPC;
309 ppInstr = (void(*)(HInstr*, Bool)) ppPPCInstr;
312 emit = (Int(*)(UChar*,Int,HInstr*,Bool,void*)) emit_PPCInstr;
323 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_ARMInstr;
324 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool)) getRegUsage_ARMInstr;
325 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_ARMInstr;
326 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_ARM;
327 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_ARM;
328 ppInstr = (void(*)(HInstr*, Bool)) ppARMInstr;
331 emit = (Int(*)(UChar*,Int,HInstr*,Bool,void*)) emit_ARMInstr;