Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Fix GC stress modes 4 and 8 on Linux ARM #17456

Merged
merged 1 commit into from Apr 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/vm/arm/cgencpu.h
Expand Up @@ -30,7 +30,9 @@ struct ArgLocDesc;

extern PCODE GetPreStubEntryPoint();

#ifndef FEATURE_PAL
#define USE_REDIRECT_FOR_GCSTRESS
#endif // FEATURE_PAL

// CPU-dependent functions
Stub * GenerateInitPInvokeFrameHelper();
Expand Down
2 changes: 1 addition & 1 deletion src/vm/gccover.h
Expand Up @@ -77,7 +77,7 @@ class GCCoverageInfo {
// 16-bit illegal instructions which will cause exception and cause
// control to go to GcStress codepath
#define INTERRUPT_INSTR 0xde00
#define INTERRUPT_INSTR_CALL 0xde01
#define INTERRUPT_INSTR_CALL 0xde03 // 0xde01 generates SIGTRAP (breakpoint) instead of SIGILL on Unix
#define INTERRUPT_INSTR_PROTECT_RET 0xde02

// 32-bit illegal instructions. It is necessary to replace a 16-bit instruction
Expand Down