Searched refs:MachO (Results 1 - 15 of 15) sorted by relevance

/external/llvm/lib/Object/
H A DMachOObjectFile.cpp15 #include "llvm/Object/MachO.h"
508 Result = 1 << MachO::GET_COMM_ALIGN(Entry.Flags);
569 if (n_type & MachO::NlistMaskStab) {
574 switch (n_type & MachO::NlistMaskType) {
575 case MachO::NListTypeUndefined :
578 case MachO::NListTypeSection :
621 if ((MachOType & MachO::NlistMaskType) == MachO::NListTypeUndefined)
627 if (MachOType & MachO::NlistMaskExternal) {
629 if ((MachOType & MachO
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp286 const MachOObjectFile *MachO = static_cast<const MachOObjectFile*>(OF); local
287 macho::RelocationEntry RE = MachO->getRelocation(RelI.getRawDataRefImpl());
289 uint32_t RelType = MachO->getAnyRelocationType(RE);
293 bool isExtern = MachO->getPlainRelocationExternal(RE);
294 bool IsPCRel = MachO->getAnyRelocationPCRel(RE);
295 unsigned Size = MachO->getAnyRelocationLength(RE);
325 SectionRef Sec = MachO->getRelocationSection(RE);
/external/llvm/include/llvm/ADT/
H A DTriple.h123 MachO, enumerator in enum:llvm::Triple::EnvironmentType
341 /// \brief Tests whether the environment is MachO.
344 return getEnvironment() == Triple::MachO || isOSDarwin();
/external/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp89 MachineModuleInfoMachO &MachO = getMachOMMI(AP); local
93 MachO.getHiddenGVStubEntry(Sym) : MachO.getGVStubEntry(Sym);
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp42 #include "llvm/Object/MachO.h"
87 MachOOpt("macho", cl::desc("Use MachO specific object file parser"));
161 TheTriple.setEnvironment(Triple::MachO);
413 if (const MachOObjectFile *MachO =
416 SegmentName = MachO->getSectionFinalSegmentName(DR);
721 if (const MachOObjectFile *MachO =
724 StringRef SegmentName = MachO->getSectionFinalSegmentName(DR);
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp455 if (TheTriple.isOSDarwin() || TheTriple.getEnvironment() == Triple::MachO)
468 if (TheTriple.isOSDarwin() || TheTriple.getEnvironment() == Triple::MachO)
H A DX86MCTargetDesc.cpp271 if (TheTriple.isOSDarwin() || TheTriple.getEnvironment() == Triple::MachO) {
365 if (TheTriple.isOSDarwin() || TheTriple.getEnvironment() == Triple::MachO)
/external/clang/lib/Driver/
H A DWindowsToolChain.cpp46 if (getTriple().getEnvironment() == llvm::Triple::MachO)
/external/llvm/lib/Support/
H A DTriple.cpp153 case MachO: return "macho";
305 .StartsWith("macho", Triple::MachO)
/external/chromium_org/v8/src/
H A Dgdb-jit.cc47 class MachO;
49 typedef MachO DebugObject;
501 class MachO BASE_EMBEDDED {
503 explicit MachO(Zone* zone) : zone_(zone), sections_(6, zone) { } function in class:v8::BASE_EMBEDDED
1923 MachO mach_o(&zone);
/external/v8/src/
H A Dgdb-jit.cc45 class MachO;
47 typedef MachO DebugObject;
499 class MachO BASE_EMBEDDED {
501 MachO() : sections_(6) { } function in class:v8::BASE_EMBEDDED
1910 MachO mach_o;
/external/llvm/include/llvm/Support/
H A DMachO.h1 //===-- llvm/Support/MachO.h - The MachO file format ------------*- C++ -*-===//
10 // This file defines manifest constants for the MachO object file format.
23 namespace MachO { namespace in namespace:llvm
26 // Constants for the "magic" field in llvm::MachO::mach_header and
27 // llvm::MachO::mach_header_64
35 // Constants for the "filetype" field in llvm::MachO::mach_header and
36 // llvm::MachO::mach_header_64
49 // Constant bits for the "flags" field in llvm::MachO::mach_header and
50 // llvm::MachO
[all...]
/external/llvm/lib/MC/
H A DMCObjectFileInfo.cpp20 // MachO
670 (T.isOSDarwin() || T.getEnvironment() == Triple::MachO)) {
/external/llvm/unittests/ADT/
H A DTripleTest.cpp204 for (int Env = 1+Triple::UnknownEnvironment; Env <= Triple::MachO;
/external/clang/lib/Basic/
H A DTargets.cpp5391 if (Triple.isOSDarwin() || Triple.getEnvironment() == llvm::Triple::MachO)

Completed in 326 milliseconds