Documentation ¶
Index ¶
- func CallName(call *ssa.CallCommon) string
- func Is_alloc_channel(inst ssa.Instruction) bool
- func Is_atomic(inst ssa.Instruction) bool
- func Is_atomic_addint(inst ssa.Instruction) bool
- func Is_atomic_compareandswapint(inst ssa.Instruction) bool
- func Is_atomic_compareandswappointer(inst ssa.Instruction) bool
- func Is_atomic_loadint(inst ssa.Instruction) bool
- func Is_atomic_loadpointer(inst ssa.Instruction) bool
- func Is_atomic_storeint(inst ssa.Instruction) bool
- func Is_atomic_storepointer(inst ssa.Instruction) bool
- func Is_atomic_swapint(inst ssa.Instruction) bool
- func Is_atomic_swappointer(inst ssa.Instruction) bool
- func Is_atomic_value_load(inst ssa.Instruction) bool
- func Is_atomic_value_make(inst ssa.Instruction) bool
- func Is_atomic_value_store(inst ssa.Instruction) bool
- func Is_chan_close(inst ssa.Instruction) bool
- func Is_cond(inst ssa.Instruction) bool
- func Is_cond_broadcast(inst ssa.Instruction) bool
- func Is_cond_make(inst ssa.Instruction) bool
- func Is_cond_signal(inst ssa.Instruction) bool
- func Is_cond_wait(inst ssa.Instruction) bool
- func Is_make_channel(inst ssa.Instruction) bool
- func Is_make_goroutine(inst ssa.Instruction) bool
- func Is_mutex(inst ssa.Instruction) bool
- func Is_mutex_lock(inst ssa.Instruction) bool
- func Is_mutex_make(inst ssa.Instruction) bool
- func Is_mutex_unlock(inst ssa.Instruction) bool
- func Is_once(inst ssa.Instruction) bool
- func Is_once_do(inst ssa.Instruction) bool
- func Is_once_make(inst ssa.Instruction) bool
- func Is_pool(inst ssa.Instruction) bool
- func Is_pool_get(inst ssa.Instruction) bool
- func Is_pool_make(inst ssa.Instruction) bool
- func Is_pool_put(inst ssa.Instruction) bool
- func Is_receive_to_channel(inst ssa.Instruction) bool
- func Is_rwmutex(inst ssa.Instruction) bool
- func Is_rwmutex_lock(inst ssa.Instruction) bool
- func Is_rwmutex_make(inst ssa.Instruction) bool
- func Is_rwmutex_rlock(inst ssa.Instruction) bool
- func Is_rwmutex_runlock(inst ssa.Instruction) bool
- func Is_rwmutex_unlock(inst ssa.Instruction) bool
- func Is_select_to_channel(inst ssa.Instruction) bool
- func Is_send_to_channel(inst ssa.Instruction) bool
- func Is_syncmap_delete(inst ssa.Instruction) bool
- func Is_syncmap_load(inst ssa.Instruction) bool
- func Is_syncmap_loadorstore(inst ssa.Instruction) bool
- func Is_syncmap_make(inst ssa.Instruction) bool
- func Is_syncmap_range(inst ssa.Instruction) bool
- func Is_syncmap_store(inst ssa.Instruction) bool
- func Is_waitgroup(inst ssa.Instruction) bool
- func Is_waitgroup_add(inst ssa.Instruction) bool
- func Is_waitgroup_done(inst ssa.Instruction) bool
- func Is_waitgroup_make(inst ssa.Instruction) bool
- func Is_waitgroup_wait(inst ssa.Instruction) bool
- func Op_to_prim(op_type string) string
- func Type_atomic(inst ssa.Instruction) string
- func Type_sop(inst ssa.Instruction) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CallName ¶
func CallName(call *ssa.CallCommon) string
func Is_alloc_channel ¶
func Is_alloc_channel(inst ssa.Instruction) bool
func Is_atomic ¶
func Is_atomic(inst ssa.Instruction) bool
func Is_atomic_addint ¶
func Is_atomic_addint(inst ssa.Instruction) bool
func Is_atomic_compareandswapint ¶
func Is_atomic_compareandswapint(inst ssa.Instruction) bool
func Is_atomic_compareandswappointer ¶
func Is_atomic_compareandswappointer(inst ssa.Instruction) bool
func Is_atomic_loadint ¶
func Is_atomic_loadint(inst ssa.Instruction) bool
func Is_atomic_loadpointer ¶
func Is_atomic_loadpointer(inst ssa.Instruction) bool
func Is_atomic_storeint ¶
func Is_atomic_storeint(inst ssa.Instruction) bool
func Is_atomic_storepointer ¶
func Is_atomic_storepointer(inst ssa.Instruction) bool
func Is_atomic_swapint ¶
func Is_atomic_swapint(inst ssa.Instruction) bool
func Is_atomic_swappointer ¶
func Is_atomic_swappointer(inst ssa.Instruction) bool
func Is_atomic_value_load ¶
func Is_atomic_value_load(inst ssa.Instruction) bool
func Is_atomic_value_make ¶
func Is_atomic_value_make(inst ssa.Instruction) bool
func Is_atomic_value_store ¶
func Is_atomic_value_store(inst ssa.Instruction) bool
func Is_chan_close ¶
func Is_chan_close(inst ssa.Instruction) bool
func Is_cond ¶
func Is_cond(inst ssa.Instruction) bool
func Is_cond_broadcast ¶
func Is_cond_broadcast(inst ssa.Instruction) bool
func Is_cond_make ¶
func Is_cond_make(inst ssa.Instruction) bool
func Is_cond_signal ¶
func Is_cond_signal(inst ssa.Instruction) bool
func Is_cond_wait ¶
func Is_cond_wait(inst ssa.Instruction) bool
func Is_make_channel ¶
func Is_make_channel(inst ssa.Instruction) bool
func Is_make_goroutine ¶
func Is_make_goroutine(inst ssa.Instruction) bool
func Is_mutex ¶
func Is_mutex(inst ssa.Instruction) bool
func Is_mutex_lock ¶
func Is_mutex_lock(inst ssa.Instruction) bool
func Is_mutex_make ¶
func Is_mutex_make(inst ssa.Instruction) bool
func Is_mutex_unlock ¶
func Is_mutex_unlock(inst ssa.Instruction) bool
func Is_once ¶
func Is_once(inst ssa.Instruction) bool
func Is_once_do ¶
func Is_once_do(inst ssa.Instruction) bool
func Is_once_make ¶
func Is_once_make(inst ssa.Instruction) bool
func Is_pool ¶
func Is_pool(inst ssa.Instruction) bool
func Is_pool_get ¶
func Is_pool_get(inst ssa.Instruction) bool
func Is_pool_make ¶
func Is_pool_make(inst ssa.Instruction) bool
func Is_pool_put ¶
func Is_pool_put(inst ssa.Instruction) bool
func Is_receive_to_channel ¶
func Is_receive_to_channel(inst ssa.Instruction) bool
func Is_rwmutex ¶
func Is_rwmutex(inst ssa.Instruction) bool
func Is_rwmutex_lock ¶
func Is_rwmutex_lock(inst ssa.Instruction) bool
func Is_rwmutex_make ¶
func Is_rwmutex_make(inst ssa.Instruction) bool
func Is_rwmutex_rlock ¶
func Is_rwmutex_rlock(inst ssa.Instruction) bool
func Is_rwmutex_runlock ¶
func Is_rwmutex_runlock(inst ssa.Instruction) bool
func Is_rwmutex_unlock ¶
func Is_rwmutex_unlock(inst ssa.Instruction) bool
func Is_select_to_channel ¶
func Is_select_to_channel(inst ssa.Instruction) bool
func Is_send_to_channel ¶
func Is_send_to_channel(inst ssa.Instruction) bool
func Is_syncmap_delete ¶
func Is_syncmap_delete(inst ssa.Instruction) bool
func Is_syncmap_load ¶
func Is_syncmap_load(inst ssa.Instruction) bool
func Is_syncmap_loadorstore ¶
func Is_syncmap_loadorstore(inst ssa.Instruction) bool
func Is_syncmap_make ¶
func Is_syncmap_make(inst ssa.Instruction) bool
func Is_syncmap_range ¶
func Is_syncmap_range(inst ssa.Instruction) bool
func Is_syncmap_store ¶
func Is_syncmap_store(inst ssa.Instruction) bool
func Is_waitgroup ¶
func Is_waitgroup(inst ssa.Instruction) bool
func Is_waitgroup_add ¶
func Is_waitgroup_add(inst ssa.Instruction) bool
func Is_waitgroup_done ¶
func Is_waitgroup_done(inst ssa.Instruction) bool
func Is_waitgroup_make ¶
func Is_waitgroup_make(inst ssa.Instruction) bool
func Is_waitgroup_wait ¶
func Is_waitgroup_wait(inst ssa.Instruction) bool
func Op_to_prim ¶
func Type_atomic ¶
func Type_atomic(inst ssa.Instruction) string
func Type_sop ¶
func Type_sop(inst ssa.Instruction) string
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.