Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Boundary (0.36 sec)

  1. src/cmd/link/internal/ld/data.go

    	}
    
    	Segtext.Length = va - uint64(*FlagTextAddr)
    
    	if len(Segrodata.Sections) > 0 {
    		// align to page boundary so as not to mix
    		// rodata and executable text.
    		//
    		// Note: gold or GNU ld will reduce the size of the executable
    		// file by arranging for the relro segment to end at a page
    		// boundary, and overlap the end of the text segment with the
    		// start of the relro segment in the file.  The PT_LOAD segments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"strings"
    )
    
    var (
    	plan9privates *obj.LSym
    )
    
    // Instruction layout.
    
    // Loop alignment constants:
    // want to align loop entry to loopAlign-byte boundary,
    // and willing to insert at most maxLoopPad bytes of NOP to do so.
    // We define a loop entry as the target of a backward jump.
    //
    // gcc uses maxLoopPad = 10 for its 'generic x86-64' config,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    						ctxt.Diag("zero-width instruction\n%v", p)
    					}
    					continue
    				}
    			}
    
    			// Prefixed instructions cannot be placed across a 64B boundary.
    			// Mark and adjust the PC of those which do. A nop will be
    			// inserted during final assembly.
    			if o.ispfx {
    				mark := p.Mark &^ PFX_X64B
    				if pc&63 == 60 {
    					p.Pc += 4
    					m += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_LZRF   uint32 = 0xE33B // 	RXY-a	LOAD AND ZERO RIGHTMOST BYTE (32)
    	op_LZRG   uint32 = 0xE32A // 	RXY-a	LOAD AND ZERO RIGHTMOST BYTE (64)
    	op_LCCB   uint32 = 0xE727 // 	RXE	LOAD COUNT TO BLOCK BOUNDARY
    	op_LOCHHI uint32 = 0xEC4E // 	RIE-g	LOAD HALFWORD HIGH IMMEDIATE ON CONDITION (32←16)
    	op_LOCHI  uint32 = 0xEC42 // 	RIE-g	LOAD HALFWORD IMMEDIATE ON CONDITION (32←16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top