Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for LD (0.04 sec)

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

    (CMP(U|WU)const [d] (ANDconst z [c])) && uint64(d) > uint64(c) => (FlagLT)
    
    (ORN x (MOVDconst [-1])) => x
    
    (S(RAD|RD|LD) x (MOVDconst [c])) => (S(RAD|RD|LD)const [c&63 | (c>>6&1*63)] x)
    (S(RAW|RW|LW) x (MOVDconst [c])) => (S(RAW|RW|LW)const [c&31 | (c>>5&1*31)] x)
    
    (Addr {sym} base) => (MOVDaddr {sym} [0] base)
    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. .bazelrc

    build:release_linux_base --copt=-Wno-error=array-parameter
    build:release_linux_base --copt=-Wno-error=unused-command-line-argument
    # Set lld as the linker.
    build:release_linux_base --linkopt="-fuse-ld=lld"
    build:release_linux_base --linkopt="-lm"
    
    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/regexp/testdata/testregex.c

    					m += strtol(s, &s, 10);
    				if (r)
    				{
    					t -= 5;
    					while (m-- > 0)
    						*t++ = r;
    					while (*s && *s++ != '}');
    				}
    				else
    					t += snprintf(t, 32, "%ld", m);
    				while (*t = *s++)
    					t++;
    				break;
    			}
    			continue;
    		default:
    			continue;
    		}
    		break;
    	}
    	return os;
    }
    
    int
    main(int argc, char** argv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    		return
    	}
    	fmt.Println("\n" + t.banner + v)
    }
    
    // extLink reports whether the current goos/goarch supports
    // external linking. This should match the test in determineLinkMode
    // in cmd/link/internal/ld/config.go.
    func (t *tester) extLink() bool {
    	if goarch == "ppc64" && goos != "aix" {
    		return false
    	}
    	return true
    }
    
    func (t *tester) internalLink() bool {
    	if gohostos == "dragonfly" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ld
    
    import (
    	"cmd/internal/notsha256"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"encoding/binary"
    	"encoding/hex"
    	"fmt"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"runtime"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    //     ptype struct '[]uint8' and qualifiers need to be quoted away
    //   - file:line info for variables
    //   - make strings a typedef so prettyprinters can see the underlying string type
    
    package ld
    
    import (
    	"cmd/internal/dwarf"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"internal/abi"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    			section := f.Section(".edata")
    			if section == nil {
    				t.Skip(".edata section is not present")
    			}
    			// TODO: deduplicate this struct from cmd/link/internal/ld/pe.go
    			type IMAGE_EXPORT_DIRECTORY struct {
    				_                 [2]uint32
    				_                 [2]uint16
    				_                 [2]uint32
    				NumberOfFunctions uint32
    				NumberOfNames     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top