- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for asmPCAlign (0.06 sec)
-
src/cmd/asm/internal/asm/asm.go
prog := &obj.Prog{ Ctxt: p.ctxt, As: obj.APCDATA, Pos: p.pos(), From: key, To: value, } p.append(prog, "", true) } // asmPCAlign assembles a PCALIGN pseudo-op. // PCALIGN $16 func (p *Parser) asmPCAlign(operands [][]lex.Token) { if len(operands) != 1 { p.errorf("expect one operand for PCALIGN") return } // Operand 0 must be an immediate constant.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
switch word { case "DATA": p.asmData(operands) case "FUNCDATA": p.asmFuncData(operands) case "GLOBL": p.asmGlobl(operands) case "PCDATA": p.asmPCData(operands) case "PCALIGN": p.asmPCAlign(operands) case "TEXT": p.asmText(operands) default: return false } return true } // symDefRef scans a line for potential text symbol definitions and
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 37.3K bytes - Viewed (0)