File: op_linefetch.s

package info (click to toggle)
fis-gtm 6.3-014-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 36,680 kB
  • sloc: ansic: 333,039; asm: 5,180; csh: 4,956; sh: 1,924; awk: 291; makefile: 66; sed: 13
file content (38 lines) | stat: -rw-r--r-- 1,385 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#################################################################
#								#
# Copyright (c) 2007-2015 Fidelity National Information 	#
# Services, Inc. and/or its subsidiaries. All rights reserved.	#
#								#
#	This source code contains the intellectual property	#
#	of its copyright holder(s), and is made available	#
#	under a license.  If you do not know the terms of	#
#	the license, please stop and do not read further.	#
#								#
#################################################################

	.include "linkage.si"
	.include "g_msf.si"
	.include "debug.si"

	.data
	.extern	frame_pointer

	.text
	.extern	gtm_fetch

	#
	# This routine does local variable fetch for all variables on a given line of code, or alternatively, all
	# variables in a routine depending on arguments from generated code we pass-thru.
	#
	# Since this routine pops its return address off the stack, the stack becomes 16 byte aligned. Verify that.
	#
ENTRY	op_linefetch
	movq	frame_pointer(REG_IP), REG64_ACCUM
	popq	msf_mpc_off(REG64_ACCUM)		# Save incoming return PC in frame_pointer->mpc
	movq	REG_PV, msf_ctxt_off(REG64_ACCUM)	# Save linkage pointer
	CHKSTKALIGN					# Verify stack alignment
	movb    $0, REG8_ACCUM				# No variable length arguments
	call	gtm_fetch
	movq	frame_pointer(REG_IP), REG64_ACCUM
	pushq	msf_mpc_off(REG64_ACCUM)		# Push return address back on stack for return
	ret