Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addrUsesGlobal (0.19 sec)

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

    		return false
    	}
    	if p.As == ALEAQ {
    		// The GOT entry is placed directly in the destination register; R15 is not used.
    		return false
    	}
    	return addrUsesGlobal(&p.From) || addrUsesGlobal(&p.To) || addrUsesGlobal(p.GetFrom3())
    }
    
    type rwMask int
    
    const (
    	readFrom rwMask = 1 << iota
    	readTo
    	readReg
    	readFrom3
    	writeFrom
    	writeTo
    	writeReg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
Back to top