Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for asmand (0.14 sec)

  1. src/cmd/compile/internal/ssa/flags_test.go

    	}
    	coverage := map[flagConstant]bool{}
    	for _, x := range numbers {
    		for _, y := range numbers {
    			a := logicFlags64(x & y)
    			b := flagRegister2flagConstant(asmAndFlags(x, y), false)
    			if a != b {
    				t.Errorf("asmAnd diff: x=%x y=%x got=%s want=%s\n", x, y, a, b)
    			}
    			coverage[a] = true
    		}
    	}
    	if len(coverage) != 3 {
    		t.Errorf("coverage too small, got %d want 3", len(coverage))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:36:17 UTC 2022
    - 2.5K 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/runtime/asan0.go

    // license that can be found in the LICENSE file.
    
    //go:build !asan
    
    // Dummy ASan support API, used when not built with -asan.
    
    package runtime
    
    import (
    	"unsafe"
    )
    
    const asanenabled = false
    
    // Because asanenabled is false, none of these functions should be called.
    
    func asanread(addr unsafe.Pointer, sz uintptr)            { throw("asan") }
    func asanwrite(addr unsafe.Pointer, sz uintptr)           { throw("asan") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 760 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/runtime/asan/asan.go

    // https://github.com/llvm/llvm-project/blob/main/compiler-rt/lib/asan/asan_init_version.h
    // This structure describes an instrumented global variable.
    //
    // TODO: If a later version of the ASan library changes __asan_global or __asan_global_source_location
    // structure, we need to make the same changes.
    struct _asan_global {
    	uintptr_t beg;
    	uintptr_t size;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 00:22:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/while_op.mlir

    // CHECK: "tf.opA"
    // CHECK-NOT: island
    // CHECK: name = "A"
    // CHECK-NOT: island
    // CHECK: name = "C"
    // CHECK-NOT: island
    // CHECK: name = "E"
    // CHECK: island {{.*}}name = "B"
    // CHECK: island {{.*}}name = "D"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top