Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for noregabi (0.12 sec)

  1. src/internal/buildcfg/exp.go

    			field := rv.Field(i)
    			names[strings.ToLower(rt.Field(i).Name)] = field.SetBool
    		}
    
    		// "regabi" is an alias for all working regabi
    		// subexperiments, and not an experiment itself. Doing
    		// this as an alias make both "regabi" and "noregabi"
    		// do the right thing.
    		names["regabi"] = func(v bool) {
    			flags.RegabiWrappers = v
    			flags.RegabiArgs = v
    		}
    
    		// Parse names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_riscv64.s

    	// X10 = a_base
    	// X11 = b_base
    	JMP	memequal<>(SB)
    
    // On entry X10 and X11 contain pointers, X12 contains length.
    // For non-regabi X13 contains address for return value.
    // For regabi return value in X10.
    TEXT memequal<>(SB),NOSPLIT|NOFRAME,$0
    	BEQ	X10, X11, eq
    
    	MOV	$32, X23
    	BLT	X12, X23, loop4_check
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

    // If the numbers don't match, plugin cannot be loaded.
    static Status CheckABI(int pluginABI, int coreABI, StringPiece where) {
      if (pluginABI != coreABI)
        return errors::FailedPrecondition(
            strings::StrCat("Plugin ABI (", pluginABI, ") for ", where,
                            " operations doesn't match expected core ABI (",
                            coreABI, "). Plugin cannot be loaded."));
      return OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. src/internal/goexperiment/flags.go

    type Flags struct {
    	FieldTrack        bool
    	PreemptibleLoops  bool
    	StaticLockRanking bool
    	BoringCrypto      bool
    
    	// Regabi is split into several sub-experiments that can be
    	// enabled individually. Not all combinations work.
    	// The "regabi" GOEXPERIMENT is an alias for all "working"
    	// subexperiments.
    
    	// RegabiWrappers enables ABI wrappers for calling between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/internal/bytealg/compare_riscv64.s

    	// X12 = b_base
    	// X13 = b_len
    	JMP	compare<>(SB)
    
    // On entry:
    // X10 points to start of a
    // X11 length of a
    // X12 points to start of b
    // X13 length of b
    // for non-regabi X14 points to the address to store the return value (-1/0/1)
    // for regabi the return value in X10
    TEXT compare<>(SB),NOSPLIT|NOFRAME,$0
    	BEQ	X10, X12, cmp_len
    
    	MOV	X11, X5
    	BGE	X13, X5, use_a_len // X5 = min(len(a), len(b))
    	MOV	X13, X5
    use_a_len:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/stmtlines_test.go

    		}
    	}
    
    	var m int
    	if runtime.GOARCH == "amd64" {
    		m = 1 // > 99% obtained on amd64, no backsliding
    	} else if runtime.GOARCH == "riscv64" {
    		m = 3 // XXX temporary update threshold to 97% for regabi
    	} else {
    		m = 2 // expect 98% elsewhere.
    	}
    
    	if len(nonStmtLines)*100 > m*len(lines) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. test/abi/bad_select_crash.go

    // build -goexperiment regabi,regabiargs
    
    // 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.
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"reflect"
    )
    
    func main() {
    	// Only print if there is a problem
    	Caller2()
    	if FailCount != 0 {
    		fmt.Fprintf(os.Stderr, "FAILURES: %d\n", FailCount)
    		os.Exit(2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 13:38:02 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  8. src/runtime/asm_riscv64.s

    	MOV	m_g0(T1), g
    	CALL	runtime·save_g(SB)
    	BNE	g, X10, 2(PC)
    	JMP	runtime·badmcall(SB)
    	MOV	0(CTXT), T1			// code pointer
    	MOV	(g_sched+gobuf_sp)(g), X2	// sp = m->g0->sched.sp
    	// we don't need special macro for regabi since arg0(X10) = g
    	SUB	$16, X2
    	MOV	X10, 8(X2)			// setup g
    	MOV	ZERO, 0(X2)			// clear return address
    	JALR	RA, T1
    	JMP	runtime·badmcall2(SB)
    
    // Save state of caller into g->sched,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    	} else {
    		s += "indirect call:"
    	}
    
    	// Sort variable names for display. Variables aren't in any particular order, and
    	// the order can change by architecture, particularly with differences in regabi.
    	var names []string
    	for j, n := range lv.vars {
    		if live.Get(int32(j)) {
    			names = append(names, n.Sym().Name)
    		}
    	}
    	sort.Strings(names)
    	for _, v := range names {
    		s += " " + v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top