Skip to content
Snippets Groups Projects
Commit ac2e5526 authored by Hashim Sharif's avatar Hashim Sharif
Browse files

Adding scripts to construct and apply LLVM source patches

parent 4f6a876f
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
### File Copies
cp include/IR/IntrinsicsVISC.td ../../../include/llvm/IR/IntrinsicsVISC.td
cp include/IR/IntrinsicsVISC.td ${LLVM_SRC_ROOT}/include/llvm/IR/IntrinsicsVISC.td
## File Patches
patch /home/hsharif3/Github/llvm-project/llvm/include/llvm/IR/Attributes.td < ./include/IR/Attributes.td.patch
## Header File Patches
patch ${LLVM_SRC_ROOT}/include/llvm/IR/Attributes.td < ./include/IR/Attributes.td.patch
patch ${LLVM_SRC_ROOT}/include/llvm/IR/Intrinsics.td < ./include/IR/Intrinsics.td.patch
patch ${LLVM_SRC_ROOT}/include/llvm/Bitcode/LLVMBitCodes.h < ./include/Bitcode/LLVMBitCodes.h.patch
patch ${LLVM_SRC_ROOT}/include/llvm/Support/Debug.h < ./include/Support/Debug.h.patch
#### Patching Sources
patch ${LLVM_SRC_ROOT}/lib/AsmParser/LLLexer.cpp < ./lib/AsmParser/LLLexer.cpp.patch
patch ${LLVM_SRC_ROOT}/lib/AsmParser/LLLexer.h < ./lib/AsmParser/LLLexer.h.patch
patch ${LLVM_SRC_ROOT}/lib/AsmParser/LLParser.cpp < ./lib/AsmParser/LLParser.cpp.patch
patch ${LLVM_SRC_ROOT}/lib/AsmParser/LLParser.h < ./lib/AsmParser/LLParser.h.patch
patch ${LLVM_SRC_ROOT}/lib/AsmParser/LLToken.h < ./lib/AsmParser/LLToken.h.patch
patch ${LLVM_SRC_ROOT}/lib/IR/Attributes.cpp < ./lib/IR/Attributes.cpp.patch
patch ${LLVM_SRC_ROOT}/lib/Bitcode/Reader/BitcodeReader.cpp < ./lib/Bitcode/Reader/BitcodeReader.cpp.patch
patch ${LLVM_SRC_ROOT}/lib/Bitcode/Writer/BitcodeWriter.cpp < ./lib/Bitcode/Writer/BitcodeWriter.cpp.patch
#!/bin/sh
#### Patching Headers
#### Computing Header Diff
diff -u ../../../include/llvm/Bitcode/LLVMBitCodes.h include/Bitcode/LLVMBitCodes.h > include/Bitcode/LLVMBitCodes.h.patch
diff -u ../../../include/llvm/IR/Attributes.td include/IR/Attributes.td > include/IR/Attributes.td.patch
diff -u ../../../include/llvm/IR/Intrinsics.td include/IR/Intrinsics.td > include/IR/Intrinsics.td.patch
cp include/IR/IntrinsicsVISC.td ../../../include/llvm/IR/IntrinsicsVISC.td
diff -u ../../../include/llvm/Support/Debug.h include/Support/Debug.h > include/Support/Debug.h.patch
#### Patching Sources
#### Computing Source File Diff
diff -u ../../../lib/AsmParser/LLLexer.cpp lib/AsmParser/LLLexer.cpp > lib/AsmParser/LLLexer.cpp.patch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment