pike.git/
src/
code/
sparc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2002-11-08
2002-11-08 17:37:00 by Henrik Grubbström (Grubba) <grubba@grubba.org>
a970e5f75fb3e1f5a77464bbbb5ed7af52b5fe8a (
18
lines) (+
13
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Bug found and fixed. Optimizations reenabled.
Rev: src/code/sparc.c:1.27
Rev: src/code/sparc.h:1.20
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: sparc.c,v 1.
26
2002/11/08 17:
29
:
59
grubba Exp $
+
|| $Id: sparc.c,v 1.
27
2002/11/08 17:
37
:
00
grubba Exp $
*/ /*
256:
SPARC_CODEGEN_SP_IS_SET| \ SPARC_CODEGEN_MARK_SP_IS_SET))
+
void sparc_flush_codegen_state(void)
+
{
+
SPARC_FLUSH_UNSTORED();
+
sparc_codegen_state = 0;
+
}
+
+
#define ADJUST_PIKE_PC(NEW_PC) do { \
+
sparc_last_pc = NEW_PC; \
+
sparc_codegen_state |= SPARC_CODEGEN_PC_IS_SET; \
+
} while(0)
+
/* * Allocate a stack frame. *
474:
/* This is not very pretty */ switch(b) {
-
#if 0
+
case F_MARK2 - F_OFFSET: sparc_mark(0); /* FALL_THROUGH */
508:
Inside #if 0
case F_BIGNUM - F_OFFSET: sparc_push_int(0x7fffffff, 0); return;
-
#endif /* 0 */
+
#define F_ALIAS(F_FUN, O_FUN) \ case F_FUN - F_OFFSET: \
559:
void ins_f_byte_with_arg(unsigned int a,unsigned INT32 b) {
-
#if 0
+
switch(a) { case F_NUMBER: sparc_push_int(b, 0);
574:
Inside #if 0
sparc_mark(-b); return; }
-
#endif /* 0 */
+
SET_REG(SPARC_REG_O0, b); low_ins_f_byte(a, 1); return;