Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for FENCE (0.2 sec)

  1. src/cmd/asm/internal/asm/testdata/riscv64.s

    	SW	X5, 4(X6)				// 23225300
    	SH	X5, (X6)				// 23105300
    	SH	X5, 4(X6)				// 23125300
    	SB	X5, (X6)				// 23005300
    	SB	X5, 4(X6)				// 23025300
    
    	// 2.7: Memory Ordering Instructions
    	FENCE						// 0f00f00f
    
    	// 5.2: Integer Computational Instructions (RV64I)
    	ADDIW	$1, X5, X6				// 1b831200
    	SLLIW	$1, X5, X6				// 1b931200
    	SRLIW	$1, X5, X6				// 1bd31200
    	SRAIW	$1, X5, X6				// 1bd31240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// Do data barrier. arg0=memorys
    		{name: "LoweredPubBarrier", argLength: 1, asm: "FENCE", hasSideEffects: true},
    
    		// There are three of these functions so that they can have three different register inputs.
    		// When we check 0 <= c <= cap (A), then 0 <= b <= c (B), then 0 <= a <= b (C), we want the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. src/runtime/asm_386.s

    	// When no SSE2 support is present do not enforce any serialization
    	// since using CPUID to serialize the instruction stream is
    	// very costly.
    #ifdef GO386_softfloat
    	JMP	rdtsc  // no fence instructions available
    #endif
    	CMPB	internal∕cpu·X86+const_offsetX86HasRDTSCP(SB), $1
    	JNE	fences
    	// Instruction stream serializing RDTSCP is supported.
    	// RDTSCP is supported by Intel Nehalem (2008) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    	}
    	if w.Op == OpSliceCap && r&lt == 0 && ft.lens[w.Args[0].ID] != nil {
    		// same, capacity on the RHS.
    		ft.update(parent, v, ft.lens[w.Args[0].ID], d, r|gt)
    	}
    
    	// Process fence-post implications.
    	//
    	// First, make the condition > or >=.
    	if r == lt || r == lt|eq {
    		v, w = w, v
    		r = reverseBits[r]
    	}
    	switch r {
    	case gt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const thread=this.importer.getOrCreatePseudoThread(event[2]);const name='fence_destroy('+event[4]+')';const colorName='fence('+event[4]+')';if(thread.lastActiveTs!==undefined){const duration=ts-thread.lastActiveTs;const slice=new tr.model.ThreadSlice('',name,ColorScheme.getColorIdForGeneralPurposeString(colorName),thread.lastActiveTs,{driver:event[1],context:event[3]},d...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top