일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- pthread
- thread local storage
- LLVM Obfuscator
- TLS
- android inject
- linux thread
- anti debugging
- tracing
- tracerpid
- so inject
- uftrace
- custom packer
- on stack replacement
- apm
- pinpoint
- Obfuscator
- v8 optimizing
- on-stack replacement
- LLVM
- OSR
- v8 tracing
- linux debugging
- Linux packer
- Injection
- 안티디버깅
- initial-exec
- LLVM 난독화
- Linux custom packer
- 난독화
- Android
Archives
- Today
- Total
Why should I know this?
LLVM 원라인 패치 목록 본문
* 유관 패치를 작성하게 되면 반영하기 위해 남겨놓는 목적 *
* 다른 패치 작성자 분들이 혹시 보게 되면 활용해주세요. *
AArch64MIPeepholeOpt.cpp::555
// replaceRegWith changes MIs definition register. Keep it for SSA form until
// deleting MI. Only if we made a new destination register.
if (DstReg != NewDstReg) {
MRI->replaceRegWith(DstReg, NewDstReg);
MI.getOperand(0).setReg(DstReg); // <<<<< 여기
}
// Record the MIs need to be removed.
MI.eraseFromParent();
요거도
https://github.com/llvm/llvm-project/issues/61099
'LLVM-STUDY' 카테고리의 다른 글
computeKnownBitsFromICmpCond (0) | 2024.05.01 |
---|---|
computeKnownBitsFromCond (0) | 2024.05.01 |
LLVM 최적화 패치 제출까지의 순서 정리 (0) | 2024.03.03 |
LLVM debug tips (0) | 2024.01.14 |
LLVM 내부에서 활용되는 논리식 모음 (0) | 2023.12.15 |
Comments