Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for antcall (0.21 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	// 3.1.9: Instructions to Access CSRs
    	ACSRRW
    	ACSRRS
    	ACSRRC
    	ACSRRWI
    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/expand_calls.go

    					}
    					x.wideSelects[a] = v
    				}
    
    			case OpSelectN:
    				if v.Type == types.TypeMem {
    					// rewrite the mem selector in place
    					call := v.Args[0]
    					aux := call.Aux.(*AuxCall)
    					mem := x.memForCall[call.ID]
    					if mem == nil {
    						v.AuxInt = int64(aux.abiInfo.OutRegistersUsed())
    						x.memForCall[call.ID] = v
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  3. src/net/rpc/server_test.go

    	args = &Args{7, 8}
    	mulReply := new(Reply)
    	mulCall := client.Go("Arith.Mul", args, mulReply, nil)
    	addReply := new(Reply)
    	addCall := client.Go("Arith.Add", args, addReply, nil)
    
    	addCall = <-addCall.Done
    	if addCall.Error != nil {
    		t.Errorf("Add: expected no error but got string %q", addCall.Error.Error())
    	}
    	if addReply.C != args.A+args.B {
    		t.Errorf("Add: expected %d got %d", addReply.C, args.A+args.B)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func_test.go

    	values map[string]*Value
    }
    
    var emptyPass pass = pass{
    	name: "empty pass",
    }
    
    // AuxCallLSym returns an AuxCall initialized with an LSym that should pass "check"
    // as the Aux of a static call.
    func AuxCallLSym(name string) *AuxCall {
    	return &AuxCall{Fn: &obj.LSym{}}
    }
    
    // Fun takes the name of an entry bloc and a series of Bloc calls, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

                    connection.set("http://cvs.example.org")
                }
                issueManagement {
                    system.set("Bugzilla")
                }
                ciManagement {
                    system.set("Anthill")
                }
                distributionManagement {
                    downloadUrl.set("https://example.org/download/")
                    relocation {
                        groupId.set("org.example.new")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/wasm/wasmobj.go

    		registerNames[reg-MINREG] = name
    	}
    }
    
    func rconv(r int) string {
    	return registerNames[r-MINREG]
    }
    
    var unaryDst = map[obj.As]bool{
    	ASet:          true,
    	ATee:          true,
    	ACall:         true,
    	ACallIndirect: true,
    	ABr:           true,
    	ABrIf:         true,
    	ABrTable:      true,
    	AI32Store:     true,
    	AI64Store:     true,
    	AF32Store:     true,
    	AF64Store:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/syscall/mkasm.go

    		}
    		fn := line[5 : len(line)-13]
    		if !trampolines[fn] {
    			trampolines[fn] = true
    			fmt.Fprintf(&out, "TEXT ยท%s_trampoline(SB),NOSPLIT,$0-0\n", fn)
    			if goos == "openbsd" && arch == "ppc64" {
    				fmt.Fprintf(&out, "\tCALL\t%s(SB)\n", fn)
    				fmt.Fprintf(&out, "\tRET\n")
    			} else {
    				fmt.Fprintf(&out, "\tJMP\t%s(SB)\n", fn)
    			}
    		}
    	}
    	err = os.WriteFile(fmt.Sprintf("zsyscall_%s_%s.s", goos, arch), out.Bytes(), 0644)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x33, 0x5, 0x0, 32, 0x1}
    	case ADIVUW:
    		return &inst{0x3b, 0x5, 0x0, 32, 0x1}
    	case ADIVW:
    		return &inst{0x3b, 0x4, 0x0, 32, 0x1}
    	case AEBREAK:
    		return &inst{0x73, 0x0, 0x1, 1, 0x0}
    	case AECALL:
    		return &inst{0x73, 0x0, 0x0, 0, 0x0}
    	case AFADDD:
    		return &inst{0x53, 0x0, 0x0, 32, 0x1}
    	case AFADDQ:
    		return &inst{0x53, 0x0, 0x0, 96, 0x3}
    	case AFADDS:
    		return &inst{0x53, 0x0, 0x0, 0, 0x0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/check.go

    				}
    				canHaveAux = true
    			case auxCallOff:
    				canHaveAuxInt = true
    				fallthrough
    			case auxCall:
    				if ac, ok := v.Aux.(*AuxCall); ok {
    					if v.Op == OpStaticCall && ac.Fn == nil {
    						f.Fatalf("value %v has *AuxCall with nil Fn", v)
    					}
    				} else {
    					f.Fatalf("value %v has Aux type %T, want *AuxCall", v, v.Aux)
    				}
    				canHaveAux = true
    			case auxNameOffsetInt8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	var codeptr *ssa.Value   // ptr to target code (if dynamic)
    	var dextra *ssa.Value    // defer extra arg
    	var rcvr *ssa.Value      // receiver to set
    	fn := n.Fun
    	var ACArgs []*types.Type    // AuxCall args
    	var ACResults []*types.Type // AuxCall results
    	var callArgs []*ssa.Value   // For late-expansion, the args themselves (not stored, args to the call instead).
    
    	callABI := s.f.ABIDefault
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top