Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for abiSel (0.15 sec)

  1. src/runtime/traceback_test.go

    	return tte2(n - 1)
    }
    func tte4(n int) string {
    	return tte3(n - 1)
    }
    
    func TestTracebackArgs(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    	optimized := !testenv.OptimizationOff()
    	abiSel := func(x, y string) string {
    		// select expected output based on ABI
    		// In noopt build we always spill arguments so the output is the same as stack ABI.
    		if optimized && abi.IntArgRegs > 0 {
    			return x
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. src/reflect/abi.go

    	abiStepFloatReg             // copy to/from FP register
    )
    
    // abiSeq represents a sequence of ABI instructions for copying
    // from a series of reflect.Values to a call frame (for call arguments)
    // or vice-versa (for call results).
    //
    // An abiSeq should be populated by calling its addArg method.
    type abiSeq struct {
    	// steps is the set of instructions.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    	}
    }
    
    // ABISet is a bit set of ABI values.
    type ABISet uint8
    
    const (
    	// ABISetCallable is the set of all ABIs any function could
    	// potentially be called using.
    	ABISetCallable ABISet = (1 << ABI0) | (1 << ABIInternal)
    )
    
    // Ensure ABISet is big enough to hold all ABIs.
    var _ ABISet = 1 << (ABICount - 1)
    
    func ABISetOf(abi ABI) ABISet {
    	return 1 << abi
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/abi.go

    // definition ABIs and reference ABIs.
    type SymABIs struct {
    	defs map[string]obj.ABI
    	refs map[string]obj.ABISet
    }
    
    func NewSymABIs() *SymABIs {
    	return &SymABIs{
    		defs: make(map[string]obj.ABI),
    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    // s's maps. Symbols in this package may be written either as "".X or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. README.md

    discussion, and please direct specific questions to
    [Stack Overflow](https://stackoverflow.com/questions/tagged/tensorflow).**
    
    The TensorFlow project strives to abide by generally accepted best practices in
    open-source software development.
    
    ## Patching guidelines
    
    Follow these steps to patch a specific version of TensorFlow, for example, to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/func.go

    	ruleMatches    map[string]int // number of times countRule was called during compilation for any given string
    	ABI0           *abi.ABIConfig // A copy, for no-sync access
    	ABI1           *abi.ABIConfig // A copy, for no-sync access
    	ABISelf        *abi.ABIConfig // ABI for function being compiled
    	ABIDefault     *abi.ABIConfig // ABI for rtcall and other no-parsed-signature/pragma functions.
    
    	scheduled   bool  // Values in Blocks are in final order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/a.out.go

    	AFNABSCC
    	AFNEG
    	AFNEGCC
    	AFNMADD
    	AFNMADDCC
    	AFNMADDS
    	AFNMADDSCC
    	AFNMSUB
    	AFNMSUBCC
    	AFNMSUBS
    	AFNMSUBSCC
    	AFRSP
    	AFRSPCC
    	AFSUB
    	AFSUBCC
    	AFSUBS
    	AFSUBSCC
    	AISEL
    	AMOVMW
    	ALBAR
    	ALHAR
    	ALSW
    	ALWAR
    	ALWSYNC
    	AMOVDBR
    	AMOVWBR
    	AMOVB
    	AMOVBU
    	AMOVBZ
    	AMOVBZU
    	AMOVH
    	AMOVHBR
    	AMOVHU
    	AMOVHZ
    	AMOVHZU
    	AMOVW
    	AMOVWU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    	// For ABIs other than this function's definition ABI, the
    	// compiler generates ABI wrapper functions. This is only tracked
    	// within a package.
    	ABIRefs obj.ABISet
    
    	NumDefers  int32 // number of defer calls in the function
    	NumReturns int32 // number of explicit returns in the function
    
    	// NWBRCalls records the LSyms of functions called by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top