Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PIC (0.03 sec)

  1. src/cmd/go/internal/work/security.go

    	re(`-f(no-)?objc-arc`),
    	re(`-f(no-)?objc-nonfragile-abi`),
    	re(`-f(no-)?objc-legacy-dispatch`),
    	re(`-f(no-)?omit-frame-pointer`),
    	re(`-f(no-)?openmp(-simd)?`),
    	re(`-f(no-)?permissive`),
    	re(`-f(no-)?(pic|PIC|pie|PIE)`),
    	re(`-f(no-)?plt`),
    	re(`-f(no-)?rtti`),
    	re(`-f(no-)?split-stack`),
    	re(`-f(no-)?stack-(.+)`),
    	re(`-f(no-)?strict-aliasing`),
    	re(`-f(un)signed-char`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// Caller
    	caller := funcName
    	parentRanges := []dwarf.Range{dwarf.Range{Start: int64(0), End: funcSize}}
    	if parentIdx != -1 {
    		pic := inlCalls.Calls[parentIdx]
    		caller = base.Ctxt.InlTree.InlinedFunction(pic.InlIndex).Name
    		parentRanges = pic.Ranges
    	}
    
    	// Callee ranges contained in caller ranges?
    	c, m := rangesContainsAll(parentRanges, calleeRanges)
    	if !c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm_test.go

    	ctxts := [...]*ctxt9{&pic_ctxt9, &pic_dyn_ctxt9, &dyn_ctxt9, &nonpic_ctxt9}
    	name := [...]string{"pic", "pic_dyn", "dyn", "nonpic"}
    	for _, tst := range tsts {
    		var expect []int
    		switch tst.output.(type) {
    		case cmplx:
    			v := tst.output.(cmplx)
    			expect = []int{v.pic, v.pic_dyn, v.dyn, v.nonpic}
    		case int:
    			expect = []int{tst.output.(int), tst.output.(int), tst.output.(int), tst.output.(int)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/runtime/mkpreempt.go

    	p("JMP (R30)")
    }
    
    func genPPC64() {
    	// Add integer registers R3-R29
    	// R0 (zero), R1 (SP), R30 (g) are special and not saved here.
    	// R2 (TOC pointer in PIC mode), R12 (function entry address in PIC mode) have been saved in sigctxt.pushCall.
    	// R31 (REGTMP) will be saved manually.
    	var l = layout{sp: "R1", stack: 32 + 8} // MinFrameSize on PPC64, plus one word for saving R31
    	for i := 3; i <= 29; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/amd64/asm.go

    			if rt == objabi.MachoRelocOffset+ld.MACHO_X86_64_RELOC_UNSIGNED*2 {
    				break
    			} else {
    				// MACHO_X86_64_RELOC_SIGNED or MACHO_X86_64_RELOC_BRANCH
    				// Can this happen? The object is expected to be PIC.
    				ldr.Errorf(s, "unsupported relocation for PIE: %v", rt)
    			}
    		}
    		return true
    
    	case objabi.MachoRelocOffset + ld.MACHO_X86_64_RELOC_BRANCH*2 + 1:
    		if targType == sym.SDYNIMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    				p.From.Sym.Set(obj.AttrNoSplit, true)
    			}
    
    			p.To.Offset = int64(autosize)
    
    			q = p
    
    			if NeedTOCpointer(c.ctxt) && !isNOTOCfunc(c.cursym.Name) {
    				// When compiling Go into PIC, without PCrel support, all functions must start
    				// with instructions to load the TOC pointer into r2:
    				//
    				//	addis r2, r12, .TOC.-func@ha
    				//	addi r2, r2, .TOC.-func@l+4
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "FlagLT_UGT"}, // signed < and unsigned >
    		{name: "FlagGT_UGT"}, // signed > and unsigned <
    		{name: "FlagGT_ULT"}, // signed > and unsigned >
    
    		// Special ops for PIC floating-point constants.
    		// MOVSXconst1 loads the address of the constant-pool entry into a register.
    		// MOVSXconst2 loads the constant from that address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/obj6.go

    		morestack = "runtime.morestack_noctxt"
    	}
    	call.To.Sym = ctxt.Lookup(morestack)
    	// When compiling 386 code for dynamic linking, the call needs to be adjusted
    	// to follow PIC rules. This in turn can insert more instructions, so we need
    	// to keep track of the start of the call (where the jump will be to) and the
    	// end (which following instructions are appended to).
    	callend := call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  9. src/runtime/asm_386.s

    	CMPL	CX, $0x6C65746E  // "ntel"
    	JNE	notintel
    	MOVB	$1, runtime·isIntel(SB)
    notintel:
    
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    	MOVL	CX, DI // Move to global variable clobbers CX when generating PIC
    	MOVL	AX, runtime·processorVersionInfo(SB)
    
    	// Check for MMX support
    	TESTL	$(1<<23), DX // MMX
    	JZ	bad_proc
    
    nocpuinfo:
    	// if there is an _cgo_init, call it to let it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top