@@ -916,7 +916,7 @@ static void declare_symbols(LLVMModuleRef Src, LLVMModuleRef M) {
916
916
if (!Begin) {
917
917
if (End != nullptr )
918
918
report_fatal_error (" Range has an end but no beginning" );
919
- return ;
919
+ goto NamedMDDecl ;
920
920
}
921
921
922
922
Cur = Begin;
@@ -943,6 +943,38 @@ static void declare_symbols(LLVMModuleRef Src, LLVMModuleRef M) {
943
943
944
944
Cur = Next;
945
945
}
946
+
947
+ NamedMDDecl:
948
+ LLVMNamedMDNodeRef BeginMD = LLVMGetFirstNamedMetadata (Src);
949
+ LLVMNamedMDNodeRef EndMD = LLVMGetLastNamedMetadata (Src);
950
+ if (!BeginMD) {
951
+ if (EndMD != nullptr )
952
+ report_fatal_error (" Range has an end but no beginning" );
953
+ return ;
954
+ }
955
+
956
+ LLVMNamedMDNodeRef CurMD = BeginMD;
957
+ LLVMNamedMDNodeRef NextMD = nullptr ;
958
+ while (true ) {
959
+ size_t NameLen;
960
+ const char *Name = LLVMGetNamedMetadataName (CurMD, &NameLen);
961
+ if (LLVMGetNamedMetadata (M, Name, NameLen))
962
+ report_fatal_error (" Named Metadata Node already cloned" );
963
+ LLVMGetOrInsertNamedMetadata (M, Name, NameLen);
964
+
965
+ NextMD = LLVMGetNextNamedMetadata (CurMD);
966
+ if (NextMD == nullptr ) {
967
+ if (CurMD != EndMD)
968
+ report_fatal_error (" " );
969
+ break ;
970
+ }
971
+
972
+ LLVMNamedMDNodeRef PrevMD = LLVMGetPreviousNamedMetadata (NextMD);
973
+ if (PrevMD != CurMD)
974
+ report_fatal_error (" Next.Previous global is not Current" );
975
+
976
+ CurMD = NextMD;
977
+ }
946
978
}
947
979
948
980
static void clone_symbols (LLVMModuleRef Src, LLVMModuleRef M) {
@@ -1041,7 +1073,7 @@ static void clone_symbols(LLVMModuleRef Src, LLVMModuleRef M) {
1041
1073
if (!Begin) {
1042
1074
if (End != nullptr )
1043
1075
report_fatal_error (" Range has an end but no beginning" );
1044
- return ;
1076
+ goto NamedMDClone ;
1045
1077
}
1046
1078
1047
1079
Cur = Begin;
@@ -1073,6 +1105,47 @@ static void clone_symbols(LLVMModuleRef Src, LLVMModuleRef M) {
1073
1105
1074
1106
Cur = Next;
1075
1107
}
1108
+
1109
+ NamedMDClone:
1110
+ LLVMNamedMDNodeRef BeginMD = LLVMGetFirstNamedMetadata (Src);
1111
+ LLVMNamedMDNodeRef EndMD = LLVMGetLastNamedMetadata (Src);
1112
+ if (!BeginMD) {
1113
+ if (EndMD != nullptr )
1114
+ report_fatal_error (" Range has an end but no beginning" );
1115
+ return ;
1116
+ }
1117
+
1118
+ LLVMNamedMDNodeRef CurMD = BeginMD;
1119
+ LLVMNamedMDNodeRef NextMD = nullptr ;
1120
+ while (true ) {
1121
+ size_t NameLen;
1122
+ const char *Name = LLVMGetNamedMetadataName (CurMD, &NameLen);
1123
+ LLVMNamedMDNodeRef NamedMD = LLVMGetNamedMetadata (M, Name, NameLen);
1124
+ if (!NamedMD)
1125
+ report_fatal_error (" Named MD Node must have been declared already" );
1126
+
1127
+ unsigned OperandCount = LLVMGetNamedMetadataNumOperands (Src, Name);
1128
+ LLVMValueRef *OperandBuf = static_cast <LLVMValueRef *>(
1129
+ safe_malloc (OperandCount * sizeof (LLVMValueRef)));
1130
+ LLVMGetNamedMetadataOperands (Src, Name, OperandBuf);
1131
+ for (unsigned i = 0 , e = OperandCount; i != e; ++i) {
1132
+ LLVMAddNamedMetadataOperand (M, Name, OperandBuf[i]);
1133
+ }
1134
+ free (OperandBuf);
1135
+
1136
+ NextMD = LLVMGetNextNamedMetadata (CurMD);
1137
+ if (NextMD == nullptr ) {
1138
+ if (CurMD != EndMD)
1139
+ report_fatal_error (" Last Named MD Node does not match End" );
1140
+ break ;
1141
+ }
1142
+
1143
+ LLVMNamedMDNodeRef PrevMD = LLVMGetPreviousNamedMetadata (NextMD);
1144
+ if (PrevMD != CurMD)
1145
+ report_fatal_error (" Next.Previous Named MD Node is not Current" );
1146
+
1147
+ CurMD = NextMD;
1148
+ }
1076
1149
}
1077
1150
1078
1151
int llvm_echo (void ) {
@@ -1089,18 +1162,6 @@ int llvm_echo(void) {
1089
1162
LLVMSetSourceFileName (M, SourceFileName, SourceFileLen);
1090
1163
LLVMSetModuleIdentifier (M, ModuleName, ModuleIdentLen);
1091
1164
1092
- size_t SourceFlagsLen;
1093
- LLVMModuleFlagEntry *ModuleFlags =
1094
- LLVMCopyModuleFlagsMetadata (Src, &SourceFlagsLen);
1095
- for (unsigned i = 0 ; i < SourceFlagsLen; ++i) {
1096
- size_t EntryNameLen;
1097
- const char *EntryName =
1098
- LLVMModuleFlagEntriesGetKey (ModuleFlags, i, &EntryNameLen);
1099
- LLVMAddModuleFlag (M, LLVMModuleFlagEntriesGetFlagBehavior (ModuleFlags, i),
1100
- EntryName, EntryNameLen,
1101
- LLVMModuleFlagEntriesGetMetadata (ModuleFlags, i));
1102
- }
1103
-
1104
1165
LLVMSetTarget (M, LLVMGetTarget (Src));
1105
1166
LLVMSetModuleDataLayout (M, LLVMGetModuleDataLayout (Src));
1106
1167
if (strcmp (LLVMGetDataLayoutStr (M), LLVMGetDataLayoutStr (Src)))
@@ -1115,7 +1176,6 @@ int llvm_echo(void) {
1115
1176
char *Str = LLVMPrintModuleToString (M);
1116
1177
fputs (Str, stdout);
1117
1178
1118
- LLVMDisposeModuleFlagsMetadata (ModuleFlags);
1119
1179
LLVMDisposeMessage (Str);
1120
1180
LLVMDisposeModule (Src);
1121
1181
LLVMDisposeModule (M);
0 commit comments