Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for flag (0.05 sec)

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

    (SBC x (SLLconst [c] y) flags) => (SBCshiftLL x y [c] flags)
    (SBC (SLLconst [c] y) x flags) => (RSCshiftLL x y [c] flags)
    (SBC x (SRLconst [c] y) flags) => (SBCshiftRL x y [c] flags)
    (SBC (SRLconst [c] y) x flags) => (RSCshiftRL x y [c] flags)
    (SBC x (SRAconst [c] y) flags) => (SBCshiftRA x y [c] flags)
    (SBC (SRAconst [c] y) x flags) => (RSCshiftRA x y [c] flags)
    (SBC x (SLL y z) flags) => (SBCshiftLLreg x y z flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"errors"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"internal/xcoff"
    	"math"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/internal/quoted"
    )
    
    var debugDefine = flag.Bool("debug-define", false, "print relevant #defines")
    var debugGcc = flag.Bool("debug-gcc", false, "print gcc invocations")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    }
    
    func (ls liveSlot) absent() bool {
    	return ls.Registers == 0 && !ls.onStack()
    }
    
    // StackOffset encodes whether a value is on the stack and if so, where.
    // It is a 31-bit integer followed by a presence flag at the low-order
    // bit.
    type StackOffset int32
    
    func (s StackOffset) onStack() bool {
    	return s != 0
    }
    
    func (s StackOffset) stackOffsetValue() int32 {
    	return int32(s) >> 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ISEL [2] x _ (FlagEQ)) => x
    (ISEL [2] _ y (Flag(LT|GT))) => y
    
    (ISEL [6] _ y (FlagEQ)) => y
    (ISEL [6] x _ (Flag(LT|GT))) => x
    
    (ISEL [0] _ y (Flag(EQ|GT))) => y
    (ISEL [0] x _ (FlagLT)) => x
    
    (ISEL [5] _ x (Flag(EQ|LT))) => x
    (ISEL [5] y _ (FlagGT)) => y
    
    (ISEL [1] _ y (Flag(EQ|LT))) => y
    (ISEL [1] x _ (FlagGT)) => x
    
    (ISEL [4] x _ (Flag(EQ|GT))) => x
    (ISEL [4] _ y (FlagLT)) => y
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // (e.g. LTDBR) is following one of those instructions, we can use the
    // generated flag and remove the comparison instruction.
    // Note: when inserting Select1 ops we need to ensure they are in the
    // same block as their argument. We could also use @x.Block for this
    // but moving the flag generating value to a different block seems to
    // increase the likelihood that the flags value will have to be regenerated
    // by flagalloc which is not what we want.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Recognize bit tests: a&(1<<b) != 0 for b suitably bounded
    // Note that BTx instructions use the carry bit, so we need to convert tests for zero flag
    // into tests for carry flags.
    // ULT and SETB check the carry flag; they are identical to CS and SETCS. Same, mutatis
    // mutandis, for UGE and SETAE, and CC and SETCC.
    ((NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => ((ULT|UGE) (BTL x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    	case ssa.OpPPC64InvertFlags:
    		v.Fatalf("InvertFlags should never make it to codegen %v", v.LongString())
    	case ssa.OpPPC64FlagEQ, ssa.OpPPC64FlagLT, ssa.OpPPC64FlagGT:
    		v.Fatalf("Flag* ops should never make it to codegen %v", v.LongString())
    	case ssa.OpClobber, ssa.OpClobberReg:
    		// TODO: implement for clobberdead experiment. Nop is ok for now.
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CMPU", argLength: 2, reg: gp2flags, asm: "CMPU", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPWU", argLength: 2, reg: gp2flags, asm: "CMPWU", typ: "Flags"}, // arg0 compare to arg1
    
    		{name: "CMPconst", argLength: 1, reg: gp1flags, asm: "CMP", typ: "Flags", aux: "Int32"},     // arg0 compare to auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ADDSconstflags", argLength: 1, reg: gp11flags, typ: "(UInt64,Flags)", asm: "ADDS", aux: "Int64"},      // arg0+auxint, set flags.
    		{name: "ADDSflags", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "ADDS", commutative: true},      // arg0+arg1, set flags.
    		{name: "SUB", argLength: 2, reg: gp21, asm: "SUB"},                                                            // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    	__tsan_acquire(&_cgo_sync);
    }
    
    __attribute__ ((unused))
    static void _cgo_tsan_release() {
    	__tsan_release(&_cgo_sync);
    }
    `
    
    // Set to yesTsanProlog if we see -fsanitize=thread in the flags for gcc.
    var tsanProlog = noTsanProlog
    
    // noMsanProlog is a prologue defining an MSAN function in C.
    // This is used when not compiling with -fsanitize=memory.
    const noMsanProlog = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top