Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for EndSequence (0.55 sec)

  1. src/debug/dwarf/line_test.go

    		t.Errorf("len(a) == %d, len(b) == %d", len(a), len(b))
    		return false
    	}
    
    	for i := range a {
    		al, bl := a[i], b[i]
    		// If both are EndSequence, then the only other valid
    		// field is Address. Otherwise, test equality of all
    		// fields.
    		if al.EndSequence && bl.EndSequence && al.Address == bl.Address {
    			continue
    		}
    		if al.File.Name != bl.File.Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. src/debug/dwarf/line.go

    	Discriminator int
    
    	// EndSequence indicates that Address is the first byte after
    	// the end of a sequence of target machine instructions. If it
    	// is set, only this and the Address field are meaningful. A
    	// line number table may contain information for multiple
    	// potentially disjoint instruction sequences. The last entry
    	// in a line table should always have EndSequence set.
    	EndSequence bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

      }
    
      // Adjust indention for fields in sequences.
    
      void StartSequence() override {
        s += "{";
        s += d;
        ++indent_level;
      }
    
      void EndSequence() override {
        s += d;
        --indent_level;
        indent();
        s += "}";
      }
    
      void Field(size_t /*field_idx*/, size_t set_idx,
                 flatbuffers::ElementaryType /*type*/, bool /*is_vector*/,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf_test.go

    			for {
    				err := lnrdr.Next(&lne)
    				if err == io.EOF {
    					break
    				}
    				if err != nil {
    					t.Fatalf("error reading next DWARF line: %v", err)
    				}
    				if lne.EndSequence {
    					continue
    				}
    				if lne.Address == lastAddr && (lne.File.Name != lastFile || lne.Line != lastLine) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  5. api/go1.5.txt

    pkg debug/dwarf, type LineEntry struct, BasicBlock bool
    pkg debug/dwarf, type LineEntry struct, Column int
    pkg debug/dwarf, type LineEntry struct, Discriminator int
    pkg debug/dwarf, type LineEntry struct, EndSequence bool
    pkg debug/dwarf, type LineEntry struct, EpilogueBegin bool
    pkg debug/dwarf, type LineEntry struct, File *LineFile
    pkg debug/dwarf, type LineEntry struct, ISA int
    pkg debug/dwarf, type LineEntry struct, IsStmt bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"LineEntry", Type, 5},
    		{"LineEntry.Address", Field, 5},
    		{"LineEntry.BasicBlock", Field, 5},
    		{"LineEntry.Column", Field, 5},
    		{"LineEntry.Discriminator", Field, 5},
    		{"LineEntry.EndSequence", Field, 5},
    		{"LineEntry.EpilogueBegin", Field, 5},
    		{"LineEntry.File", Field, 5},
    		{"LineEntry.ISA", Field, 5},
    		{"LineEntry.IsStmt", Field, 5},
    		{"LineEntry.Line", Field, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top