[llvm] 63ecb01 - [RISCV] Reduce dynamic relocations for RISCVOpcodesList table. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 15:07:48 PST 2025


Author: Craig Topper
Date: 2025-02-27T14:59:55-08:00
New Revision: 63ecb0135d1c6457f82fc0e717d4fa8cdf0ee8e0

URL: https://github.com/llvm/llvm-project/commit/63ecb0135d1c6457f82fc0e717d4fa8cdf0ee8e0
DIFF: https://github.com/llvm/llvm-project/commit/63ecb0135d1c6457f82fc0e717d4fa8cdf0ee8e0.diff

LOG: [RISCV] Reduce dynamic relocations for RISCVOpcodesList table. NFC

Inline the strings directly into the table instead of storing a pointer.
Similar to what was done for other searchable tables in the last couple
months.

Added: 
    

Modified: 
    llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
index 80ff18d914dca..5cc20954fb95b 100644
--- a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
+++ b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
@@ -484,8 +484,8 @@ struct SysReg {
 
 namespace RISCVInsnOpcode {
 struct RISCVOpcode {
-  const char *Name;
-  unsigned Value;
+  char Name[10];
+  uint8_t Value;
 };
 
 #define GET_RISCVOpcodesList_DECL


        


More information about the llvm-commits mailing list