Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setScm (0.07 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SETBCR [1] (FlagGT)) => (MOVDconst [0])
    (SETBCR [1] (Flag(LT|EQ))) => (MOVDconst [1])
    (SETBCR [2] (FlagEQ)) => (MOVDconst [0])
    (SETBCR [2] (Flag(LT|GT))) => (MOVDconst [1])
    
    (SETBC [0] (InvertFlags bool)) => (SETBC [1] bool)
    (SETBC [1] (InvertFlags bool)) => (SETBC [0] bool)
    (SETBC [2] (InvertFlags bool)) => (SETBC [2] bool)
    
    (SETBCR [0] (InvertFlags bool)) => (SETBCR [1] bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    			if p.From.Type == obj.TYPE_REG && p.From.Reg == REG_LR {
    				return true
    			}
    		}
    	}
    
    	return false
    }
    
    // setPCs sets the Pc field in all instructions reachable from p.
    // It uses pc as the initial value and returns the next available pc.
    func setPCs(p *obj.Prog, pc int64) int64 {
    	for ; p != nil; p = p.Link {
    		p.Pc = pc
    		for _, ins := range instructionsForProg(p) {
    			pc += int64(ins.length())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    func (rel Reloc) SetType(t objabi.RelocType) { rel.Reloc.SetType(uint16(t)) }
    func (rel Reloc) Sym() Sym                   { return rel.l.resolve(rel.r, rel.Reloc.Sym()) }
    func (rel Reloc) SetSym(s Sym)               { rel.Reloc.SetSym(goobj.SymRef{PkgIdx: 0, SymIdx: uint32(s)}) }
    func (rel Reloc) IsMarker() bool             { return rel.Siz() == 0 }
    
    // Aux holds a "handle" to access an aux symbol record from an
    // object file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top