Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for asan (0.05 sec)

  1. docs/az/docs/index.md

    * **İntuitiv**: Əla redaktor dəstəyi. Hər yerdə <abbr title="auto-complete, autocompletion, IntelliSense olaraq da bilinir">otomatik tamamlama</abbr>. Xətaları müəyyənləşdirməyə daha az vaxt sərf edəcəksiniz.
    * **Asan**: İstifadəsi və öyrənilməsi asan olması üçün nəzərdə tutulmuşdur. Sənədləri oxumaq üçün daha az vaxt ayıracaqsınız.
    * **Qısa**: Kod təkrarlanmasını minimuma endirin. Hər bir parametr tərifində birdən çox xüsusiyyət ilə və daha az səhvlə qarşılaşacaqsınız.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    		c = tconv(c, types.NewPtr(defStringstruct))
    		c = ir.NewSelectorExpr(base.Pos, ir.ODOT, c, lname("data"))
    		setField("moduleName", c, i)
    		// Assign asanL[i].filename, asanL[i].line, asanL[i].column
    		// and assign globals[i].location = uintptr(unsafe.Pointer(&asanL[i]))
    		asanLi := ir.NewIndexExpr(base.Pos, asanlocation, ir.NewInt(base.Pos, int64(i)))
    		filename := ir.NewString(base.Pos, base.Ctxt.PosTable.Pos(n.Pos()).Filename()+"\000")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/runtime/asan_riscv64.s

    // Copyright 2022 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
    
    #include "go_asm.h"
    #include "textflag.h"
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanread(SB), NOSPLIT, $0-32
    	MOV	addr+0(FP), X10
    	MOV	sz+8(FP), X11
    	MOV	sp+16(FP), X12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 06:55:54 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/asan_arm64.s

    // 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
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define RARG0 R0
    #define RARG1 R1
    #define RARG2 R2
    #define RARG3 R3
    #define FARG R4
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/go/scriptconds_test.go

    		return script.OnceCondition(summary, func() (bool, error) { return f(), nil })
    	}
    
    	add("abscc", script.Condition("default $CC path is absolute and exists", defaultCCIsAbsolute))
    	add("asan", sysCondition("-asan", platform.ASanSupported, true))
    	add("buildmode", script.PrefixCondition("go supports -buildmode=<suffix>", hasBuildmode))
    	add("case-sensitive", script.OnceCondition("$WORK filesystem is case-sensitive", isCaseSensitive))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/runtime/asan_loong64.s

    // Copyright 2023 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
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define RARG0 R4
    #define RARG1 R5
    #define RARG2 R6
    #define RARG3 R7
    #define FARG  R8
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/pkgspecial.go

    	"internal/stringslite",
    }
    
    // extraNoInstrumentPkgs is the set of packages in addition to runtimePkgs that
    // should have NoInstrument set.
    var extraNoInstrumentPkgs = []string{
    	"runtime/race",
    	"runtime/msan",
    	"runtime/asan",
    	// We omit bytealg even though it's imported by runtime because it also
    	// backs a lot of package bytes. Currently we don't have a way to omit race
    	// instrumentation when used from the runtime while keeping race
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/runtime/asan_ppc64le.s

    // Copyright 2022 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
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define RARG0 R3
    #define RARG1 R4
    #define RARG2 R5
    #define RARG3 R6
    #define FARG R12
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 18:13:33 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/link/doc.go

    		or initialized to a constant string expression. -X will not work if the initializer makes
    		a function call or refers to other variables.
    		Note that before Go 1.5 this option took two separate arguments.
    	-asan
    		Link with C/C++ address sanitizer support.
    	-aslr
    		Enable ASLR for buildmode=c-shared on windows (default true).
    	-bindnow
    		Mark a dynamically linked ELF object for immediate function binding (default false).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/config.go

    		return true, fmt.Sprintf("%s/%s requires external linking", buildcfg.GOOS, buildcfg.GOARCH)
    	}
    
    	if *flagMsan {
    		return true, "msan"
    	}
    
    	if *flagAsan {
    		return true, "asan"
    	}
    
    	if iscgo && platform.MustLinkExternal(buildcfg.GOOS, buildcfg.GOARCH, true) {
    		return true, buildcfg.GOARCH + " does not support internal cgo"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top