Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for C_TLS_IE (0.24 sec)

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

    		{obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_GOTREF}, C_ADDR},
    		{obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_TOCREF}, C_ADDR},
    		{obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: &obj.LSym{Type: objabi.STLSBSS}}, cmplx{C_TLS_IE, C_TLS_IE, C_TLS_LE, C_TLS_LE}},
    		{obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: &obj.LSym{Type: objabi.SDATA}}, C_ADDR},
    		{obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_AUTO}, C_SOREG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/a.out.go

    	C_SOREG    // heap address, register-based, int16 displacement
    	C_LOREG    // heap address, register-based, int32 displacement
    	C_TLS_LE   // TLS - local exec model (for executables)
    	C_TLS_IE   // TLS - initial exec model (for shared libraries loaded at program startup)
    	C_GOK      // general address
    	C_ADDR     // relocation for extern or static symbols (loads and stores)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/a.out.go

    	C_CTR      /* The count register */
    	C_ANY      /* Any argument */
    	C_GOK      /* A non-matched argument */
    	C_ADDR     /* A symbolic memory location */
    	C_TLS_LE   /* A thread local, local-exec, type memory arg */
    	C_TLS_IE   /* A thread local, initial-exec, type memory arg */
    	C_TEXTSIZE /* An argument with Type obj.TYPE_TEXTSIZE */
    
    	C_NCLASS /* must be the last */
    )
    
    const (
    	AADD = obj.ABasePPC64 + obj.A_ARCHSPECIFIC + iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/a.out.go

    	C_TLS_LE
    
    	// TLS "var" in initial exec mode: will become a memory address (chosen
    	// by the program linker) that the dynamic linker will fill with the
    	// offset from the thread local base.
    	C_TLS_IE
    
    	C_ROFF // register offset (including register extended)
    
    	C_GOK
    	C_TEXTSIZE
    	C_NCLASS // must be last
    )
    
    const (
    	C_XPRE  = 1 << 6 // match arm.C_WBIT, so Prog.String know how to print it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
Back to top