[Lldb-commits] [lldb] r176684 - Update PlatformDarwin to understand how armv7m / armv7em relate
Jason Molenda
jmolenda at apple.com
Thu Mar 7 20:33:44 PST 2013
Author: jmolenda
Date: Thu Mar 7 22:33:44 2013
New Revision: 176684
URL: http://llvm.org/viewvc/llvm-project?rev=176684&view=rev
Log:
Update PlatformDarwin to understand how armv7m / armv7em relate
to the other armv7 types as far as compatibility/interchangability
goes.
<rdar://problem/13361372>
Modified:
lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp?rev=176684&r1=176683&r2=176684&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp Thu Mar 7 22:33:44 2013
@@ -742,18 +742,22 @@ PlatformDarwin::ARMGetSupportedArchitect
case 1: arch.SetTriple ("armv7f-apple-ios"); return true;
case 2: arch.SetTriple ("armv7k-apple-ios"); return true;
case 3: arch.SetTriple ("armv7s-apple-ios"); return true;
- case 4: arch.SetTriple ("armv6-apple-ios"); return true;
- case 5: arch.SetTriple ("armv5-apple-ios"); return true;
- case 6: arch.SetTriple ("armv4-apple-ios"); return true;
- case 7: arch.SetTriple ("arm-apple-ios"); return true;
- case 8: arch.SetTriple ("thumbv7-apple-ios"); return true;
- case 9: arch.SetTriple ("thumbv7f-apple-ios"); return true;
- case 10: arch.SetTriple ("thumbv7k-apple-ios"); return true;
- case 11: arch.SetTriple ("thumbv7s-apple-ios"); return true;
- case 12: arch.SetTriple ("thumbv6-apple-ios"); return true;
- case 13: arch.SetTriple ("thumbv5-apple-ios"); return true;
- case 14: arch.SetTriple ("thumbv4t-apple-ios"); return true;
- case 15: arch.SetTriple ("thumb-apple-ios"); return true;
+ case 4: arch.SetTriple ("armv7m-apple-ios"); return true;
+ case 5: arch.SetTriple ("armv7em-apple-ios"); return true;
+ case 6: arch.SetTriple ("armv6-apple-ios"); return true;
+ case 7: arch.SetTriple ("armv5-apple-ios"); return true;
+ case 8: arch.SetTriple ("armv4-apple-ios"); return true;
+ case 9: arch.SetTriple ("arm-apple-ios"); return true;
+ case 10: arch.SetTriple ("thumbv7-apple-ios"); return true;
+ case 11: arch.SetTriple ("thumbv7f-apple-ios"); return true;
+ case 12: arch.SetTriple ("thumbv7k-apple-ios"); return true;
+ case 13: arch.SetTriple ("thumbv7s-apple-ios"); return true;
+ case 14: arch.SetTriple ("thumbv7m-apple-ios"); return true;
+ case 15: arch.SetTriple ("thumbv7em-apple-ios"); return true;
+ case 16: arch.SetTriple ("thumbv6-apple-ios"); return true;
+ case 17: arch.SetTriple ("thumbv5-apple-ios"); return true;
+ case 18: arch.SetTriple ("thumbv4t-apple-ios"); return true;
+ case 19: arch.SetTriple ("thumb-apple-ios"); return true;
default: break;
}
break;
@@ -809,6 +813,44 @@ PlatformDarwin::ARMGetSupportedArchitect
case 7: arch.SetTriple ("thumbv7-apple-ios"); return true;
case 8: arch.SetTriple ("thumbv6-apple-ios"); return true;
case 9: arch.SetTriple ("thumbv5-apple-ios"); return true;
+ case 10: arch.SetTriple ("thumbv4t-apple-ios"); return true;
+ case 11: arch.SetTriple ("thumb-apple-ios"); return true;
+ default: break;
+ }
+ break;
+
+ case ArchSpec::eCore_arm_armv7m:
+ switch (idx)
+ {
+ case 0: arch.SetTriple ("armv7m-apple-ios"); return true;
+ case 1: arch.SetTriple ("armv7-apple-ios"); return true;
+ case 2: arch.SetTriple ("armv6-apple-ios"); return true;
+ case 3: arch.SetTriple ("armv5-apple-ios"); return true;
+ case 4: arch.SetTriple ("armv4-apple-ios"); return true;
+ case 5: arch.SetTriple ("arm-apple-ios"); return true;
+ case 6: arch.SetTriple ("thumbv7m-apple-ios"); return true;
+ case 7: arch.SetTriple ("thumbv7-apple-ios"); return true;
+ case 8: arch.SetTriple ("thumbv6-apple-ios"); return true;
+ case 9: arch.SetTriple ("thumbv5-apple-ios"); return true;
+ case 10: arch.SetTriple ("thumbv4t-apple-ios"); return true;
+ case 11: arch.SetTriple ("thumb-apple-ios"); return true;
+ default: break;
+ }
+ break;
+
+ case ArchSpec::eCore_arm_armv7em:
+ switch (idx)
+ {
+ case 0: arch.SetTriple ("armv7em-apple-ios"); return true;
+ case 1: arch.SetTriple ("armv7-apple-ios"); return true;
+ case 2: arch.SetTriple ("armv6-apple-ios"); return true;
+ case 3: arch.SetTriple ("armv5-apple-ios"); return true;
+ case 4: arch.SetTriple ("armv4-apple-ios"); return true;
+ case 5: arch.SetTriple ("arm-apple-ios"); return true;
+ case 6: arch.SetTriple ("thumbv7em-apple-ios"); return true;
+ case 7: arch.SetTriple ("thumbv7-apple-ios"); return true;
+ case 8: arch.SetTriple ("thumbv6-apple-ios"); return true;
+ case 9: arch.SetTriple ("thumbv5-apple-ios"); return true;
case 10: arch.SetTriple ("thumbv4t-apple-ios"); return true;
case 11: arch.SetTriple ("thumb-apple-ios"); return true;
default: break;
More information about the lldb-commits
mailing list