Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for destruction (0.19 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"ASR (immediate)","Bits":"1|0|0|1|0|0|1|1|0|1|immr:6|111111:6|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"ASR <Xd>, <Xn>, #<shift>","Code":"","Alias":"This instruction is an alias of the SBFM instruction."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    // to register a thread-exit-time destructor.
    // We are here setting the thread-specific value of the pthread key, to enable the destructor.
    // So that the pthread_key_destructor would dropm while the C thread is exiting.
    //
    // And the saved g will be used in pthread_key_destructor,
    // since the g stored in the TLS by Go might be cleared in some platforms,
    // before the destructor invoked, so, we restore g by the stored g, before dropm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		}
    	}
    
    	// Mark nonpreemptible instruction sequences.
    	// The 2-instruction TLS access sequence
    	//	MOVQ TLS, BX
    	//	MOVQ 0(BX)(TLS*1), BX
    	// is not async preemptible, as if it is preempted and resumed on
    	// a different thread, the TLS address may become invalid.
    	if !CanUse1InsnTLS(ctxt) {
    		useTLS := func(p *obj.Prog) bool {
    			// Only need to mark the second instruction, which has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	size  int8   // Text space in bytes to lay operation
    
    	// A prefixed instruction is generated by this opcode. This cannot be placed
    	// across a 64B PC address. Opcodes should not translate to more than one
    	// prefixed instruction. The prefixed instruction should be written first
    	// (e.g when Optab.size > 8).
    	ispfx bool
    
    	asmout func(*ctxt9, *obj.Prog, *Optab, *[5]uint32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    // isRestartable returns whether p is a multi-instruction sequence that,
    // if preempted, can be restarted.
    func (c *ctxt7) isRestartable(p *obj.Prog) bool {
    	if c.isUnsafePoint(p) {
    		return false
    	}
    	// If p is a multi-instruction sequence with uses REGTMP inserted by
    	// the assembler in order to materialize a large constant/offset, we
    	// can restart p (at the start of the instruction sequence), recompute
    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/internal/obj/s390x/asmz.go

    	{i: 86, as: ALA, a1: C_SOREG, a6: C_REG},
    	{i: 86, as: ALA, a1: C_SAUTO, a6: C_REG},
    	{i: 87, as: AEXRL, a1: C_SYMADDR, a6: C_REG},
    
    	// undefined (deliberate illegal instruction)
    	{i: 78, as: obj.AUNDEF},
    
    	// Break point instruction(0x0001 opcode)
    	{i: 73, as: ABRRK},
    
    	// 2 byte no-operation
    	{i: 66, as: ANOPH},
    
    	// crypto instructions
    
    	// KM
    	{i: 124, as: AKM, a1: C_REG, a6: C_REG},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/encoding/json/testdata/code.json.gz

    3,"min_t":1228525763,"max_t":1236205616,"mean_t":1231401975},{"name":"flexible-box-overflow-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"renderer-destruction-by-invalidateSelection-crash-expected.checksum","kids":[],"cl_weight":0.003061301158710795,"touches":2,"min_t":1228781586,"max_t":1236205616,"mean_t":1232493601},{"name":"line-overflow-expected.png","kids":[],"cl_weight":0.0006270059426999707,"...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return sb.String()
    }
    
    // Destructor is a destructor.
    type Destructor struct {
    	Name AST
    }
    
    func (d *Destructor) print(ps *printState) {
    	ps.writeByte('~')
    	ps.print(d.Name)
    }
    
    func (d *Destructor) Traverse(fn func(AST) bool) {
    	if fn(d) {
    		d.Name.Traverse(fn)
    	}
    }
    
    func (d *Destructor) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(d) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    	R_386_TLS_GD_PUSH   R_386 = 25 /* pushl instruction for Sun ABI GD sequence */
    	R_386_TLS_GD_CALL   R_386 = 26 /* call instruction for Sun ABI GD sequence */
    	R_386_TLS_GD_POP    R_386 = 27 /* popl instruction for Sun ABI GD sequence */
    	R_386_TLS_LDM_32    R_386 = 28 /* 32 bit offset to GOT (index,zero) pair */
    	R_386_TLS_LDM_PUSH  R_386 = 29 /* pushl instruction for Sun ABI LD sequence */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // In fact, UMOD will be translated into UREM instruction, and UREM is originally translated into
    // UDIV and MSUB instructions. But if there is already an identical UDIV instruction just before or
    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    // The purpose of this rule is to have this extra UDIV instruction removed in CSE pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top