Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for asmvex (0.29 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    type asmFunc struct {
    	arch        *asmArch
    	size        int // size of all arguments
    	vars        map[string]*asmVar
    	varByOffset map[int]*asmVar
    }
    
    // An asmVar describes a single assembly variable.
    type asmVar struct {
    	name  string
    	kind  asmKind
    	typ   string
    	off   int
    	size  int
    	inner []*asmVar
    }
    
    var (
    	asmArch386      = asmArch{name: "386", bigEndian: false, stack: "SP", lr: false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    		p.errorf("%s: expected immediate constant; found %s", pseudo, obj.Dconv(&emptyProg, addr))
    		return false
    	}
    	return true
    }
    
    // asmText assembles a TEXT pseudo-op.
    // TEXT runtimeĀ·sigtramp(SB),4,$0-0
    func (p *Parser) asmText(operands [][]lex.Token) {
    	if len(operands) != 2 && len(operands) != 3 {
    		p.errorf("expect two or three operands for TEXT")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top