Lines Matching defs:Funcode
326 type Funcode struct { struct
327 Prog *Program
328 Pos syntax.Position // position of def or lambda token
329 Name string // name of this function
330 Doc string // docstring of this function
331 Code []byte // the byte code
332 pclinetab []uint16 // mapping from pc to linenum
333 Locals []Binding // locals, parameters first
334 Cells []int // indices of Locals that require cells
335 Freevars []Binding // for tracing
336 MaxStack int
337 NumParams int
338 NumKwonlyParams int
339 HasVarargs, HasKwargs bool
343 lntOnce sync.Once
344 lnt []pclinecol // decoded line number table
404 func (fn *Funcode) Position(pc uint32) syntax.Position {
436 func (fn *Funcode) decodeLNT() {
858 func PrintOp(fn *Funcode, pc uint32, op Opcode, arg uint32) {