1
0
mirror of https://github.com/golang/go synced 2024-10-03 05:11:21 -06:00
go/src/pkg/runtime/race_amd64.s

17 lines
473 B
ArmAsm
Raw Normal View History

// Copyright 2013 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.
// +build race
#include "../../cmd/ld/textflag.h"
// func runtime·racefuncenter(pc uintptr)
TEXT runtime·racefuncenter(SB), NOSPLIT, $16-8
MOVQ DX, saved-8(SP) // save function entry context (for closures)
MOVQ pc+0(FP), DX
MOVQ DX, arg-16(SP)
CALL runtime·racefuncenter1(SB)
MOVQ saved-8(SP), DX
RET