Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,103 for opcode (0.13 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    // 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.
    
    // This contains the majority of valid opcode combinations
    // available in cmd/internal/obj/ppc64/asm9.go with
    // their valid instruction encodings.
    
    #include "../../../../../runtime/textflag.h"
    
    // In case of index mode instructions, usage of
    // (Rx)(R0) is equivalent to (Rx+R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	m := asmOpcode.FindStringSubmatch(line)
    	if m == nil {
    		if !strings.HasPrefix(strings.TrimSpace(line), "//") {
    			badf("cannot find assembly opcode")
    		}
    		return
    	}
    
    	addr := strings.HasPrefix(expr, "$")
    
    	// Determine operand sizes from instruction.
    	// Typically the suffix suffices, but there are exceptions.
    	var src, dst, kind asmKind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        auto operators = msubgraph->mutable_operators();
        for (auto op : *operators) {
          auto opcode_idx = op->opcode_index();
          auto opcodes = mutable_model->operator_codes();
          auto opcode = (*opcodes)[opcode_idx]->builtin_code();
          if (opcode == tflite::BuiltinOperator_CUSTOM) {
            std::vector<int32_t> inputs(op->inputs()->begin(), op->inputs()->end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/debug/dwarf/type.go

    //
    // Here is an example of C/C++ bit field use, along with what to
    // expect in terms of DWARF bit offset info. Consider this code:
    //
    //	struct S {
    //		int q;
    //		int j:5;
    //		int k:6;
    //		int m:5;
    //		int n:8;
    //	} s;
    //
    // For the code above, one would expect to see the following for
    // DW_AT_bit_offset values (using GCC 8):
    //
    //	       Little   |     Big
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    // Copyright 2016 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 main
    
    import (
    	"fmt"
    )
    
    // Notes:
    //  - Boolean types occupy the entire register. 0=false, 1=true.
    
    // Suffixes encode the bit width of various instructions:
    //
    // D (double word) = 64 bit int
    // W (word)        = 32 bit int
    // H (half word)   = 16 bit int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    			su.SetRelocAdd(rIdx, r.Add()+int64(ldr.SymGot(targ)))
    		} else if targType == sym.STEXT {
    			if isPLT16_LO_DS {
    				// Expect an ld opcode to nop
    				rewritetonop(target, ldr, su, int64(r.Off()), MASK_OP_LD, OP_LD)
    			} else {
    				// Expect an addis opcode to nop
    				rewritetonop(target, ldr, su, int64(r.Off()), MASK_OP_ADDIS, OP_ADDIS)
    			}
    			// And we can ignore this reloc now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	return fcb.encode()
    }
    
    // addFlags32 returns the flags that would be set from computing x+y.
    func addFlags32(x, y int32) flagConstant {
    	var fcb flagConstantBuilder
    	fcb.Z = x+y == 0
    	fcb.N = x+y < 0
    	fcb.C = uint32(x+y) < uint32(x)
    	fcb.V = x >= 0 && y >= 0 && x+y < 0 || x < 0 && y < 0 && x+y >= 0
    	return fcb.encode()
    }
    
    // subFlags32 returns the flags that would be set from computing x-y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// timestamps.
    		ByteStringToTime: cbor.ByteStringToTimeAllowed,
    	}.DecMode()
    	if err != nil {
    		panic(err)
    	}
    	return decode
    }()
    
    // DecodeLax is derived from Decode, but does not complain about unknown fields in the input.
    var DecodeLax cbor.DecMode = func() cbor.DecMode {
    	opts := Decode.DecOptions()
    	opts.ExtraReturnErrors &^= cbor.ExtraDecErrorUnknownField // clear bit
    	dm, err := opts.DecMode()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		// is itself invalid. We reject all invalid text strings at decode time and do not
    		// validate or sanitize all Go strings at encode time. Encoding Go strings to the
    		// byte string type is comparable to the existing Protobuf behavior and cheaply
    		// ensures that the output is valid CBOR.
    		String: cbor.StringToByteString,
    
    		// Encode struct field names to the byte string type rather than the text string
    		// type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/internal/profile/encode.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 profile
    
    import (
    	"errors"
    	"fmt"
    	"sort"
    )
    
    func (p *Profile) decoder() []decoder {
    	return profileDecoder
    }
    
    // preEncode populates the unexported fields to be used by encode
    // (with suffix X) from the corresponding exported fields. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top