File tree 11 files changed +0
-44
lines changed
11 files changed +0
-44
lines changed Original file line number Diff line number Diff line change @@ -4043,9 +4043,6 @@ encode %{
4043
4043
// SP meets the minimum alignment.
4044
4044
4045
4045
frame %{
4046
- // What direction does stack grow in (assumed to be same for C & Java)
4047
- stack_direction(TOWARDS_LOW);
4048
-
4049
4046
// These three registers define part of the calling convention
4050
4047
// between compiled code and the interpreter.
4051
4048
Original file line number Diff line number Diff line change @@ -1664,9 +1664,6 @@ encode %{
1664
1664
// the region from SP to FP meets the minimum stack alignment.
1665
1665
1666
1666
frame %{
1667
- // What direction does stack grow in (assumed to be same for native & Java)
1668
- stack_direction(TOWARDS_LOW);
1669
-
1670
1667
// These two registers define part of the calling convention
1671
1668
// between compiled code and the interpreter.
1672
1669
inline_cache_reg(R_Ricklass); // Inline Cache Register or Method* for I2C
Original file line number Diff line number Diff line change @@ -4118,9 +4118,6 @@ encode %{
4118
4118
// Definition of frame structure and management information.
4119
4119
4120
4120
frame %{
4121
- // What direction does stack grow in (assumed to be same for native & Java).
4122
- stack_direction(TOWARDS_LOW);
4123
-
4124
4121
// These two registers define part of the calling convention between
4125
4122
// compiled code and the interpreter.
4126
4123
Original file line number Diff line number Diff line change @@ -2456,9 +2456,6 @@ source %{
2456
2456
// Definition of frame structure and management information.
2457
2457
2458
2458
frame %{
2459
- // What direction does stack grow in (assumed to be same for native & Java).
2460
- stack_direction(TOWARDS_LOW);
2461
-
2462
2459
// These two registers define part of the calling convention between
2463
2460
// compiled code and the interpreter.
2464
2461
Original file line number Diff line number Diff line change @@ -3191,9 +3191,6 @@ encode %{
3191
3191
// the region from SP to FP meets the minimum stack alignment.
3192
3192
3193
3193
frame %{
3194
- // What direction does stack grow in (assumed to be same for C & Java)
3195
- stack_direction(TOWARDS_LOW);
3196
-
3197
3194
// These three registers define part of the calling convention
3198
3195
// between compiled code and the interpreter.
3199
3196
inline_cache_reg(EAX); // Inline Cache Register
Original file line number Diff line number Diff line change @@ -2740,9 +2740,6 @@ encode %{
2740
2740
2741
2741
frame
2742
2742
%{
2743
- // What direction does stack grow in (assumed to be same for C & Java)
2744
- stack_direction(TOWARDS_LOW);
2745
-
2746
2743
// These three registers define part of the calling convention
2747
2744
// between compiled code and the interpreter.
2748
2745
inline_cache_reg(RAX); // Inline Cache Register
Original file line number Diff line number Diff line change @@ -985,9 +985,6 @@ void ADLParser::frame_parse(void) {
985
985
parse_err (SYNERR, " missing identifier inside frame block.\n " );
986
986
return ;
987
987
}
988
- if (strcmp (token," stack_direction" )==0 ) {
989
- stack_dir_parse (frame);
990
- }
991
988
if (strcmp (token," sync_stack_slots" )==0 ) {
992
989
sync_stack_slots_parse (frame);
993
990
}
@@ -1109,21 +1106,6 @@ void ADLParser::frame_parse(void) {
1109
1106
// skipws();
1110
1107
}
1111
1108
1112
- // ------------------------------stack_dir_parse--------------------------------
1113
- void ADLParser::stack_dir_parse (FrameForm *frame) {
1114
- char *direction = parse_one_arg (" stack direction entry" );
1115
- if (strcmp (direction, " TOWARDS_LOW" ) == 0 ) {
1116
- frame->_direction = false ;
1117
- }
1118
- else if (strcmp (direction, " TOWARDS_HIGH" ) == 0 ) {
1119
- frame->_direction = true ;
1120
- }
1121
- else {
1122
- parse_err (SYNERR, " invalid value inside stack direction entry.\n " );
1123
- return ;
1124
- }
1125
- }
1126
-
1127
1109
// ------------------------------sync_stack_slots_parse-------------------------
1128
1110
void ADLParser::sync_stack_slots_parse (FrameForm *frame) {
1129
1111
// Assign value into frame form
Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ class ADLParser {
110
110
void enc_class_parse_block (EncClass* encoding, char * ec_name);
111
111
112
112
// Parse the components of the frame section
113
- void stack_dir_parse (FrameForm *frame); // Parse the stack direction entry
114
113
void sync_stack_slots_parse (FrameForm *frame);
115
114
void frame_pointer_parse (FrameForm *frame, bool native);
116
115
void interpreter_frame_pointer_parse (FrameForm *frame, bool native);
Original file line number Diff line number Diff line change @@ -334,7 +334,6 @@ class FrameForm : public Form {
334
334
335
335
public:
336
336
// Public Data
337
- bool _direction; // Direction of stack growth
338
337
char *_sync_stack_slots;
339
338
char *_inline_cache_reg;
340
339
char *_interpreter_method_oop_reg;
Original file line number Diff line number Diff line change @@ -4143,9 +4143,6 @@ void ArchDesc::buildInstructMatchCheck(FILE *fp_cpp) const {
4143
4143
// Output the methods to Matcher which specify frame behavior
4144
4144
void ArchDesc::buildFrameMethods (FILE *fp_cpp) {
4145
4145
fprintf (fp_cpp," \n\n " );
4146
- // Stack Direction
4147
- fprintf (fp_cpp," bool Matcher::stack_direction() const { return %s; }\n\n " ,
4148
- _frame->_direction ? " true" : " false" );
4149
4146
// Sync Stack Slots
4150
4147
fprintf (fp_cpp," int Compile::sync_stack_slots() const { return %s; }\n\n " ,
4151
4148
_frame->_sync_stack_slots );
Original file line number Diff line number Diff line change @@ -358,9 +358,6 @@ class Matcher : public PhaseTransform {
358
358
359
359
// These calls are all generated by the ADLC
360
360
361
- // TRUE - grows up, FALSE - grows down (Intel)
362
- virtual bool stack_direction () const ;
363
-
364
361
// Java-Java calling convention
365
362
// (what you use when Java calls Java)
366
363
You can’t perform that action at this time.
0 commit comments