Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for new_stack (0.16 sec)

  1. src/runtime/asm_mipsx.s

    	MOVW	g, (m_morebuf+gobuf_g)(R7)
    
    	// Call newstack on m->g0's stack.
    	MOVW	m_g0(R7), g
    	JAL	runtime·save_g(SB)
    	MOVW	(g_sched+gobuf_sp)(g), R29
    	// Create a stack frame on g0 to call newstack.
    	MOVW	R0, -4(R29)	// Zero saved LR in frame
    	ADDU	$-4, R29
    	JAL	runtime·newstack(SB)
    
    	// Not reached, but make sure the return PC from the call to newstack
    	// is still in this function, and not the beginning of the next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/runtime/asm_mips64x.s

    	MOVV	g, (m_morebuf+gobuf_g)(R7)
    
    	// Call newstack on m->g0's stack.
    	MOVV	m_g0(R7), g
    	JAL	runtime·save_g(SB)
    	MOVV	(g_sched+gobuf_sp)(g), R29
    	// Create a stack frame on g0 to call newstack.
    	MOVV	R0, -8(R29)	// Zero saved LR in frame
    	ADDV	$-8, R29
    	JAL	runtime·newstack(SB)
    
    	// Not reached, but make sure the return PC from the call to newstack
    	// is still in this function, and not the beginning of the next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    	MOV	g, (m_morebuf+gobuf_g)(A0)
    
    	// Call newstack on m->g0's stack.
    	MOV	m_g0(A0), g
    	CALL	runtime·save_g(SB)
    	MOV	(g_sched+gobuf_sp)(g), X2
    	// Create a stack frame on g0 to call newstack.
    	MOV	ZERO, -8(X2)	// Zero saved LR in frame
    	SUB	$8, X2
    	CALL	runtime·newstack(SB)
    
    	// Not reached, but make sure the return PC from the call to newstack
    	// is still in this function, and not the beginning of the next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. src/runtime/asm_s390x.s

    	MOVD	g, (m_morebuf+gobuf_g)(R7)
    
    	// Call newstack on m->g0's stack.
    	MOVD	m_g0(R7), g
    	BL	runtime·save_g(SB)
    	MOVD	(g_sched+gobuf_sp)(g), R15
    	// Create a stack frame on g0 to call newstack.
    	MOVD	$0, -8(R15)	// Zero saved LR in frame
    	SUB	$8, R15
    	BL	runtime·newstack(SB)
    
    	// Not reached, but make sure the return PC from the call to newstack
    	// is still in this function, and not the beginning of the next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

          OperationState new_state(quantizing_op->getLoc(),
                                   quantizing_op->getName().getStringRef(), inputs,
                                   output_types, quantizing_op->getAttrs());
          for (int i = 0; i < quantizing_op->getNumRegions(); ++i) {
            new_state.addRegion();
          }
          Operation* quantized_op = rewriter.create(new_state);
          if (quantizing_op->getNumRegions() != 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

          OperationState new_state(op_with_region->getLoc(),
                                   op_with_region->getName().getStringRef(), inputs,
                                   output_types, op_with_region->getAttrs());
          for (int i = 0; i < op_with_region->getNumRegions(); ++i) {
            new_state.addRegion();
          }
          Operation* quantized_op = rewriter.create(new_state);
          for (const auto& [index, region] :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

      Location loc = call_op.getLoc();
      rewriter.setInsertionPointAfter(call_op);
      std::string tf_op_name = GetTFOpName(call_op.getCallee());
      OperationState new_state(loc, tf_op_name, inputs, output_types, attr_list);
      Operation* new_op = rewriter.create(new_state);
      if (materialize_derived_attrs_) {
        for (const auto& attr : derived_attrs) {
          // Add or update the derived attribute with the value. Skip the fixed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    	MOVW	g, (m_morebuf+gobuf_g)(R8)
    
    	// Call newstack on m->g0's stack.
    	MOVW	m_g0(R8), R0
    	BL	setg<>(SB)
    	MOVW	(g_sched+gobuf_sp)(g), R13
    	MOVW	$0, R0
    	MOVW.W  R0, -4(R13)	// create a call frame on g0 (saved LR)
    	BL	runtime·newstack(SB)
    
    	// Not reached, but make sure the return PC from the call to newstack
    	// is still in this function, and not the beginning of the next.
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. src/runtime/asm_386.s

    	get_tls(CX)
    	MOVL	g(CX), SI
    	MOVL	SI, (m_morebuf+gobuf_g)(BX)
    
    	// Call newstack on m->g0's stack.
    	MOVL	m_g0(BX), BP
    	MOVL	BP, g(CX)
    	MOVL	(g_sched+gobuf_sp)(BP), AX
    	MOVL	-4(AX), BX	// fault if CALL would, before smashing SP
    	MOVL	AX, SP
    	CALL	runtime·newstack(SB)
    	CALL	runtime·abort(SB)	// crash if newstack returns
    	RET
    
    TEXT runtime·morestack_noctxt(SB),NOSPLIT,$0-0
    	MOVL	$0, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. src/runtime/asm_arm64.s

    	MOVD	g, (m_morebuf+gobuf_g)(R8)
    
    	// Call newstack on m->g0's stack.
    	MOVD	m_g0(R8), g
    	BL	runtime·save_g(SB)
    	MOVD	(g_sched+gobuf_sp)(g), R0
    	MOVD	R0, RSP
    	MOVD	(g_sched+gobuf_bp)(g), R29
    	MOVD.W	$0, -16(RSP)	// create a call frame on g0 (saved LR; keep 16-aligned)
    	BL	runtime·newstack(SB)
    
    	// Not reached, but make sure the return PC from the call to newstack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top