Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for debugInfo (0.14 sec)

  1. src/cmd/compile/internal/ssagen/pgen.go

    			// i.e., stack assign if AUTO, or if PARAMOUT in registers (which has no predefined spill locations)
    			continue
    		}
    		if mls != nil && mls.Subsumed(n) {
    			continue
    		}
    		if !n.Used() {
    			fn.DebugInfo.(*ssa.FuncDebug).OptDcl = fn.Dcl[i:]
    			fn.Dcl = fn.Dcl[:i]
    			break
    		}
    		types.CalcSize(n.Type())
    		w := n.Type().Size()
    		if w >= types.MaxWidth || w < 0 {
    			base.Fatalf("bad width")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    	JwtKeyResolver *model.JwksResolver
    
    	// ListRemoteClusters collects debug information about other clusters this istiod reads from.
    	ListRemoteClusters func() []cluster.DebugInfo
    
    	// ClusterAliases are alias names for cluster. When a proxy connects with a cluster ID
    	// and if it has a different alias we should use that a cluster ID for proxy.
    	ClusterAliases map[cluster.ID]cluster.ID
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	int(0),
    	int8(0),
    	int16(0),
    	int32(0),
    	int64(0),
    	uint(0),
    	uint8(0),
    	uint16(0),
    	uint32(0),
    	uint64(0),
    }
    
    var debugInfo = godebug.New("#fuzzdebug").Value() == "1"
    
    func shouldPrintDebugInfo() bool {
    	return debugInfo
    }
    
    func (c *coordinator) debugLogf(format string, args ...any) {
    	t := time.Now().Format("2006-01-02 15:04:05.999999999")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	// DWARF-gen later on. See issue 48573 for more details.
    	var debugInfo ssa.FuncDebug
    	for _, n := range fn.Dcl {
    		if n.Class == ir.PPARAMOUT && n.IsOutputParamInRegisters() {
    			debugInfo.RegOutputParams = append(debugInfo.RegOutputParams, n)
    		}
    	}
    	fn.DebugInfo = &debugInfo
    
    	// Generate addresses of local declarations
    	s.decladdrs = map[*ir.Name]*ssa.Value{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    	// scope's parent is stored at Parents[i-1].
    	Parents []ScopeID
    
    	// Marks records scope boundary changes.
    	Marks []Mark
    
    	FieldTrack map[*obj.LSym]struct{}
    	DebugInfo  interface{}
    	LSym       *obj.LSym // Linker object in this function's native ABI (Func.ABI)
    
    	Inl *Inline
    
    	// RangeParent, if non-nil, is the first non-range body function containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // RUN: tf-quant-opt %s -quant-merge-initializer-function-ops-to-main \
    // RUN:     -allow-unregistered-dialect -mlir-disable-threading \
    // RUN:     -split-input-file -mlir-print-local-scope -mlir-print-debuginfo \
    // RUN:     -verify-diagnostics | FileCheck %s --check-prefix CHECK-LOC
    
    // CHECK-LABEL: module attributes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	DwFixups           *DwarfFixupTable
    	Imports            []goobj.ImportedPkg
    	DiagFunc           func(string, ...interface{})
    	DiagFlush          func()
    	DebugInfo          func(fn *LSym, info *LSym, curfn Func) ([]dwarf.Scope, dwarf.InlCalls)
    	GenAbstractFunc    func(fn *LSym)
    	Errors             int
    
    	InParallel    bool // parallel backend phase in effect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    	state.lists[varID] = list
    }
    
    // PutLocationList adds list (a location list in its intermediate representation) to listSym.
    func (debugInfo *FuncDebug) PutLocationList(list []byte, ctxt *obj.Link, listSym, startPC *obj.LSym) {
    	getPC := debugInfo.GetPC
    
    	if ctxt.UseBASEntries {
    		listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, ^0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/debug_info.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    # RUN: %p/debug_info | FileCheck %s
    
    # pylint: disable=missing-docstring,line-too-long
    import tensorflow.compat.v2 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common
    
    
    class TestModule(tf.Module):
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 03 00:08:31 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // debug_info might not be loaded with loader_lite.
        GraphDebugInfo debug_info;
        if (bundle.debug_info != nullptr) debug_info = *bundle.debug_info;
    
        TF_ASSIGN_OR_RETURN(auto input,
                            SimpleSavedModelMLIRImportInput::Create(
                                options, &bundle.meta_graph_def, debug_info));
    
        TF_ASSIGN_OR_RETURN(auto module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top