Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for callsite (0.33 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

         *
         * @param originalCallSite the CallSite to decorate
         * @return the new CallSite capable of intercepting calls or the original CallSite if interception not neccessary.
         */
        @Override
        public CallSite maybeDecorateGroovyCallSite(CallSite originalCallSite) {
            if (shouldDecorate(originalCallSite)) {
                return new DecoratingCallSite(originalCallSite);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoring.go

    // callsite, and "ScoreFlags" is a digest of the specific properties
    // we used to make adjustments to callsite score via heuristics.
    func DumpInlCallSiteScores(profile *pgoir.Profile, budgetCallback func(fn *ir.Func, profile *pgoir.Profile) (int32, bool)) {
    
    	var indirectlyDueToPromotion func(cs *CallSite) bool
    	indirectlyDueToPromotion = func(cs *CallSite) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    		return funcInlHeur, callsites, err
    	}
    	funcInlHeur.props = fp
    
    	// Consume callsites.
    	callsites = make(encodedCallSiteTab)
    	for dr.scan() {
    		line := dr.curLine()
    		if line == csDelimiter {
    			break
    		}
    		// expected format: "// callsite: <expanded pos> flagstr <desc> flagval <flags> score <score> mask <scoremask> maskstr <scoremaskstring>"
    		fields := strings.Fields(line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

        @SuppressWarnings("unused")
        public static void groovyCallSites(CallSiteArray array, BytecodeInterceptorFilter interceptorFilter) {
            for (CallSite callSite : array.array) {
                array.array[callSite.getIndex()] = getGroovyCallDecorator(interceptorFilter).maybeDecorateGroovyCallSite(callSite);
            }
        }
    
        /**
         * The bootstrap method for method calls from Groovy compiled code with indy enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

        %1 = "tf.PartitionedCall"(%arg0, %cst, %cst_0) {_tfl_quant_trait = "fully_quantizable", config = "", config_proto = "", executor_type = "", f = @composite_conv2d_with_bias_and_relu6_fn_1} : (tensor<1x2x2x3xf32>, tensor<2x2x3x2xf32>, tensor<2xf32>) -> tensor<*xf32> loc(callsite("test@conv"("Conv2D_1") at "QuantizationUnit(\12\08Conv2D_1\1a\04conv)"))...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingClassTransform.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.codehaus.groovy.runtime.ProcessGroovyMethods;
    import org.codehaus.groovy.runtime.callsite.CallSiteArray;
    import org.codehaus.groovy.vmplugin.v8.IndyInterface;
    import org.gradle.api.file.RelativePath;
    import org.gradle.internal.Pair;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

    import org.objectweb.asm.Label;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Type;
    import org.objectweb.asm.commons.CodeSizeEvaluator;
    
    import javax.annotation.Nullable;
    import java.lang.invoke.CallSite;
    import java.lang.invoke.LambdaMetafactory;
    import java.lang.invoke.MethodHandles;
    import java.lang.invoke.MethodType;
    import java.lang.invoke.SerializedLambda;
    import java.util.ArrayList;
    import java.util.Collections;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

          %0 = "tf.PartitionedCall"(%arg0, %cst) {_tfl_quant_trait = "fully_quantizable", config = "", config_proto = "", executor_type = "", f = @composite_fn_1} : (tensor<2x2xf32>, tensor<2x2xf32>) -> tensor<2x2xf32> loc(callsite("test@main"("MatMul") at "QuantizationUnit(\12\06MatMul\1a\07main)"))
          return %0 : tensor<2x2xf32>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

            val originalDeclaration = originalForSubstitutionOverride ?: return null
            return originalDeclaration.takeIf { this.origin is FirDeclarationOrigin.SubstitutionOverride.CallSite }
        }
    
        /**
         * We want to unwrap a SUBSTITUTION_OVERRIDE wrapper if it doesn't affect the declaration's signature in any way. If the signature
         * is somehow changed, then we want to keep the wrapper.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/wasm/ssa.go

       (So they are not really a "return address", they are a "resume address".)
    
       All Go functions have the Wasm type (i32)->i32. The argument
       is the block ID and the return value is the exit immediately flag.
    
       Callsite:
        - write arguments to the Go stack (starting at SP+0)
        - push return address to Go stack (8 bytes)
        - write local SP to global SP
        - push 0 (type i32) to Wasm stack
        - issue Call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top