Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Disasm (0.44 sec)

  1. src/cmd/internal/obj/plist.go

    			etext = nil
    			continue
    		}
    		etext.Link = p
    		etext = p
    	}
    
    	if newprog == nil {
    		newprog = ctxt.NewProg
    	}
    
    	// Add reference to Go arguments for assembly functions without them.
    	if ctxt.IsAsm {
    		pkgPrefix := objabi.PathToPrefix(ctxt.Pkgpath) + "."
    		for _, s := range text {
    			if !strings.HasPrefix(s.Name, pkgPrefix) {
    				continue
    			}
    			// The current args_stackmap generation in the compiler assumes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/endtoend_test.go

    	parser := NewParser(ctxt, architecture, lexer)
    	pList := new(obj.Plist)
    	var ok bool
    	testOut = new(strings.Builder) // The assembler writes test output to this buffer.
    	ctxt.Bso = bufio.NewWriter(os.Stdout)
    	ctxt.IsAsm = true
    	defer ctxt.Bso.Flush()
    	failed := false
    	ctxt.DiagFunc = func(format string, args ...interface{}) {
    		failed = true
    		t.Errorf(format, args...)
    	}
    	pList.Firstpc, ok = parser.Parse()
    	if !ok || failed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

        const val kotlinClass = "kotlin.reflect.KClass"
        const val kotlinArray = "kotlin.Array"
        const val kotlinCollection = "kotlin.collections.Collection"
    }
    
    
    private
    val ApiTypeUsage.isSAM
        get() = type?.isSAM == true
    
    
    private
    val ApiTypeUsage.isAny
        get() = sourceName == "Any"
    
    
    private
    val ApiTypeUsage.isString
        get() = sourceName == "String"
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 21:41:53 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/obj.go

    			f := c.cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				c.cursym.Func().FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", c.cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/objz.go

    			f := c.cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				c.cursym.Func().FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s\n", c.cursym.Name)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    	if wasSplit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    	if ctxt.Flag_shared {
    		flags |= goobj.ObjFlagShared
    	}
    	if w.pkgpath == UnlinkablePkg {
    		flags |= goobj.ObjFlagUnlinkable
    	}
    	if w.pkgpath == "" {
    		log.Fatal("empty package path")
    	}
    	if ctxt.IsAsm {
    		flags |= goobj.ObjFlagFromAssembly
    	}
    	if ctxt.Std {
    		flags |= goobj.ObjFlagStd
    	}
    	h := goobj.Header{
    		Magic:       goobj.Magic,
    		Fingerprint: ctxt.Fingerprint,
    		Flags:       flags,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/obj5.go

    			f := c.cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				c.cursym.Func().FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", c.cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/obj7.go

    			f := c.cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				c.cursym.Func().FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", c.cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/sym.go

    		ctxt.pkgIdx[pkg] = ipkg
    		ipkg++
    	})
    }
    
    // Returns whether s is a non-package symbol, which needs to be referenced
    // by name instead of by index.
    func isNonPkgSym(ctxt *Link, s *LSym) bool {
    	if ctxt.IsAsm && !s.Static() {
    		// asm symbols are referenced by name only, except static symbols
    		// which are file-local and can be referenced by index.
    		return true
    	}
    	if ctxt.Flag_linkshared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

        @Override
        public void invokeQueryNotEqual(String columnFlexibleName, Object conditionValue) {
            // nothing
        }
    
        @Override
        public void invokeOrderBy(String columnFlexibleName, boolean isAsc) {
            // nothing
        }
    
        @Override
        public ConditionQuery invokeForeignCQ(String foreignPropertyName) {
            return null;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top