Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for Gdead (0.06 sec)

  1. src/cmd/compile/internal/ssa/lower.go

    }
    
    // checkLower checks for unlowered opcodes and fails if we find one.
    func checkLower(f *Func) {
    	// Needs to be a separate phase because it must run after both
    	// lowering and a subsequent dead code elimination (because lowering
    	// rules may leave dead generic ops behind).
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if !opcodeTable[v.Op].generic {
    				continue // lowered
    			}
    			switch v.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 00:16:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/fuse.go

    	b.Likely = BranchUnknown
    	b.ResetControls()
    	// The values in b may be dead codes, and clearing them in time may
    	// obtain new optimization opportunities.
    	// First put dead values that can be deleted into a slice walkValues.
    	// Then put their arguments in walkValues before resetting the dead values
    	// in walkValues, because the arguments may also become dead values.
    	walkValues := []*Value{}
    	for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/eventbus/DeadEvent.java

       *
       * @return the source of this event.
       */
      public Object getSource() {
        return source;
      }
    
      /**
       * Returns the wrapped, 'dead' event, which the system was unable to deliver to any registered
       * subscriber.
       *
       * @return the 'dead' event that could not be delivered.
       */
      public Object getEvent() {
        return event;
      }
    
      @Override
      public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/eventbus/DeadEvent.java

       *
       * @return the source of this event.
       */
      public Object getSource() {
        return source;
      }
    
      /**
       * Returns the wrapped, 'dead' event, which the system was unable to deliver to any registered
       * subscriber.
       *
       * @return the 'dead' event that could not be delivered.
       */
      public Object getEvent() {
        return event;
      }
    
      @Override
      public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore_test.go

    		Bloc("exit",
    			Exit("store3")))
    
    	CheckFunc(fun.f)
    	dse(fun.f)
    	CheckFunc(fun.f)
    
    	v1 := fun.values["store1"]
    	if v1.Op != OpCopy {
    		t.Errorf("dead store not removed")
    	}
    
    	v2 := fun.values["zero1"]
    	if v2.Op != OpCopy {
    		t.Errorf("dead store (zero) not removed")
    	}
    }
    
    func TestDeadStorePhi(t *testing.T) {
    	// make sure we don't get into an infinite loop with phi values.
    	c := testConfig(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    			}
    			err := osInterface.Remove(logSymlink)
    			if err != nil {
    				klog.ErrorS(err, "Failed to remove container log dead symlink", "path", logSymlink)
    			} else {
    				klog.V(4).InfoS("Removed symlink", "path", logSymlink)
    			}
    		}
    	}
    	return nil
    }
    
    // GarbageCollect removes dead containers using the specified container gc policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/cmd/vet/testdata/deadcode/deadcode.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the dead code checker.
    
    package deadcode
    
    func _() int {
    	print(1)
    	return 2
    	println() // ERROR "unreachable code"
    	return 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 320 bytes
    - Viewed (0)
  8. test/typeparam/graph.go

    	16: {exits: [10]int{east: 17, north: 13, sw: 18}}, // skeleton, etc.
    	17: {exits: [10]int{west: 16}},                    // Dead End
    	18: {exits: [10]int{down: 16, east: 19, west: 18, up: 22}},
    	19: {exits: [10]int{up: 29, west: 18, ne: 15, east: 20, south: 30}},
    	20: {exits: [10]int{ne: 19, west: 20, se: 21}},
    	21: {exits: [10]int{north: 20}}, // Dead End
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. test/fixedbugs/issue28616.go

    // compile
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure we don't dead code eliminate a label.
    
    package p
    
    var i int
    
    func f() {
    
    	if true {
    
    		if i == 1 {
    			goto label
    		}
    
    		return
    	}
    
    label:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 18:50:16 UTC 2018
    - 325 bytes
    - Viewed (0)
  10. test/fixedbugs/issue19678.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to crash when compiling functions containing
    // forward refs in dead code.
    
    package p
    
    var f func(int)
    
    func g() {
    l1:
    	i := 0
    	goto l1
    l2:
    	f(i)
    	goto l2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:00:15 UTC 2017
    - 337 bytes
    - Viewed (0)
Back to top