Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DF_BIND_NOW (0.27 sec)

  1. src/debug/elf/elf_test.go

    	{SHN_LOPROC, "SHN_LOPROC"},
    	{SHT_PROGBITS, "SHT_PROGBITS"},
    	{SHF_MERGE + SHF_TLS, "SHF_MERGE+SHF_TLS"},
    	{PT_LOAD, "PT_LOAD"},
    	{PF_W + PF_R + 0x50, "PF_W+PF_R+0x50"},
    	{DT_SYMBOLIC, "DT_SYMBOLIC"},
    	{DF_BIND_NOW, "DF_BIND_NOW"},
    	{DF_1_PIE, "DF_1_PIE"},
    	{NT_FPREGSET, "NT_FPREGSET"},
    	{STB_GLOBAL, "STB_GLOBAL"},
    	{STT_COMMON, "STT_COMMON"},
    	{STV_HIDDEN, "STV_HIDDEN"},
    	{R_X86_64_PC32, "R_X86_64_PC32"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    			}
    
    			flags1, err := elfFile.DynValue(elf.DT_FLAGS_1)
    			if err != nil {
    				t.Fatalf("failed to get DT_FLAGS_1: %v", err)
    			}
    
    			gotDfBindNow := gotDynFlag(flags, uint64(elf.DF_BIND_NOW))
    			gotDf1Now := gotDynFlag(flags1, uint64(elf.DF_1_NOW))
    
    			bindNowFlagsMatch := gotDfBindNow == test.wantDfBindNow && gotDf1Now == test.wantDf1Now
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	   $ORIGIN substitution string */
    	DF_SYMBOLIC DynFlag = 0x0002 /* Indicates "symbolic" linking. */
    	DF_TEXTREL  DynFlag = 0x0004 /* Indicates there may be relocations in non-writable segments. */
    	DF_BIND_NOW DynFlag = 0x0008 /* Indicates that the dynamic linker should
    	   process all relocations for the object
    	   containing this entry before transferring
    	   control to the program. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		}
    	}
    
    	s = ldr.CreateSymForUpdate(".dynamic", 0)
    
    	var dtFlags1 elf.DynFlag1
    	if *flagBindNow {
    		dtFlags1 |= elf.DF_1_NOW
    		Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS, uint64(elf.DF_BIND_NOW))
    	}
    	if ctxt.BuildMode == BuildModePIE {
    		dtFlags1 |= elf.DF_1_PIE
    	}
    	Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS_1, uint64(dtFlags1))
    
    	elfverneed = nfile
    	if elfverneed != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DF_1_PIE", Const, 21},
    		{"DF_1_SINGLETON", Const, 21},
    		{"DF_1_STUB", Const, 21},
    		{"DF_1_SYMINTPOSE", Const, 21},
    		{"DF_1_TRANS", Const, 21},
    		{"DF_1_WEAKFILTER", Const, 21},
    		{"DF_BIND_NOW", Const, 0},
    		{"DF_ORIGIN", Const, 0},
    		{"DF_STATIC_TLS", Const, 0},
    		{"DF_SYMBOLIC", Const, 0},
    		{"DF_TEXTREL", Const, 0},
    		{"DT_ADDRRNGHI", Const, 16},
    		{"DT_ADDRRNGLO", Const, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/dwarf, type VoidType struct
    pkg debug/dwarf, type VoidType struct, embedded CommonType
    pkg debug/elf, const ARM_MAGIC_TRAMP_NUMBER ideal-int
    pkg debug/elf, const DF_BIND_NOW DynFlag
    pkg debug/elf, const DF_ORIGIN DynFlag
    pkg debug/elf, const DF_STATIC_TLS DynFlag
    pkg debug/elf, const DF_SYMBOLIC DynFlag
    pkg debug/elf, const DF_TEXTREL DynFlag
    pkg debug/elf, const DT_BIND_NOW DynTag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg debug/dwarf, const TagVariantPart = 51
    pkg debug/dwarf, const TagVolatileType = 53
    pkg debug/dwarf, const TagWithStmt = 34
    pkg debug/elf, const ARM_MAGIC_TRAMP_NUMBER = 1543503875
    pkg debug/elf, const DF_BIND_NOW = 8
    pkg debug/elf, const DF_ORIGIN = 1
    pkg debug/elf, const DF_STATIC_TLS = 16
    pkg debug/elf, const DF_SYMBOLIC = 2
    pkg debug/elf, const DF_TEXTREL = 4
    pkg debug/elf, const DT_BIND_NOW = 24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top