Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for stack_frame (0.18 sec)

  1. src/internal/trace/testtrace/validation.go

    		return s
    	}
    	return s
    }
    
    func checkStack(e *errAccumulator, stk trace.Stack) {
    	// Check for non-empty values, but we also check for crashes due to incorrect validation.
    	i := 0
    	stk.Frames(func(f trace.StackFrame) bool {
    		if i == 0 {
    			// Allow for one fully zero stack.
    			//
    			// TODO(mknyszek): Investigate why that happens.
    			return true
    		}
    		if f.Func == "" || f.File == "" || f.PC == 0 || f.Line == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    		}
    		state.varParts[topSlot.N] = append(state.varParts[topSlot.N], SlotID(i))
    	}
    
    	// Recreate the LocalSlot for each stack-only variable.
    	// This would probably be better as an output from stackframe.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op == OpVarDef {
    				n := v.Aux.(*ir.Name)
    				if ir.IsSynthetic(n) {
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		s.vars[memVar] = s.newValue1Apos(ssa.OpVarLive, types.TypeMem, deferBitsTemp, s.mem(), false)
    	}
    
    	var params *abi.ABIParamResultInfo
    	params = s.f.ABISelf.ABIAnalyze(fn.Type(), true)
    
    	// The backend's stackframe pass prunes away entries from the fn's
    	// Dcl list, including PARAMOUT nodes that correspond to output
    	// params passed in registers. Walk the Dcl list and capture these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_Int32Tensor, [{The maximum size of the stack if non-negative. If negative, the stack
    size is unlimited.}]>:$max_size,
    
        TypeAttr:$elem_type,
        DefaultValuedOptionalAttr<StrAttr, "\"\"">:$stack_name
      );
    
      let results = (outs
        Res<TF_ResourceTensor, [{The handle to the stack.}], [TF_StackAlloc]>:$handle
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top