| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/go-1.23/src/runtime/internal/startlinetest/ |
Upload File : |
// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "funcdata.h" #include "textflag.h" // Assembly function for runtime_test.TestStartLineAsm. // // Note that this file can't be built directly as part of runtime_test, as assembly // files can't declare an alternative package. Building it into runtime is // possible, but linkshared complicates things: // // 1. linkshared mode leaves the function around in the final output of // non-test builds. // 2. Due of (1), the linker can't resolve the callerStartLine relocation // (as runtime_test isn't built for non-test builds). // // Thus it is simpler to just put this in its own package, imported only by // runtime_test. We use ABIInternal as no ABI wrapper is generated for // callerStartLine since it is in a different package. TEXT ·AsmFunc<ABIInternal>(SB),NOSPLIT,$8-0 NO_LOCAL_POINTERS MOVQ $0, AX // wantInlined MOVQ ·CallerStartLine(SB), DX CALL (DX) RET