Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 194 for argsize (0.18 sec)

  1. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "CALLtail", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    	guard = g->stackguard
    	frame = function's stack frame size
    	argsize = size of function arguments (call + return)
    
    	stack frame size <= StackSmall:
    		CMPQ guard, SP
    		JHI 3(PC)
    		MOVQ m->morearg, $(argsize << 32)
    		CALL morestack(SB)
    
    	stack frame size > StackSmall but < StackBig
    		LEAQ (frame-StackSmall)(SP), R0
    		CMPQ guard, R0
    		JHI 3(PC)
    		MOVQ m->morearg, $(argsize << 32)
    		CALL morestack(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "CALLtail", argLength: -1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                         // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen_test_h.golden

      // Number of variables for the compiled computation.
      static constexpr size_t kNumVariables = 3;
    
      // Byte size of each argument buffer. There are kNumArgs entries.
      static const ::int64_t ArgSize(::tensorflow::int32 index) {
        return BufferInfos()[ArgIndexToBufferIndex()[index]].size();
      }
    
      // Returns static data used to create an XlaCompiledCpuFunction.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CALLtail", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                  // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "CALLtail", argLength: -1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                 // tail call static function aux.(*obj.LSym).  last arg=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    			typ, argsize, retOffset, stack, gc, inRegs, outRegs, ptrs := FuncLayout(lt.typ, lt.rcvr)
    			if typ.Size() != lt.size {
    				t.Errorf("funcLayout(%v, %v).size=%d, want %d", lt.typ, lt.rcvr, typ.Size(), lt.size)
    			}
    			if argsize != lt.argsize {
    				t.Errorf("funcLayout(%v, %v).argsize=%d, want %d", lt.typ, lt.rcvr, argsize, lt.argsize)
    			}
    			if retOffset != lt.retOffset {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CALLtail", argLength: -1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                // tail call static function aux.(*obj.LSym).  last arg=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. src/runtime/asm_arm64.s

    	ADD	$8, RSP, R5;			\
    	BIC	$0xf, R4, R6;			\
    	CBZ	R6, 6(PC);			\
    	/* if R6=(argsize&~15) != 0 */		\
    	ADD	R6, R5, R6;			\
    	/* copy 16 bytes a time */		\
    	LDP.P	16(R3), (R7, R8);		\
    	STP.P	(R7, R8), 16(R5);		\
    	CMP	R5, R6;				\
    	BNE	-3(PC);				\
    	AND	$0xf, R4, R6;			\
    	CBZ	R6, 6(PC);			\
    	/* if R6=(argsize&15) != 0 */		\
    	ADD	R6, R5, R6;			\
    	/* copy 1 byte a time for the rest */	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/codegen.cc

      // Number of variables for the compiled computation.
      static constexpr size_t kNumVariables = {{VARIABLE_NUM}};
    
      // Byte size of each argument buffer. There are kNumArgs entries.
      static const ::int64_t ArgSize(::tensorflow::int32 index) {
        return BufferInfos()[ArgIndexToBufferIndex()[index]].size();
      }
    
      // Returns static data used to create an XlaCompiledCpuFunction.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top