Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 357 for buildssa (0.25 sec)

  1. src/cmd/compile/internal/ssagen/pgen.go

    }
    
    const maxStackSize = 1 << 30
    
    // Compile builds an SSA backend function,
    // uses it to generate a plist,
    // and flushes that plist to machine code.
    // worker indicates which of the backend workers is doing the processing.
    func Compile(fn *ir.Func, worker int, profile *pgoir.Profile) {
    	f := buildssa(fn, worker, inline.IsPgoHotFunc(fn, profile) || inline.HasPgoHotInline(fn))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    provides a control-flow graph for each function in the package (see
    golang.org/x/tools/go/cfg); the "inspect" analyzer returns a value that
    enables other Analyzers to traverse the syntax trees of the package more
    efficiently; and the "buildssa" analyzer constructs an SSA-form
    intermediate representation.
    Each of these Analyzers extends the capabilities of later Analyzers
    without adding a dependency to the core API, so an analysis tool pays
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    // Since the liveness analysis can see initialization of single-word
    // variables quite easy, OpVarDef is only needed for multi-word
    // variables satisfying isfat(n.Type). For simplicity though, buildssa
    // emits OpVarDef regardless of variable width.
    //
    // An 'OpVarDef x' annotation in the instruction stream tells the liveness
    // analysis to behave as though the variable x is being initialized at that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	off := 0
    	off = objw.Uvarint(x, off, uint64(-s.deferBitsTemp.FrameOffset()))
    	off = objw.Uvarint(x, off, uint64(-firstOffset))
    }
    
    // buildssa builds an SSA function for fn.
    // worker indicates which of the backend workers is doing the processing.
    func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {
    	name := ir.FuncName(fn)
    
    	abiSelf := abiForFunc(fn, ssaConfig.ABI0, ssaConfig.ABI1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/resources/META-INF/services/org.gradle.initialization.buildsrc.BuildSrcProjectConfigurationAction

    org.gradle.initialization.buildsrc.GroovyBuildSrcProjectConfigurationAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 162 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            def buildSrc = model.editableBuilds[0]
            buildSrc.buildIdentifier.rootDir == file("buildSrc")
            buildSrc.includedBuilds.empty
            buildSrc.editableBuilds.empty
    
            model.editableBuilds[1].is(included)
    
            def includedBuildSrc = model.editableBuilds[2]
            includedBuildSrc.buildIdentifier.rootDir == file("child/buildSrc")
            includedBuildSrc.includedBuilds.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

    
    abstract class AbstractMultiProjectJvmApplicationInitIntegrationTest extends AbstractJvmLibraryInitIntegrationSpec {
        protected BuildInitDsl buildDsl
    
        protected Language jvmLanguage
    
        void setupDslAndLanguage(BuildInitDsl buildDsl, Language jvmLanguage) {
            this.buildDsl = buildDsl
            this.jvmLanguage = jvmLanguage
        }
    
        @Override
        String subprojectName() {
            return null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        phaseHasMoreProgress(startEvent);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_PROJECT && currentPhase == Phase.Configuring) {
                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/GradlePropertiesIncludedBuildFixture.groovy

                            }
                        }
                """
            }
        }
    
        static class BuildSrc extends BuildWithGradleProperties {
    
            @Override
            void setup(AbstractIntegrationSpec spec) {
                spec.file("buildSrc/gradle.properties") << "bar=101"
                spec.file("buildSrc/build.gradle") << echoTaskForProperty("bar")
            }
    
            @Override
            String task() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    ====
    
    A typical project including `buildSrc` has the following layout.
    Any code under `buildSrc` should use a package similar to application code.
    Optionally, the `buildSrc` directory can host a build script if additional configuration is needed (e.g. to apply plugins or to declare dependencies).
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    .
    ├── buildSrc
    │   ├── build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top