HomeSort by relevance Sort by last modified time
    Searched refs:macho (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/gas32/
gas_macho32_test.sh 2 ${srcdir}/out_test.sh macho_test modules/objfmts/macho/tests/gas32 "GAS 32-bit macho objfmt" "-f macho32 -p gas" ".o"
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/gas64/
gas_macho64_test.sh 2 ${srcdir}/out_test.sh macho_test modules/objfmts/macho/tests/gas64 "GAS 64-bit macho objfmt" "-f macho64 -p gas" ".o"
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm32/
macho32_test.sh 2 ${srcdir}/out_test.sh macho_test modules/objfmts/macho/tests/nasm32 "32-bit macho objfmt" "-f macho32" ".o"
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm64/
macho64_test.sh 2 ${srcdir}/out_test.sh macho_test modules/objfmts/macho/tests/nasm64 "64-bit macho objfmt" "-f macho64" ".o"
  /external/llvm/tools/macho-dump/
Makefile 1 ##===- tools/macho-dump/Makefile ---------------------------*- Makefile -*-===##
11 TOOLNAME := macho-dump
macho-dump.cpp 1 //===-- macho-dump.cpp - Mach Object Dumping Tool -------------------------===//
14 #include "llvm/Object/MachO.h"
102 macho::RelocationEntry RE = Obj.getRelocation(I->getRawDataRefImpl());
127 macho::SegmentLoadCommand SLC = Obj.getSegmentLoadCommand(LCI);
137 macho::Section Sect = Obj.getSection(LCI, i);
152 macho::Segment64LoadCommand SLC = Obj.getSegment64LoadCommand(LCI);
161 macho::Section64 Sect = Obj.getSection64(LCI, i);
193 macho::SymtabLoadCommand SLC = Obj.getSymtabLoadCommand();
214 macho::Symbol64TableEntry STE = Obj.getSymbol64TableEntry(DRI);
219 macho::SymbolTableEntry STE = Obj.getSymbolTableEntry(DRI)
    [all...]
  /external/llvm/include/llvm/Object/
MachO.h 1 //===- MachO.h - MachO object file implementation ---------------*- C++ -*-===//
11 // interface for MachO files.
23 #include "llvm/Support/MachO.h"
58 macho::LoadCommand C; // The command itself.
140 // In a MachO file, sections have a segment name. This is used in the .o
150 // MachO specific Info about relocations.
151 bool isRelocationScattered(const macho::RelocationEntry &RE) const;
152 unsigned getPlainRelocationSymbolNum(const macho::RelocationEntry &RE) const;
153 bool getPlainRelocationExternal(const macho::RelocationEntry &RE) const
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 15 #include "llvm/Object/MachO.h"
53 void SwapStruct(macho::RelocationEntry &H) {
59 void SwapStruct(macho::LoadCommand &L) {
71 void SwapStruct(macho::Section &S) {
84 void SwapStruct(macho::Section64 &S) {
98 void SwapStruct(macho::SymbolTableEntry &S) {
105 void SwapStruct(macho::Symbol64TableEntry &S) {
112 void SwapStruct(macho::Header &H) {
123 void SwapStruct(macho::Header64Ext &E) {
128 void SwapStruct(macho::SymtabLoadCommand &C)
    [all...]
MachOUniversal.cpp 16 #include "llvm/Object/MachO.h"
34 void SwapStruct(macho::FatHeader &H) {
40 void SwapStruct(macho::FatArchHeader &H) {
66 const char *HeaderPos = ParentData.begin() + macho::FatHeaderSize +
67 Index * macho::FatArchHeaderSize;
68 Header = getUniversalBinaryStruct<macho::FatArchHeader>(HeaderPos);
99 if (Source->getBufferSize() < macho::FatHeaderSize) {
105 macho::FatHeader H = getUniversalBinaryStruct<macho::FatHeader>(Buf.begin());
107 uint32_t MinSize = macho::FatHeaderSize
    [all...]
  /external/chromium/build/mac/
strip_save_dsym 45 def macho_archs(macho):
51 file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "--", macho],
77 print >> sys.stderr, "No architectures in %s" % macho
85 def macho_uuids(macho):
88 archs = macho_archs(macho)
97 macho],
169 print >> sys.stderr, "No UUIDs in %s" % macho
175 def dsym_path(macho):
187 dsym = macho
193 # Creates a fake .dSYM bundle at dsym for macho, a Mach-O image with th
    [all...]
  /external/chromium_org/build/mac/
strip_save_dsym 45 def macho_archs(macho):
51 file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "--", macho],
77 print >> sys.stderr, "No architectures in %s" % macho
85 def macho_uuids(macho):
88 archs = macho_archs(macho)
97 macho],
169 print >> sys.stderr, "No UUIDs in %s" % macho
175 def dsym_path(macho):
187 dsym = macho
193 # Creates a fake .dSYM bundle at dsym for macho, a Mach-O image with th
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 66 RelocType = unsigned(macho::RIT_Vanilla);
95 RelocType = unsigned(macho::RIT_ARM_Branch24Bit);
102 RelocType = unsigned(macho::RIT_ARM_ThumbBranch22Bit);
109 RelocType = unsigned(macho::RIT_ARM_ThumbBranch22Bit);
124 RelocType = unsigned(macho::RIT_ARM_Half);
129 RelocType = unsigned(macho::RIT_ARM_Half);
135 RelocType = unsigned(macho::RIT_ARM_Half);
140 RelocType = unsigned(macho::RIT_ARM_Half);
156 unsigned Type = macho::RIT_ARM_Half;
182 Type = macho::RIT_ARM_HalfDifference
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 163 case macho::RIT_Vanilla: {
172 case macho::RIT_Difference:
173 case macho::RIT_Generic_LocalDifference:
174 case macho::RIT_Generic_PreboundLazyPointer:
196 case macho::RIT_X86_64_Signed1:
197 case macho::RIT_X86_64_Signed2:
198 case macho::RIT_X86_64_Signed4:
199 case macho::RIT_X86_64_Signed:
200 case macho::RIT_X86_64_Unsigned:
201 case macho::RIT_X86_64_Branch:
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 135 Type = macho::RIT_X86_64_Unsigned;
144 Type = macho::RIT_X86_64_Branch;
191 Type = macho::RIT_X86_64_Unsigned;
193 macho::RelocationEntry MRE;
210 Type = macho::RIT_X86_64_Subtractor;
270 Type = macho::RIT_X86_64_GOTLoad;
272 Type = macho::RIT_X86_64_GOT;
274 Type = macho::RIT_X86_64_TLV;
278 Type = macho::RIT_X86_64_Signed;
295 case 1: Type = macho::RIT_X86_64_Signed1; break
    [all...]
  /external/llvm/test/MC/MachO/ARM/
llvm-objdump-macho-stripped.s 1 @ RUN: llvm-mc -triple=thumbv7-apple-ios -filetype=obj -o - < %s | llvm-objdump -d -macho -triple=thumbv7-apple-ios - | FileCheck %s
nop-armv4-padding.s 2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
nop-armv6t2-padding.s 2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
relax-thumb-ldr-literal.s 2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
relax-thumb2-branches.s 1 @ RUN: llvm-mc -triple=thumbv7-apple-darwin -show-encoding %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s
thumb2-function-relative-load.s 2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
thumb2-movt-fixup.s 1 @ RUN: llvm-mc -mcpu=cortex-a8 -triple thumbv7-apple-darwin10 -filetype=obj -o - < %s | macho-dump | FileCheck %s
data-in-code.s 1 @ RUN: llvm-mc -triple armv7-apple-darwin10 -filetype=obj -o - < %s | macho-dump | FileCheck %s
nop-thumb-padding.s 2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
nop-thumb2-padding.s 2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
  /external/llvm/lib/MC/
MachObjectWriter.cpp 131 Flags |= macho::HF_SubsectionsViaSymbols;
139 Write32(is64Bit() ? macho::HM_Object64 : macho::HM_Object32);
144 Write32(macho::HFT_Object);
152 (is64Bit() ? macho::Header64Size : macho::Header32Size));
170 is64Bit() ? macho::SegmentLoadCommand64Size:
171 macho::SegmentLoadCommand32Size;
172 Write32(is64Bit() ? macho::LCT_Segment64 : macho::LCT_Segment)
    [all...]

Completed in 403 milliseconds

1 2 3