Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for bigcall (0.44 sec)

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

    			// Any name-based heuristics are only relative to other calls,
    			// and less influential than inferences from loop structure.
    		case BlockDefer:
    			local[b.ID] = blCALL
    			certain[b.ID] = max8(blCALL, certain[b.Succs[0].b.ID])
    
    		default:
    			if len(b.Succs) == 1 {
    				certain[b.ID] = certain[b.Succs[0].b.ID]
    			} else if len(b.Succs) == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  2. src/runtime/map_benchmark_test.go

    	m := make(map[BigKey]bool)
    	k := BigKey{3, 4, 5}
    	m[k] = true
    	for i := 0; i < b.N; i++ {
    		_ = m[k]
    	}
    }
    
    type BigVal [3]int64
    
    func BenchmarkBigValMap(b *testing.B) {
    	m := make(map[BigKey]BigVal)
    	k := BigKey{3, 4, 5}
    	m[k] = BigVal{6, 7, 8}
    	for i := 0; i < b.N; i++ {
    		_ = m[k]
    	}
    }
    
    func BenchmarkSmallKeyMap(b *testing.B) {
    	m := make(map[int16]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

    import org.jetbrains.kotlin.ir.declarations.IrAnnotationContainer
    import org.jetbrains.kotlin.ir.declarations.IrDeclarationWithName
    import org.jetbrains.kotlin.ir.declarations.IrModuleFragment
    import org.jetbrains.kotlin.ir.expressions.IrCall
    import org.jetbrains.kotlin.ir.expressions.IrFieldAccessExpression
    import org.jetbrains.kotlin.ir.symbols.UnsafeDuringIrConstructionAPI
    import org.jetbrains.kotlin.ir.util.DumpIrTreeOptions
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/net/rpc/server.go

    		log.Fatal("arith error:", err)
    	}
    	fmt.Printf("Arith: %d*%d=%d", args.A, args.B, reply)
    
    or
    
    	// Asynchronous call
    	quotient := new(Quotient)
    	divCall := client.Go("Arith.Divide", args, quotient, nil)
    	replyCall := <-divCall.Done	// will be equal to divCall
    	// check errors, print, etc.
    
    A server implementation will often provide a simple, type-safe wrapper for the
    client.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/test2json.go

    		c.result = "fail"
    	}
    }
    
    const marker = byte(0x16) // ^V
    
    var (
    	// printed by test on successful run.
    	bigPass = []byte("PASS")
    
    	// printed by test after a normal test failure.
    	bigFail = []byte("FAIL")
    
    	// printed by 'go test' along with an error if the test binary terminates
    	// with an error.
    	bigFailErrorPrefix = []byte("FAIL\t")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadstore.go

    		// Ignore Args since they can't be autos.
    		if v.Op.SymEffect() != SymNone && v.Op != OpArg {
    			panic("unhandled op with sym effect")
    		}
    
    		if v.Uses == 0 && v.Op != OpNilCheck && !v.Op.IsCall() && !v.Op.HasSideEffects() || len(args) == 0 {
    			// We need to keep nil checks even if they have no use.
    			// Also keep calls and values that have side effects.
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	syscalltick uint32
    	freelink    *m // on sched.freem
    	trace       mTraceState
    
    	// these are here because they are too large to be on the stack
    	// of low-level NOSPLIT functions.
    	libcall    libcall
    	libcallpc  uintptr // for cpu profiler
    	libcallsp  uintptr
    	libcallg   guintptr
    	winsyscall winlibcall // stores syscall parameters on windows
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            patchIfNeeded(expression.symbol) { expression.symbol = it }
            super.visitGetObjectValue(expression)
        }
    
        override fun visitCall(expression: IrCall) {
            patchIfNeeded(expression.symbol) { expression.symbol = it }
            patchIfNeeded(expression.superQualifierSymbol) { expression.superQualifierSymbol = it }
            super.visitCall(expression)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. test/nosplit.go

    var (
    	commentRE = regexp.MustCompile(`(?m)^#.*`)
    	rejectRE  = regexp.MustCompile(`(?s)\A(.+?)((\n|; *)REJECT(.*))?\z`)
    	lineRE    = regexp.MustCompile(`(\w+) (\d+)( nosplit)?(.*)`)
    	callRE    = regexp.MustCompile(`\bcall (\w+)\b`)
    	callindRE = regexp.MustCompile(`\bcallind\b`)
    )
    
    func main() {
    	goarch := os.Getenv("GOARCH")
    	if goarch == "" {
    		goarch = runtime.GOARCH
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/main.go

    	fmt.Fprintln(w, "func (o Op) String() string {return opcodeTable[o].name }")
    
    	fmt.Fprintln(w, "func (o Op) SymEffect() SymEffect { return opcodeTable[o].symEffect }")
    	fmt.Fprintln(w, "func (o Op) IsCall() bool { return opcodeTable[o].call }")
    	fmt.Fprintln(w, "func (o Op) IsTailCall() bool { return opcodeTable[o].tailCall }")
    	fmt.Fprintln(w, "func (o Op) HasSideEffects() bool { return opcodeTable[o].hasSideEffects }")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top