Searched defs:SSARef (Results 1 – 5 of 5) sorted by relevance
| /external/mesa3d/src/nouveau/compiler/nak/ |
| D | builder.rs | 120 fn alloc_ssa(&mut self, file: RegFile, comps: u8) -> SSARef; in alloc_ssa() 122 fn shl(&mut self, x: Src, shift: Src) -> SSARef { in shl() 146 fn shr(&mut self, x: Src, shift: Src, signed: bool) -> SSARef { in shr() 171 fn fadd(&mut self, x: Src, y: Src) -> SSARef { in fadd() 183 fn fmul(&mut self, x: Src, y: Src) -> SSARef { in fmul() 196 fn fset(&mut self, cmp_op: FloatCmpOp, x: Src, y: Src) -> SSARef { in fset() 207 fn fsetp(&mut self, cmp_op: FloatCmpOp, x: Src, y: Src) -> SSARef { in fsetp() 220 fn dsetp(&mut self, cmp_op: FloatCmpOp, x: Src, y: Src) -> SSARef { in dsetp() 232 fn iabs(&mut self, i: Src) -> SSARef { in iabs() 253 fn iadd(&mut self, x: Src, y: Src, z: Src) -> SSARef { in iadd() [all …]
|
| D | opt_copy_prop.rs | 35 fn add_fp64_copy(&mut self, dst: &SSARef, src: Src) { in add_fp64_copy()
|
| D | ir.rs | 462 pub struct SSARef { struct 466 impl SSARef { argument 469 fn new(comps: &[SSAValue]) -> SSARef { in new() 493 impl HasRegFile for SSARef { implementation 503 impl Deref for SSARef { implementation 512 impl DerefMut for SSARef { implementation 519 impl TryFrom<&[SSAValue]> for SSARef { implementation 533 impl TryFrom<Vec<SSAValue>> for SSARef { implementation 555 impl From<SSAValue> for SSARef { implementation 561 impl fmt::Display for SSARef { implementation [all …]
|
| D | assign_regs.rs | 60 fn add_vec_use(&mut self, ip: usize, vec: SSARef) { in add_vec_use() 399 pub fn assign_pin_vec_reg(&mut self, vec: SSARef, reg: u32) -> RegRef { in assign_pin_vec_reg()
|
| D | from_nir.rs | 296 fn get_ssa_comp(&mut self, def: &nir_def, c: u8) -> (SSARef, u8) { in get_ssa_comp() 336 fn set_dst(&mut self, def: &nir_def, ssa: SSARef) { in set_dst()
|