Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 86 for Disasm (0.3 sec)

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

    			f := c.cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				c.cursym.Func().FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", c.cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    }
    
    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/link/internal/ld/pcln.go

    	ldr := ctxt.loader
    	target := ctxt.Target
    	deferreturn := uint32(0)
    	lastWasmAddr := uint32(0)
    
    	relocs := ldr.Relocs(s)
    	for ri := 0; ri < relocs.Count(); ri++ {
    		r := relocs.At(ri)
    		if target.IsWasm() && r.Type() == objabi.R_ADDR {
    			// wasm/ssa.go generates an ARESUMEPOINT just
    			// before the deferreturn call. The "PC" of
    			// the deferreturn call is stored in the
    			// R_ADDR relocation on the ARESUMEPOINT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/obj6.go

    				f := cursym.Func()
    				if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    					f.FuncFlag |= abi.FuncFlagSPWrite
    					if ctxt.Debugvlog || !ctxt.IsAsm {
    						ctxt.Logf("auto-SPWRITE: %s %v\n", cursym.Name, p)
    						if !ctxt.IsAsm {
    							ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    							ctxt.DiagFlush()
    							log.Fatalf("bad SPWRITE")
    						}
    					}
    				}
    			}
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    	GenAbstractFunc    func(fn *LSym)
    	Errors             int
    
    	InParallel    bool // parallel backend phase in effect
    	UseBASEntries bool // use Base Address Selection Entries in location lists and PC ranges
    	IsAsm         bool // is the source assembly language, which may contain surprising idioms (e.g., call tables)
    	Std           bool // is standard library package
    
    	// state for writing objects
    	Text []*LSym
    	Data []*LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	order = append(order, &Segtext)
    	Segtext.Rwx = 05
    	Segtext.Vaddr = va
    	for i, s := range Segtext.Sections {
    		va = uint64(Rnd(int64(va), int64(s.Align)))
    		s.Vaddr = va
    		va += s.Length
    
    		if ctxt.IsWasm() && i == 0 && va < wasmMinDataAddr {
    			va = wasmMinDataAddr
    		}
    	}
    
    	Segtext.Length = va - uint64(*FlagTextAddr)
    
    	if len(Segrodata.Sections) > 0 {
    		// align to page boundary so as not to mix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    			f := cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				f.FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/x-mysql-misam-index">
        <_comment>MySQL MISAM Index</_comment>
        <magic priority="40">
          <match value="0xfefe03" type="string" offset="0"/>
          <match value="0xfefe05" type="string" offset="0"/>
        </magic>
        <sub-class-of type="application/x-mysql-db"/>
      </mime-type>
      <mime-type type="application/x-mysql-misam-compressed-index">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    // to a throw of msg.
    // pc should be the program counter of the compiler-generated code that
    // triggered this panic.
    func panicCheck1(pc uintptr, msg string) {
    	if goarch.IsWasm == 0 && stringslite.HasPrefix(funcname(findfunc(pc)), "runtime.") {
    		// Note: wasm can't tail call, so we can't get the original caller's pc.
    		throw(msg)
    	}
    	// TODO: is this redundant? How could we be in malloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	// Disable jump padding on 32 bit builds by setting
    	// padJumps to 0.
    	if ctxt.Arch.Family == sys.I386 {
    		return padJumpsCtx(0)
    	}
    
    	// Disable jump padding for hand written assembly code.
    	if ctxt.IsAsm {
    		return padJumpsCtx(0)
    	}
    
    	return padJumpsCtx(32)
    }
    
    // padJump detects whether the instruction being assembled is a standalone or a macro-fused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	var it Itimerval
    	if err := getitimer(int(which), &it); err != nil {
    		return Itimerval{}, err
    	}
    
    	return it, nil
    }
    
    // Setitimer wraps setitimer(2) to arm or disarm the timer specified by which.
    // It returns the previous value of the timer.
    //
    // If the Itimerval argument is the zero value, the timer will be disarmed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top