Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for opendefer (0.15 sec)

  1. src/cmd/compile/internal/test/zerorange_test.go

    // In the current compiler implementation, for zerorange to be
    // invoked, we need to have an ambiguously live variable that needs
    // zeroing. One way to trigger this is to have a function with an
    // open-coded defer, where the opendefer function has an argument that
    // contains a pointer (this is what's used below).
    //
    // At the moment this test doesn't do any specific checking for
    // code sequence, or verification that things were properly set to zero,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    		// data symbols more carefully.
    		switch {
    		case strings.HasPrefix(s.Name, "go:string."),
    			strings.HasPrefix(name, "type:.namedata."),
    			strings.HasPrefix(name, "type:.importpath."),
    			strings.HasSuffix(name, ".opendefer"),
    			strings.HasSuffix(name, ".arginfo0"),
    			strings.HasSuffix(name, ".arginfo1"),
    			strings.HasSuffix(name, ".argliveinfo"):
    			// These are just bytes, or varints.
    			align = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    			strings.HasPrefix(name, "gclocals."),
    			strings.HasPrefix(name, "gclocals·"),
    			ldr.SymType(s) == sym.SGOFUNC && s != symgofunc, // inltree, see pcln.go
    			strings.HasSuffix(name, ".opendefer"),
    			strings.HasSuffix(name, ".arginfo0"),
    			strings.HasSuffix(name, ".arginfo1"),
    			strings.HasSuffix(name, ".argliveinfo"),
    			strings.HasSuffix(name, ".wrapinfo"),
    			strings.HasSuffix(name, ".args_stackmap"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		opendefer.closure = closure
    	}
    	index := len(s.openDefers)
    	s.openDefers = append(s.openDefers, opendefer)
    
    	// Update deferBits only after evaluation and storage to stack of
    	// the function is successful.
    	bitvalue := s.constInt8(types.Types[types.TUINT8], 1<<uint(index))
    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. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

      return absl::Substitute("$0 $1($2)", "Status", op_.FunctionName(),
                              absl::StrJoin(arguments, ", "));
    }
    
    OpRenderer::OpRenderer(RendererContext context, OpView op)
        : Renderer(context), op_(op), comment_(context, op) {}
    
    void OpRenderer::Render() {
      comment_.Render();
      if (context_.mode == RendererContext::kHeader) {
        Statement(Signature());
      } else {
        BlockOpen(Signature());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.h

    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class OpRenderer : public Renderer {
     public:
      explicit OpRenderer(RendererContext context, OpView op);
      void Render();
    
     private:
      OpView op_;
      OpCommentRenderer comment_;
    
      string Signature() const;
    };
    
    }  // namespace cpp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.cc

        guard_.Open();
      } else {
        includes_.SelfHeader();
      }
    
      includes_.Headers();
      name_space_.Open();
      BlankLine();
    
      for (const OpView &op : ops_) {
        OpRenderer(context_, op).Render();
      }
    
      name_space_.Close();
      if (context_.mode == RendererContext::kHeader) {
        guard_.Close();
      }
    }
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top