Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for perblock (0.31 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    		}
    		s.usedSinceBlockStart |= regMask(1) << r2
    		c = s.curBlock.NewValue1(pos, OpCopy, v.Type, s.regs[r2].c)
    	} else if v.rematerializeable() {
    		// Rematerialize instead of loading from the spill location.
    		c = v.copyIntoWithXPos(s.curBlock, pos)
    	} else {
    		// Load v from its spill location.
    		spill := s.makeSpill(v, s.curBlock)
    		if s.f.pass.debug > logSpills {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .subheader,
    .admonitionblock td.content>.title,
    .audioblock>.title,
    .exampleblock>.title,
    .imageblock>.title,
    .listingblock>.title,
    .literalblock>.title,
    .stemblock>.title,
    .openblock>.title,
    .paragraph>.title,
    .quoteblock>.title,
    table.tableblock>.title,
    .verseblock>.title,
    .videoblock>.title,
    .dlist>.title,
    .olist>.title,
    .ulist>.title,
    .qlist>.title,
    .hdlist>.title {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // K1 creates a fake expression in this case.
                    whenRef.value.subject?.findSourceKtExpressionForCallArgument()
                // FirBlock is a fake container for desugared expressions like `++index` or `++list[0]`
                is FirBlock -> psi as? KtExpression
                else -> realPsi as? KtExpression
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	// Run through the function in program text order, building up location
    	// lists as we go. The heavy lifting has mostly already been done.
    
    	var prevBlock *Block
    	for _, b := range state.f.Blocks {
    		state.mergePredecessors(b, blockLocs, prevBlock, true)
    
    		// Handle any differences among predecessor blocks and previous block (perhaps not a predecessor)
    		for _, varID := range state.changedVars.contents() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                   operand.getOwner()->getParentRegion()) ||
               (HasOutsideCompilationAncestor(operand.getOwner()) &&
                original_op_block == operand.getOwner()->getBlock());
      };
      for (auto result : llvm::zip(external_operands, recv_at_host->getResults())) {
        Value external_operand = std::get<0>(result);
        external_operand.replaceUsesWithIf(std::get<1>(result),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	Machoreloc1    func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    	MachorelocSize uint32 // size of an Mach-O relocation record, must match Machoreloc1.
    	PEreloc1       func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    	Xcoffreloc1    func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Atomic memory updates.
    (AtomicAnd8  ptr val mem) => (ANDBlock ptr val mem)
    (AtomicAnd32 ptr val mem) => (ANDLlock ptr val mem)
    (AtomicOr8   ptr val mem) => (ORBlock  ptr val mem)
    (AtomicOr32  ptr val mem) => (ORLlock  ptr val mem)
    
    // Write barrier.
    (WB ...) => (LoweredWB ...)
    
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 0 => (LoweredPanicBoundsA [kind] x y mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top