Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/hotspot/cpu/arm/frame_arm.inline.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ inline void frame::init(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, add
if (original_pc != nullptr) {
_pc = original_pc;
assert(_cb->as_nmethod()->insts_contains_inclusive(_pc),
"original PC must be in the main code section of the the compiled method (or must be immediately following it)");
"original PC must be in the main code section of the compiled method (or must be immediately following it)");
_deopt_state = is_deoptimized;
} else {
_deopt_state = not_deoptimized;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/escape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4472,7 +4472,7 @@ void ConnectionGraph::split_unique_types(GrowableArray<Node *> &alloc_worklist,
}
} else if (n->is_AddP()) {
if (has_reducible_merge_base(n->as_AddP(), reducible_merges)) {
// This AddP will go away when we reduce the the Phi
// This AddP will go away when we reduce the Phi
continue;
}
Node* addp_base = get_addp_base(n);
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/vectorization.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ class VLoopBody : public StackObj {
// types (byte, char, short). In the C2 IR, their operations are
// done with full int type with 4 byte precision (e.g. AddI, MulI).
// Example: char a,b,c; a = (char)(b + c);
// However, if we can prove the the upper bits are only truncated,
// However, if we can prove the upper bits are only truncated,
// and the lower bits for the narrower type computed correctly, we
// can compute the operations in the narrower type directly (e.g we
// perform the AddI or MulI with 1 or 2 bytes). This allows us to
Expand Down