Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for debugInfo (0.11 sec)

  1. src/debug/dwarf/open.go

    		pubnames:    pubnames,
    		ranges:      ranges,
    		str:         str,
    		abbrevCache: make(map[uint64]abbrevTable),
    		typeCache:   make(map[Offset]Type),
    		typeSigs:    make(map[uint64]*typeUnit),
    	}
    
    	// Sniff .debug_info to figure out byte order.
    	// 32-bit DWARF: 4 byte length, 2 byte version.
    	// 64-bit DWARf: 4 bytes of 0xff, 8 byte length, 2 byte version.
    	if len(d.info) < 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

                               use_output_shapes, /*args=*/{},
                               /*control_rets=*/{}, DEVICE_TPU,
                               FunctionLibraryDefinition(OpRegistry::Global()),
                               /*debug_info=*/{},
                               /*custom_legalization_passes=*/{});
    }
    
    TEST(CompileMlirUtil, UsesCorrectOriginalShapeWithoutOutputShapes) {
      TF_ASSERT_OK_AND_ASSIGN(auto graph, BuildOpGraphWithOutputShapes());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/dwtest/dwtest.go

    // license that can be found in the LICENSE file.
    
    package dwtest
    
    import (
    	"debug/dwarf"
    	"errors"
    	"fmt"
    	"os"
    )
    
    // Helper type for supporting queries on DIEs within a DWARF
    // .debug_info section. Invoke the populate() method below passing in
    // a dwarf.Reader, which will read in all DIEs and keep track of
    // parent/child relationships. Queries can then be made to ask for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    // the generated code will not compile if (3) is violated. Violating (2)
    // will result in code silently wrong code (which will usually be detected
    // by one of the tests that parse debug_info).
    func TestPutVarAbbrevGenerator(t *testing.T) {
    	spvagenfile := pvagenerate(t)
    
    	if pvaDoGenerate {
    		err := os.WriteFile(pvagenfile, []byte(spvagenfile), 0660)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top