Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for conf (0.89 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (If (LessThanF     cc) yes no) => (FLT cc yes no)
    (If (LessEqualF    cc) yes no) => (FLE cc yes no)
    (If (GreaterThanF  cc) yes no) => (FGT cc yes no)
    (If (GreaterEqualF cc) yes no) => (FGE cc yes no)
    
    (If cond yes no) => (TBNZ [0] cond yes no)
    
    (JumpTable idx) => (JUMPTABLE {makeJumpTableSym(b)} idx (MOVDaddr <typ.Uintptr> {makeJumpTableSym(b)} (SB)))
    
    // atomic intrinsics
    // Note: these ops do not accept offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/trace/testdata/go122.test

    String id=4
    	data="GC (idle)"
    String id=5
    	data="unspecified"
    String id=6
    	data="forever"
    String id=7
    	data="network"
    String id=8
    	data="select"
    String id=9
    	data="sync.(*Cond).Wait"
    String id=10
    	data="sync"
    String id=11
    	data="chan send"
    String id=12
    	data="chan receive"
    String id=13
    	data="GC mark assist wait for work"
    String id=14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // interface ops
    (ConstInterface) =>
      (IMake
        (ConstNil <typ.Uintptr>)
        (ConstNil <typ.BytePtr>))
    
    (NilCheck ptr:(GetG mem) mem) => ptr
    
    (If (Not cond) yes no) => (If cond no yes)
    (If (ConstBool [c]) yes no) && c => (First yes no)
    (If (ConstBool [c]) yes no) && !c => (First no yes)
    
    (Phi <t> nx:(Not x) ny:(Not y)) && nx.Uses == 1 && ny.Uses == 1 => (Not (Phi <t> x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top