Skip to content

Commit a1d4b9f

Browse files
committed
8256009: Remove src/hotspot/share/adlc/Test/i486.ad
Reviewed-by: shade, thartmann
1 parent 3455fa9 commit a1d4b9f

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

src/hotspot/cpu/ppc/ppc.ad

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3888,7 +3888,7 @@ frame %{
38883888
// The `sig' array is to be updated. sig[j] represents the location
38893889
// of the j-th argument, either a register or a stack slot.
38903890

3891-
// Comment taken from i486.ad:
3891+
// Comment taken from x86_32.ad:
38923892
// Body of function which returns an integer array locating
38933893
// arguments either in registers or in stack slots. Passed an array
38943894
// of ideal registers called "sig" and a "length" count. Stack-slot
@@ -3900,7 +3900,7 @@ frame %{
39003900
SharedRuntime::java_calling_convention(sig_bt, regs, length, false);
39013901
%}
39023902

3903-
// Comment taken from i486.ad:
3903+
// Comment taken from x86_32.ad:
39043904
// Body of function which returns an integer array locating
39053905
// arguments either in registers or in stack slots. Passed an array
39063906
// of ideal registers called "sig" and a "length" count. Stack-slot

src/hotspot/os_cpu/bsd_x86/os_bsd_x86.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ bool PosixSignals::pd_hotspot_signal_handler(int sig, siginfo_t* info,
507507
int op = pc[0];
508508
if (op == 0xDB) {
509509
// FIST
510-
// TODO: The encoding of D2I in i486.ad can cause an exception
510+
// TODO: The encoding of D2I in x86_32.ad can cause an exception
511511
// prior to the fist instruction if there was an invalid operation
512512
// pending. We want to dismiss that exception. From the win_32
513513
// side it also seems that if it really was the fist causing

src/hotspot/os_cpu/linux_x86/os_linux_x86.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ bool PosixSignals::pd_hotspot_signal_handler(int sig, siginfo_t* info,
292292
int op = pc[0];
293293
if (op == 0xDB) {
294294
// FIST
295-
// TODO: The encoding of D2I in i486.ad can cause an exception
295+
// TODO: The encoding of D2I in x86_32.ad can cause an exception
296296
// prior to the fist instruction if there was an invalid operation
297297
// pending. We want to dismiss that exception. From the win_32
298298
// side it also seems that if it really was the fist causing

src/hotspot/share/adlc/Test/i486.ad

Whitespace-only changes.

src/hotspot/share/adlc/output_c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3000,7 +3000,7 @@ void ArchDesc::define_oper_interface(FILE *fp, OperandForm &oper, FormDict &glob
30003000
// Provide a non-NULL return for disp_as_type() that will allow adr_type()
30013001
// to correctly compute the access type for alias analysis.
30023002
//
3003-
// See BugId 4796752, operand indOffset32X in i486.ad
3003+
// See BugId 4796752, operand indOffset32X in x86_32.ad
30043004
int idx = rep_var_to_constant_index(disp, oper, globals);
30053005
fprintf(fp," virtual const TypePtr *disp_as_type() const { return _c%d; }\n", idx);
30063006
}

src/hotspot/share/opto/machnode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ const Node* MachNode::get_base_and_disp(intptr_t &offset, const TypePtr* &adr_ty
295295
}
296296
offset = disp;
297297

298-
// In i486.ad, indOffset32X uses base==RegI and disp==RegP,
298+
// In x86_32.ad, indOffset32X uses base==RegI and disp==RegP,
299299
// this will prevent alias analysis without the following support:
300300
// Lookup the TypePtr used by indOffset32X, a compile-time constant oop,
301301
// Add the offset determined by the "base", or use Type::OffsetBot.

src/hotspot/share/opto/machnode.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class MachOper : public ResourceObj {
151151
virtual int index_position() const; // index edge position, or -1
152152

153153
// Access the TypeKlassPtr of operands with a base==RegI and disp==RegP
154-
// Only returns non-null value for i486.ad's indOffset32X
154+
// Only returns non-null value for x86_32.ad's indOffset32X
155155
virtual const TypePtr *disp_as_type() const { return NULL; }
156156

157157
// Return the label

src/hotspot/share/opto/parse2.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2337,7 +2337,7 @@ void Parse::do_one_bytecode() {
23372337
if (Matcher::convL2FSupported()) {
23382338
a = pop_pair();
23392339
b = _gvn.transform( new ConvL2FNode(a));
2340-
// For i486.ad, FILD doesn't restrict precision to 24 or 53 bits.
2340+
// For x86_32.ad, FILD doesn't restrict precision to 24 or 53 bits.
23412341
// Rather than storing the result into an FP register then pushing
23422342
// out to memory to round, the machine instruction that implements
23432343
// ConvL2D is responsible for rounding.
@@ -2352,7 +2352,7 @@ void Parse::do_one_bytecode() {
23522352
case Bytecodes::_l2d:
23532353
a = pop_pair();
23542354
b = _gvn.transform( new ConvL2DNode(a));
2355-
// For i486.ad, rounding is always necessary (see _l2f above).
2355+
// For x86_32.ad, rounding is always necessary (see _l2f above).
23562356
// c = dprecision_rounding(b);
23572357
c = _gvn.transform(b);
23582358
push_pair(c);

src/hotspot/share/runtime/synchronizer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959

6060
// The "core" versions of monitor enter and exit reside in this file.
6161
// The interpreter and compilers contain specialized transliterated
62-
// variants of the enter-exit fast-path operations. See i486.ad fast_lock(),
63-
// for instance. If you make changes here, make sure to modify the
62+
// variants of the enter-exit fast-path operations. See c2_MacroAssembler_x86.cpp
63+
// fast_lock(...) for instance. If you make changes here, make sure to modify the
6464
// interpreter, and both C1 and C2 fast-path inline locking code emission.
6565
//
6666
// -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)