Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for reAssemble (0.17 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    		}
    	}
    	if toPad <= 0 {
    		return c
    	}
    
    	return noppad(ctxt, s, c, toPad)
    }
    
    // reAssemble is called if an instruction's size changes during assembly. If
    // it does and the instruction is a standalone or a macro-fused jump we need to
    // reassemble.
    func (pjc padJumpsCtx) reAssemble(p *obj.Prog) bool {
    	if pjc == 0 {
    		return false
    	}
    
    	fj, _ := fusedJump(p)
    	return fj || isJump(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top