Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/hotspot/share/opto/macro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1837,8 +1837,8 @@ Node* PhaseMacroExpand::prefetch_allocation(Node* i_o, Node*& needgc_false,
// This code is used to generate 1 prefetch instruction per cache line.

// Generate several prefetch instructions.
int step_size = AllocatePrefetchStepSize;
int distance = AllocatePrefetchDistance;
uint step_size = AllocatePrefetchStepSize;
uint distance = AllocatePrefetchDistance;

// Next cache address.
Node *cache_adr = new AddPNode(old_eden_top, old_eden_top,
Expand Down Expand Up @@ -1875,8 +1875,8 @@ Node* PhaseMacroExpand::prefetch_allocation(Node* i_o, Node*& needgc_false,
Node *prefetch_adr;
Node *prefetch;
// Generate several prefetch instructions.
int step_size = AllocatePrefetchStepSize;
int distance = AllocatePrefetchDistance;
uint step_size = AllocatePrefetchStepSize;
uint distance = AllocatePrefetchDistance;
for ( intx i = 0; i < lines; i++ ) {
prefetch_adr = new AddPNode( old_eden_top, new_eden_top,
_igvn.MakeConX(distance) );
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/runtime/globals.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1587,7 +1587,7 @@ const int ObjectAlignmentInBytes = 8;
"Minimal number of lookupswitch entries for rewriting to binary " \
"switch") \
\
develop(int, StopInterpreterAt, 0, \
develop(intx, StopInterpreterAt, 0, \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this add a blank? Should be aligned.

"Stop interpreter execution at specified bytecode number") \
\
develop(intx, TraceBytecodesAt, 0, \
Expand Down