Home | History | Annotate | Download | only in gc

Lines Matching defs:nod

355 func nod(op Op, nleft *Node, nright *Node) *Node {
382 n := nod(op, left, nil)
391 norig := nod(n.Op, nil, nil)
426 c := nod(OLITERAL, nil, nil)
436 c := nod(OLITERAL, nil, nil)
988 r := nod(OCONVNOP, n, nil)
1007 r := nod(op, n, nil)
1302 r := nod(OXXX, nil, nil)
1314 a := nod(OXXX, nil, nil)
1326 a := nod(OXXX, nil, nil)
1348 a := nod(OAS, l, n)
1676 a := nod(ODCLFIELD, n, typenod(t.Type))
1728 this := nod(ODCLFIELD, newname(lookup(".this")), typenod(rcvr))
1733 t := nod(OTFUNC, nil, nil)
1742 pad := nod(ODCLFIELD, newname(lookup(".pad")), typenod(tpad))
1749 fn := nod(ODCLFUNC, nil, nil)
1770 n := nod(OIF, nil, nil)
1772 n.Left = nod(OEQ, this.Left, nodnil())
1785 call := nod(OCALL, syslook("panicwrap"), nil)
1805 dot = nod(OADDR, dot, nil)
1807 as := nod(OAS, this.Left, nod(OCONVNOP, dot, nil))
1810 n := nod(ORETJMP, nil, nil)
1817 call := nod(OCALL, dot, nil)
1821 n := nod(ORETURN, nil, nil)
1859 tfn := nod(OTFUNC, nil, nil)
1860 tfn.List.Append(nod(ODCLFIELD, nil, typenod(ptrto(t))))
1861 tfn.List.Append(nod(ODCLFIELD, nil, typenod(Types[TUINTPTR])))
1862 tfn.List.Append(nod(ODCLFIELD, nil, typenod(Types[TUINTPTR])))
1863 tfn.Rlist.Append(nod(ODCLFIELD, nil, typenod(Types[TUINTPTR])))
2005 n := nod(OBLOCK, nil, nil)
2111 n = nod(OCONVNOP, n, nil)
2172 x = nod(OITAB, x, nil)
2176 n := nod(OCHECKNIL, x, nil)
2228 ind := nod(OIND, ptr, nil)