Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for xatexit (0.12 sec)

  1. src/debug/elf/file_test.go

    			{"__bss_start", 16, 0, 65521, 134518484, 0, "", ""},
    			{"main", 18, 0, 8, 134513912, 46, "", ""},
    			{"_init_tls", 18, 0, 0, 0, 5, "", ""},
    			{"_fini", 18, 0, 9, 134513996, 0, "", ""},
    			{"atexit", 18, 0, 0, 0, 43, "", ""},
    			{"_edata", 16, 0, 65521, 134518484, 0, "", ""},
    			{"_GLOBAL_OFFSET_TABLE_", 17, 0, 65521, 134518456, 0, "", ""},
    			{"_end", 16, 0, 65521, 134518516, 0, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	// Generate the prologue.
    	text := cursym.Func().Text
    	if text.As != obj.ATEXT {
    		ctxt.Diag("preprocess: found symbol that does not start with TEXT directive")
    		return
    	}
    
    	stacksize := text.To.Offset
    	if stacksize == -8 {
    		// Historical way to mark NOFRAME.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	a2 uint8  // Reg
    	a3 uint8  // RestArgs[0]
    	a4 uint8  // RestArgs[1]
    	a5 uint8  // RestArgs[2]
    	a6 uint8  // To
    }
    
    var optab = []Optab{
    	// zero-length instructions
    	{i: 0, as: obj.ATEXT, a1: C_ADDR, a6: C_TEXTSIZE},
    	{i: 0, as: obj.ATEXT, a1: C_ADDR, a3: C_LCON, a6: C_TEXTSIZE},
    	{i: 0, as: obj.APCDATA, a1: C_LCON, a6: C_LCON},
    	{i: 0, as: obj.AFUNCDATA, a1: C_SCON, a6: C_ADDR},
    	{i: 0, as: obj.ANOP},
    	{i: 0, as: obj.ANOP, a1: C_SAUTO},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	{ATESTQ, ytestl, Pw, opBytes{0xa9, 0xf7, 00, 0x85, 0x85}},
    	{ATESTW, ytestl, Pe, opBytes{0xa9, 0xf7, 00, 0x85, 0x85}},
    	{ATPAUSE, ywrfsbase, Pq, opBytes{0xae, 06}},
    	{obj.ATEXT, ytext, Px, opBytes{}},
    	{AUCOMISD, yxm, Pe, opBytes{0x2e}},
    	{AUCOMISS, yxm, Pm, opBytes{0x2e}},
    	{AUNPCKHPD, yxm, Pe, opBytes{0x15}},
    	{AUNPCKHPS, yxm, Pm, opBytes{0x15}},
    	{AUNPCKLPD, yxm, Pe, opBytes{0x14}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	BRANCH19BITS             // branch instruction encodes 19 bits
    )
    
    var optab = []Optab{
    	/* struct Optab:
    	OPCODE, from, prog->reg, from3, to, to2, type,size,param,flag,scond */
    	{obj.ATEXT, C_ADDR, C_NONE, C_NONE, C_TEXTSIZE, C_NONE, 0, 0, 0, 0, 0},
    
    	/* arithmetic operations */
    	{AADD, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADD, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    		// going to emit anyway, and use those instructions instead of the
    		// inline marks.
    		for p := s.pp.Text; p != nil; p = p.Link {
    			if p.As == obj.ANOP || p.As == obj.AFUNCDATA || p.As == obj.APCDATA || p.As == obj.ATEXT ||
    				p.As == obj.APCALIGN || p.As == obj.APCALIGNMAX || Arch.LinkArch.Family == sys.Wasm {
    				// Don't use 0-sized instructions as inline marks, because we need
    				// to identify inline mark instructions by pc offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top