Displaying 1 result from an estimated 1 matches for "aarch64machoobjectwriter".
2013 Sep 25
1
[LLVMdev] arm64 / iOS support
...fragment that the fixup touches, mask in the bits
+ // from the fixup value.
+ for (unsigned i = 0; i != NumBytes; ++i) {
+ Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
+ }
+ }
+
+ MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
+ return createAArch64MachOObjectWriter(OS, MachO::CPU_TYPE_ARM64,
+ MachO::CPU_SUBTYPE_ARM64_ALL);
+ }
+};
+
class ELFAArch64AsmBackend : public AArch64AsmBackend {
public:
uint8_t OSABI;
@@ -581,5 +721,7 @@ MCAsmBackend *
llvm::createAArch64AsmBackend(const Target &T, const MCRegister...