Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lateLower (0.45 sec)

  1. src/cmd/dist/buildtool.go

    		return "", false
    	}
    	archCaps = fileArch
    	fileArch = strings.ToLower(fileArch)
    	fileArch = strings.TrimSuffix(fileArch, "splitload")
    	fileArch = strings.TrimSuffix(fileArch, "latelower")
    	if fileArch == goArch {
    		return "", false
    	}
    	if fileArch == strings.TrimSuffix(goArch, "le") {
    		return "", false
    	}
    	return archCaps, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/compile.go

    		disabled: !buildcfg.Experiment.PreemptibleLoops}, // insert resched checks in loops.
    	{name: "lower", fn: lower, required: true},
    	{name: "addressing modes", fn: addressingModes, required: false},
    	{name: "late lower", fn: lateLower, required: true},
    	{name: "lowered deadcode for cse", fn: deadcode}, // deadcode immediately before CSE avoids CSE making dead values live again
    	{name: "lowered cse", fn: cse},
    	{name: "elim unread autos", fn: elimUnreadAutos},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	return match, cond, result
    }
    
    func genRules(arch arch)          { genRulesSuffix(arch, "") }
    func genSplitLoadRules(arch arch) { genRulesSuffix(arch, "splitload") }
    func genLateLowerRules(arch arch) { genRulesSuffix(arch, "latelower") }
    
    func genRulesSuffix(arch arch, suff string) {
    	// Open input file.
    	text, err := os.Open(arch.name + suff + ".rules")
    	if err != nil {
    		if suff == "" {
    			// All architectures must have a plain rules file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top