Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
74436afa
Commit
74436afa
authored
Jan 19, 2000
by
Tom Tromey
Committed by
Tom Tromey
Jan 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* interpret.cc (PC_REGISTER_ASM): Removed.
From-SVN: r31510
parent
0d3ffb5a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
10 deletions
+6
-10
libjava/ChangeLog
+2
-0
libjava/interpret.cc
+4
-10
No files found.
libjava/ChangeLog
View file @
74436afa
2000-01-19 Tom Tromey <tromey@cygnus.com>
2000-01-19 Tom Tromey <tromey@cygnus.com>
* interpret.cc (PC_REGISTER_ASM): Removed.
* java/lang/natThrowable.cc: Don't use `#pragma implementation'.
* java/lang/natThrowable.cc: Don't use `#pragma implementation'.
From Bryce McKinlay.
From Bryce McKinlay.
...
...
libjava/interpret.cc
View file @
74436afa
// interpret.cc - Code for the interpreter
// interpret.cc - Code for the interpreter
/* Copyright (C) 1999 Red Hat, Inc.
/* Copyright (C) 1999
, 2000
Red Hat, Inc.
This file is part of libgcj.
This file is part of libgcj.
...
@@ -403,19 +403,13 @@ gnu::gcj::runtime::MethodInvocation::continue1 (gnu::gcj::RawData *meth,
...
@@ -403,19 +403,13 @@ gnu::gcj::runtime::MethodInvocation::continue1 (gnu::gcj::RawData *meth,
*/
*/
#ifdef __i386__
#define PC_REGISTER_ASM asm("%esi")
#else
#define PC_REGISTER_ASM
#endif
void
_Jv_InterpMethod
::
continue1
(
_Jv_InterpMethodInvocation
*
inv
)
void
_Jv_InterpMethod
::
continue1
(
_Jv_InterpMethodInvocation
*
inv
)
{
{
using
namespace
java
::
lang
::
reflect
;
using
namespace
java
::
lang
::
reflect
;
register
_Jv_word
*
sp
=
inv
->
sp
;
register
_Jv_word
*
sp
=
inv
->
sp
;
register
unsigned
char
*
pc
PC_REGISTER_ASM
=
inv
->
pc
;
register
unsigned
char
*
pc
=
inv
->
pc
;
_Jv_word
*
locals
=
inv
->
local_base
();
_Jv_word
*
locals
=
inv
->
local_base
();
_Jv_word
*
pool_data
=
defining_class
->
constants
.
data
;
_Jv_word
*
pool_data
=
defining_class
->
constants
.
data
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment