Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,763 for opcode (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir_test.cc

    }
    
    TEST(LegalizeWithMlirBridge, LegalizesToMhloProto) {
      auto result = LegalizeMlirModule(kMlirModuleStr);
    
      ASSERT_THAT(result, IsOkOrFiltered());
      EXPECT_THAT(result, ComputationProtoContains("opcode.*constant"));
    }
    
    TEST(CompileFromMlir, ReturnsModuleAsString) {
      auto result = CompileMlirModule(true, kMlirModuleStr);
    
      ASSERT_THAT(result, IsOkOrFiltered());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules

    // These rules remove unneeded sign/zero extensions.
    // They occur in late lower because they rely on the fact
    // that their arguments don't get rewritten to a non-extended opcode instead.
    
    // Boolean-generating instructions (NOTE: NOT all boolean Values) always
    // zero upper bit of the register; no need to zero-extend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/util.go

    	C_UBIT      = 1 << 7
    	C_SCOND_XOR = 14
    )
    
    // CConv formats opcode suffix bits (Prog.Scond).
    func CConv(s uint8) string {
    	if s == 0 {
    		return ""
    	}
    	for i := range opSuffixSpace {
    		sset := &opSuffixSpace[i]
    		if sset.arch == buildcfg.GOARCH {
    			return sset.cconv(s)
    		}
    	}
    	return fmt.Sprintf("SC???%d", s)
    }
    
    // CConvARM formats ARM opcode suffix bits (mostly condition codes).
    func CConvARM(s uint8) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		args[i], args[j] = args[j], args[i]
    	}
    
    	if args != nil {
    		op += " " + strings.Join(args, ", ")
    	}
    
    	return op
    }
    
    // No need add "W" to opcode suffix.
    // Opcode must be inserted in ascending order.
    var noSuffixOpSet = strings.Fields(`
    AESD
    AESE
    AESIMC
    AESMC
    CRC32B
    CRC32CB
    CRC32CH
    CRC32CW
    CRC32CX
    CRC32H
    CRC32W
    CRC32X
    LDARB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  5. src/debug/dwarf/const.go

    	encDecimalFloat   = 0x0F
    	// The following are new in DWARF 4.
    	encUTF = 0x10
    	// The following are new in DWARF 5.
    	encUCS   = 0x11
    	encASCII = 0x12
    )
    
    // Statement program standard opcode encodings.
    const (
    	lnsCopy           = 1
    	lnsAdvancePC      = 2
    	lnsAdvanceLine    = 3
    	lnsSetFile        = 4
    	lnsSetColumn      = 5
    	lnsNegateStmt     = 6
    	lnsSetBasicBlock  = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/main.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The gen command generates Go code (in the parent directory) for all
    // the architecture-specific opcodes, blocks, and rewrites.
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/format"
    	"log"
    	"math/bits"
    	"os"
    	"path"
    	"regexp"
    	"runtime"
    	"runtime/pprof"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/value.go

    	// The type of this value. Normally this will be a Go type, but there
    	// are a few other pseudo-types, see ../types/type.go.
    	Type *types.Type
    
    	// Auxiliary info for this value. The type of this information depends on the opcode and type.
    	// AuxInt is used for integer values, Aux is used for other values.
    	// Floats are stored in AuxInt using math.Float64bits(f).
    	// Unused portions of AuxInt are filled by sign-extending the used portion,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    // Copyright 2014 The Go Authors.  All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ppc64asm
    
    import (
    	"bytes"
    	"fmt"
    )
    
    type Inst struct {
    	Op        Op     // Opcode mnemonic
    	Enc       uint32 // Raw encoding bits (if Len == 8, this is the prefix word)
    	Len       int    // Length of encoding in bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func_test.go

    	}
    
    }
    
    // opcodeMap returns a map from opcode to the number of times that opcode
    // appears in the function.
    func opcodeMap(f *Func) map[Op]int {
    	m := map[Op]int{}
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			m[v.Op]++
    		}
    	}
    	return m
    }
    
    // opcodeCounts checks that the number of opcodes listed in m agree with the
    // number of opcodes that appear in the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    	return printUint16(uint16(c))
    }
    
    // An OpCode is a DNS operation code.
    type OpCode uint16
    
    // GoString implements fmt.GoStringer.GoString.
    func (o OpCode) GoString() string {
    	return printUint16(uint16(o))
    }
    
    // An RCode is a DNS response status code.
    type RCode uint16
    
    // Header.RCode values.
    const (
    	RCodeSuccess        RCode = 0 // NoError
    	RCodeFormatError    RCode = 1 // FormErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top