Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for __tsan_go_atomic64_load (0.33 sec)

  1. src/runtime/race_ppc64le.s

    	GO_ARGS
    	// void __tsan_go_atomic32_load(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
    	MOVD	$__tsan_go_atomic32_load(SB), R8
    	ADD	$32, R1, R6	// addr of caller's 1st arg
    	BR	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadInt64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	// void __tsan_go_atomic64_load(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
    	MOVD	$__tsan_go_atomic64_load(SB), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/runtime/race_s390x.s

    // Atomic operations for sync/atomic package.
    
    // Load
    
    TEXT	sync∕atomic·LoadInt32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	MOVD	$__tsan_go_atomic32_load(SB), R1
    	BL	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadInt64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	MOVD	$__tsan_go_atomic64_load(SB), R1
    	BL	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadUint32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt32(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/runtime/race_amd64.s

    // Atomic operations for sync/atomic package.
    
    // Load
    TEXT	sync∕atomic·LoadInt32(SB), NOSPLIT|NOFRAME, $0-12
    	GO_ARGS
    	MOVQ	$__tsan_go_atomic32_load(SB), AX
    	CALL	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadInt64(SB), NOSPLIT|NOFRAME, $0-16
    	GO_ARGS
    	MOVQ	$__tsan_go_atomic64_load(SB), AX
    	CALL	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadUint32(SB), NOSPLIT, $0-12
    	GO_ARGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/runtime/race_arm64.s

    // R0, R1, R2 set in racecallatomic
    
    // Load
    TEXT	sync∕atomic·LoadInt32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	MOVD	$__tsan_go_atomic32_load(SB), R9
    	BL	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadInt64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	MOVD	$__tsan_go_atomic64_load(SB), R9
    	BL	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadUint32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt32(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/runtime/race.go

    //go:cgo_import_static __tsan_write_pc
    //go:cgo_import_static __tsan_write_range
    //go:cgo_import_static __tsan_func_enter
    //go:cgo_import_static __tsan_func_exit
    
    //go:cgo_import_static __tsan_go_atomic32_load
    //go:cgo_import_static __tsan_go_atomic64_load
    //go:cgo_import_static __tsan_go_atomic32_store
    //go:cgo_import_static __tsan_go_atomic64_store
    //go:cgo_import_static __tsan_go_atomic32_exchange
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top