Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for asmand (0.18 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	return
    
    bad:
    	ctxt.Diag("asmand: bad address %v", obj.Dconv(p, a))
    }
    
    func (ab *AsmBuf) asmand(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog, a *obj.Addr, ra *obj.Addr) {
    	ab.asmandsz(ctxt, cursym, p, a, reg[ra.Reg], regrex[ra.Reg], 0)
    }
    
    func (ab *AsmBuf) asmando(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog, a *obj.Addr, o int) {
    	ab.asmandsz(ctxt, cursym, p, a, o, 0, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/anames.go

    	"MOVFV",
    	"MOVDV",
    	"MOVVF",
    	"MOVVD",
    	"AMSWAPB",
    	"AMSWAPH",
    	"AMSWAPW",
    	"AMSWAPV",
    	"AMCASB",
    	"AMCASH",
    	"AMCASW",
    	"AMCASV",
    	"AMADDW",
    	"AMADDV",
    	"AMANDW",
    	"AMANDV",
    	"AMORW",
    	"AMORV",
    	"AMXORW",
    	"AMXORV",
    	"AMMAXW",
    	"AMMAXV",
    	"AMMINW",
    	"AMMINV",
    	"AMMAXWU",
    	"AMMAXVU",
    	"AMMINWU",
    	"AMMINVU",
    	"AMSWAPDBB",
    	"AMSWAPDBH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	case asmSlice:
    		cc = append(cc, newComponent(suffix+"_base", asmKind(arch.ptrSize), "slice base", off, arch.ptrSize, suffix))
    		cc = append(cc, newComponent(suffix+"_len", asmKind(arch.intSize), "slice len", off+arch.ptrSize, arch.intSize, suffix))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/internal/asan/asan.go

    // Copyright 2024 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.
    
    //go:build asan
    
    package asan
    
    import (
    	"unsafe"
    )
    
    const Enabled = true
    
    //go:linkname Read runtime.asanread
    func Read(addr unsafe.Pointer, len uintptr)
    
    //go:linkname Write runtime.asanwrite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 399 bytes
    - Viewed (0)
  5. src/runtime/asan.go

    // Copyright 2021 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.
    
    //go:build asan
    
    package runtime
    
    import (
    	"unsafe"
    )
    
    // Public address sanitizer API.
    func ASanRead(addr unsafe.Pointer, len int) {
    	sp := getcallersp()
    	pc := getcallerpc()
    	doasanread(addr, uintptr(len), sp, pc)
    }
    
    func ASanWrite(addr unsafe.Pointer, len int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:39:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	AMCASH		R14, (R13), R12 // acb95838
    	AMCASW		R14, (R13), R12 // ac395938
    	AMCASV		R14, (R13), R12 // acb95938
    	AMADDW		R14, (R13), R12 // ac396138
    	AMADDV		R14, (R13), R12 // acb96138
    	AMANDW		R14, (R13), R12 // ac396238
    	AMANDV		R14, (R13), R12 // acb96238
    	AMORW		R14, (R13), R12 // ac396338
    	AMORV		R14, (R13), R12 // acb96338
    	AMXORW		R14, (R13), R12 // ac396438
    	AMXORV		R14, (R13), R12 // acb96438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlprogram.mlir

        %0 = tf_executor.graph {
          %outputs, %control = tf_executor.island wraps "tf.Const"() {device = "", value = dense<1> : tensor<i32>} : () -> tensor<i32>
          %outputs_0, %control_1 = tf_executor.island wraps "tf.Const"() {device = "", value = dense<20> : tensor<i32>} : () -> tensor<i32>
          %outputs_2, %control_3 = tf_executor.island wraps "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 19:27:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/a.out.go

    	AMOVVF
    	AMOVVD
    
    	// 2.2.7. Atomic Memory Access Instructions
    	AAMSWAPB
    	AAMSWAPH
    	AAMSWAPW
    	AAMSWAPV
    	AAMCASB
    	AAMCASH
    	AAMCASW
    	AAMCASV
    	AAMADDW
    	AAMADDV
    	AAMANDW
    	AAMANDV
    	AAMORW
    	AAMORV
    	AAMXORW
    	AAMXORV
    	AAMMAXW
    	AAMMAXV
    	AAMMINW
    	AAMMINV
    	AAMMAXWU
    	AAMMAXVU
    	AAMMINWU
    	AAMMINVU
    	AAMSWAPDBB
    	AAMSWAPDBH
    	AAMSWAPDBW
    	AAMSWAPDBV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. docs/en/data/sponsors_badge.yml

    logins:
      - jina-ai
      - deta
      - investsuite
      - mikeckennedy
      - deepset-ai
      - cryptapi
      - xoflare
      - DropbaseHQ
      - VincentParedes
      - BLUE-DEVIL1134
      - ObliviousAI
      - Doist
      - nihpo
      - armand-sauzay
      - databento-bot
      - databento
      - nanram22
      - Flint-company
      - porter-dev
      - fern-api
      - ndimares
      - svixhq
      - Alek99
      - codacy
      - zanfaruqui
      - scalar
      - bump-sh
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jan 31 22:13:52 UTC 2024
    - 415 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_global_tensors.mlir

        %value, %value_control = tf_executor.island wraps "tf.GetKey"() : () -> tensor<f32>
        %ret0, %ret0_control = tf_executor.island wraps "tf.SomeOp"() : () -> !tf_res
        %ret1, %ret1_control = tf_executor.island wraps "tf.SomeOp"() : () -> !tf_res
        %control_unknown = tf_executor.island wraps "tf.UnknownOp"() : () -> ()
        %key, %key_control = tf_executor.island wraps "tf.GetKey"() : () -> !tf_str
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 03:07:35 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top