Home | History | Annotate | Download | only in priv

Lines Matching refs:HInstr

193    Bool         (*isMove)       ( HInstr*, HReg*, HReg* );
194 void (*getRegUsage) ( HRegUsage*, HInstr*, Bool );
195 void (*mapRegs) ( HRegRemap*, HInstr*, Bool );
196 void (*genSpill) ( HInstr**, HInstr**, HReg, Int, Bool );
197 void (*genReload) ( HInstr**, HInstr**, HReg, Int, Bool );
198 HInstr* (*directReload) ( HInstr*, HReg, Short );
199 void (*ppInstr) ( HInstr*, Bool );
204 UChar*, Int, HInstr*, Bool,
279 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_X86Instr;
280 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool))
282 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_X86Instr;
283 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
285 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
287 directReload = (HInstr*(*)(HInstr*,HReg,Short)) directReload_X86;
288 ppInstr = (void(*)(HInstr*, Bool)) ppX86Instr;
291 emit = (Int(*)(Bool*,UChar*,Int,HInstr*,Bool,
303 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_AMD64Instr;
304 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool))
306 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_AMD64Instr;
307 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
309 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool))
311 ppInstr = (void(*)(HInstr*, Bool)) ppAMD64Instr;
314 emit = (Int(*)(Bool*,UChar*,Int,HInstr*,Bool,
326 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_PPCInstr;
327 getRegUsage = (void(*)(HRegUsage*,HInstr*,Bool)) getRegUsage_PPCInstr;
328 mapRegs = (void(*)(HRegRemap*,HInstr*,Bool)) mapRegs_PPCInstr;
329 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_PPC;
330 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_PPC;
331 ppInstr = (void(*)(HInstr*,Bool)) ppPPCInstr;
334 emit = (Int(*)(Bool*,UChar*,Int,HInstr*,Bool,
346 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_PPCInstr;
347 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool)) getRegUsage_PPCInstr;
348 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_PPCInstr;
349 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_PPC;
350 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_PPC;
351 ppInstr = (void(*)(HInstr*, Bool)) ppPPCInstr;
354 emit = (Int(*)(Bool*,UChar*,Int,HInstr*,Bool,
366 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_S390Instr;
367 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool)) getRegUsage_S390Instr;
368 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_S390Instr;
369 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_S390;
370 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_S390;
371 ppInstr = (void(*)(HInstr*, Bool)) ppS390Instr;
374 emit = (Int(*)(Bool*,UChar*,Int,HInstr*,Bool,
385 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_ARMInstr;
386 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool)) getRegUsage_ARMInstr;
387 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_ARMInstr;
388 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_ARM;
389 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_ARM;
390 ppInstr = (void(*)(HInstr*, Bool)) ppARMInstr;
393 emit = (Int(*)(Bool*,UChar*,Int,HInstr*,Bool,
405 isMove = (Bool(*)(HInstr*,HReg*,HReg*)) isMove_MIPSInstr;
406 getRegUsage = (void(*)(HRegUsage*,HInstr*, Bool)) getRegUsage_MIPSInstr;
407 mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_MIPSInstr;
408 genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_MIPS;
409 genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_MIPS;
410 ppInstr = (void(*)(HInstr*, Bool)) ppMIPSInstr;
413 HInstr*,Bool,
818 HInstr* hi = rcode->arr[i];