Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 839 for nilcheck (0.13 sec)

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

    							v.Pos = v.Pos.WithNotStmt()
    						}
    						// This is a redundant explicit nil check.
    						v.reset(OpConstBool)
    						v.AuxInt = 1 // true
    					}
    				case OpNilCheck:
    					ptr := v.Args[0]
    					if nilCheck := nonNilValues[ptr.ID]; nilCheck != nil {
    						// This is a redundant implicit nil check.
    						// Logging in the style of the former compiler -- and omit line 1,
    						// which is usually in generated code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. test/nilcheck.go

    Matthew Dempsky <******@****.***> 1656546486 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:41:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue18725.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "os"
    
    func panicWhenNot(cond bool) {
    	if cond {
    		os.Exit(0)
    	} else {
    		panic("nilcheck elim failed")
    	}
    }
    
    func main() {
    	e := (*string)(nil)
    	panicWhenNot(e == e)
    	// Should never reach this line.
    	panicWhenNot(*e == *e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 20:21:55 UTC 2017
    - 415 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/schedule.go

    // otherwise v is ordered before s.
    // Specifically, values are ordered like
    //
    //	store1
    //	NilCheck that depends on store1
    //	other values that depends on store1
    //	store2
    //	NilCheck that depends on store2
    //	other values that depends on store2
    //	...
    //
    // The order of non-store and non-NilCheck values are undefined
    // (not necessarily dependency order). This should be cheaper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/nilcheck_test.go

    		if b == fun.blocks["secondCheck"] && isNilCheck(b) {
    			t.Errorf("secondCheck was not eliminated")
    		}
    		if b == fun.blocks["differentCheck"] && isNilCheck(b) {
    			foundDifferentCheck = true
    		}
    	}
    	if !foundDifferentCheck {
    		t.Errorf("removed differentCheck, but shouldn't have")
    	}
    }
    
    // TestNilcheckInFalseBranch tests that nil checks in the false branch of a nilcheck
    // block are *not* removed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/check.go

    				}
    			case OpNilCheck:
    				// nil checks have pointer type before scheduling, and
    				// void type after scheduling.
    				if f.scheduled {
    					if v.Uses != 0 {
    						f.Fatalf("nilcheck must have 0 uses %s", v.Uses)
    					}
    					if !v.Type.IsVoid() {
    						f.Fatalf("nilcheck must have void type %s", v.Type.String())
    					}
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/compile.go

    	// checkLower must run after lowering & subsequent dead code elim
    	{"lower", "checkLower"},
    	{"lowered deadcode", "checkLower"},
    	{"late lower", "checkLower"},
    	// late nilcheck needs instructions to be scheduled.
    	{"schedule", "late nilcheck"},
    	// flagalloc needs instructions to be scheduled.
    	{"schedule", "flagalloc"},
    	// regalloc needs flags to be allocated first.
    	{"flagalloc", "regalloc"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/main.go

    				fmt.Fprintln(w, "needIntTemp: true,")
    			}
    			if v.call {
    				fmt.Fprintln(w, "call: true,")
    			}
    			if v.tailCall {
    				fmt.Fprintln(w, "tailCall: true,")
    			}
    			if v.nilCheck {
    				fmt.Fprintln(w, "nilCheck: true,")
    			}
    			if v.faultOnNilArg0 {
    				fmt.Fprintln(w, "faultOnNilArg0: true,")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. test/nilptr3.go

    	// and the offset is small enough that if x is nil, the address will still be
    	// in the first unmapped page of memory.
    
    	_ = x[9] // ERROR "generated nil check" // bug: would like to remove this check (but nilcheck and load are in different blocks)
    
    	for {
    		if x[9] != 0 { // ERROR "removed nil check"
    			break
    		}
    	}
    
    	x = fx10()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fuse_test.go

    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("c1", OpArg, c.config.Types.Bool, 0, nil),
    			Valu("p", OpArg, c.config.Types.IntPtr, 0, nil),
    			If("c1", "z0", "exit")),
    		Bloc("z0",
    			Valu("nilcheck", OpNilCheck, c.config.Types.IntPtr, 0, nil, "p", "mem"),
    			Goto("exit")),
    		Bloc("exit",
    			Exit("mem"),
    		))
    	CheckFunc(fun.f)
    	fuseLate(fun.f)
    	z0, ok := fun.blocks["z0"]
    	if !ok || z0.Kind == BlockInvalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top