Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for cmpsym (0.19 sec)

  1. src/cmd/internal/obj/ppc64/obj9.go

    		return
    	}
    	obj.Nopout(p)
    }
    
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	// TODO(minux): add morestack short-cuts with small fixed frame-size.
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	c := ctxt9{ctxt: ctxt, cursym: cursym, newprog: newprog}
    
    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    				ab.Put1(byte(op))
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Z_m_r:
    				ab.Put1(byte(op))
    				ab.asmand(ctxt, cursym, p, p.GetFrom3(), &p.To)
    
    			case Zm2_r:
    				ab.Put2(byte(op), o.op[z+1])
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Zm_r_xm:
    				ab.mediaop(ctxt, o, op, int(yt.zoffset), z)
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Zm_r_xm_nr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/asm.go

    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    
    		if !rescan {
    			break
    		}
    	}
    
    	pc += -pc & (FuncAlign - 1)
    	c.cursym.Size = pc
    
    	// lay out the code, emitting code and data relocations.
    
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	var i int32
    	var out [5]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    	}
    	if c.ctxt.Arch.Family == sys.MIPS64 {
    		pc += -pc & (mips64FuncAlign - 1)
    	}
    	c.cursym.Size = pc
    
    	/*
    	 * lay out the code, emitting code and data relocations.
    	 */
    
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	var i int32
    	var out [4]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/util.go

    // p:  a PCALIGN or PCALIGNMAX prog
    // ctxt: the context, for current function
    // cursym: current function being assembled
    // returns number of bytes of padding needed,
    // updates minimum alignment for the function.
    func AlignmentPadding(pc int32, p *Prog, ctxt *Link, cursym *LSym) int {
    	v := AlignmentPaddingLength(pc, p, ctxt)
    	requireAlignment(p.From.Offset, ctxt, cursym)
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    						falign = 32
    					}
    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    	}
    
    	c.cursym.Size = pc
    	c.cursym.Func().Align = falign
    	c.cursym.Grow(c.cursym.Size)
    
    	// lay out the code, emitting code and data relocations.
    
    	bp := c.cursym.P
    	var i int32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    				}
    			}
    		}
    		loop++
    	}
    
    	c.cursym.Size = int64(len(buffer))
    	if c.cursym.Size%funcAlign != 0 {
    		c.cursym.Size += funcAlign - (c.cursym.Size % funcAlign)
    	}
    	c.cursym.Grow(c.cursym.Size)
    	copy(c.cursym.P, buffer)
    
    	// Mark nonpreemptible instruction sequences.
    	// We use REGTMP as a scratch register during call injection,
    	// so instruction sequences that use REGTMP are unsafe to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    				}
    			}
    
    			pc += int64(m)
    		}
    	}
    
    	pc += -pc & (funcAlign - 1)
    	c.cursym.Size = pc
    
    	/*
    	 * lay out the code, emitting code and data relocations.
    	 */
    	c.cursym.Grow(c.cursym.Size)
    	bp := c.cursym.P
    	psz := int32(0)
    	var i int
    	var out [6]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    		sz := o.size(c.ctxt, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/objfile.go

    	pkglist []string // list of packages referenced, indexed by ctxt.pkgIdx
    
    	// scratch space for writing (the Write methods escape
    	// as they are interface calls)
    	tmpSym      goobj.Sym
    	tmpReloc    goobj.Reloc
    	tmpAux      goobj.Aux
    	tmpHash64   goobj.Hash64Type
    	tmpHash     goobj.HashType
    	tmpRefFlags goobj.RefFlags
    	tmpRefName  goobj.RefName
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller_base.go

    // The method also removes any external PV Deletion Protection finalizers added on the PV, this represents CSI migration
    // rollback/disable scenarios.
    func modifyDeletionFinalizers(logger klog.Logger, cmpm CSIMigratedPluginManager, volume *v1.PersistentVolume) ([]string, bool) {
    	modified := false
    	var outFinalizers []string
    	if !utilfeature.DefaultFeatureGate.Enabled(features.HonorPVReclaimPolicy) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top