Searched defs:Log2Size (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCSymbolMachO.h105 unsigned Log2Size = Log2_32(Align); local
106 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
107 if (Log2Size > 15)
112 (Log2Size << SF_CommonAlignmentShift);
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp30 unsigned &Log2Size, const MCAssembler &Asm);
45 unsigned &Log2Size, const MCAssembler &Asm) {
47 Log2Size = ~0U;
54 Log2Size = llvm::Log2_32(1);
57 Log2Size = llvm::Log2_32(2);
60 Log2Size = llvm::Log2_32(4);
65 Log2Size = llvm::Log2_32(8);
75 Log2Size = llvm::Log2_32(4);
90 Log2Size = llvm::Log2_32(4);
111 Log2Size
43 getAArch64FixupKindMachOInfo( const MCFixup &Fixup, unsigned &RelocType, const MCSymbolRefExpr *Sym, unsigned &Log2Size, const MCAssembler &Asm) argument
117 canUseLocalRelocation(const MCSectionMachO &Section, const MCSymbol &Symbol, unsigned Log2Size) argument
152 unsigned Log2Size = 0; local
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp36 unsigned Log2Size,
62 unsigned &Log2Size) {
64 Log2Size = ~0U;
71 Log2Size = llvm::Log2_32(1);
74 Log2Size = llvm::Log2_32(2);
77 Log2Size = llvm::Log2_32(4);
80 Log2Size = llvm::Log2_32(8);
99 Log2Size = llvm::Log2_32(4);
106 Log2Size = llvm::Log2_32(4);
120 Log2Size
61 getARMFixupKindMachOInfo(unsigned Kind, unsigned &RelocType, unsigned &Log2Size) argument
243 RecordARMScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Type, unsigned Log2Size, uint64_t &FixedValue) argument
355 unsigned Log2Size; local
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMachObjectWriter.cpp32 unsigned Log2Size, uint64_t &FixedValue);
148 const unsigned IsPCRel, const unsigned Log2Size,
158 (Log2Size << 5) | // was << 25
166 const unsigned Log2Size, const unsigned IsPCRel,
170 MRE.r_word0 = ((Addr << 0) | (Type << 24) | (Log2Size << 28) |
194 unsigned Log2Size, uint64_t &FixedValue) {
281 Log2Size, IsPCRel, Value2);
295 makeScatteredRelocationInfo(MRE, FixupOffset, Type, Log2Size, IsPCRel, Value);
306 const unsigned Log2Size = getFixupKindLog2Size(FK); local
318 Log2Size, FixedValu
146 makeRelocationInfo(MachO::any_relocation_info &MRE, const uint32_t FixupOffset, const uint32_t Index, const unsigned IsPCRel, const unsigned Log2Size, const unsigned IsExtern, const unsigned Type) argument
164 makeScatteredRelocationInfo(MachO::any_relocation_info &MRE, const uint32_t Addr, const unsigned Type, const unsigned Log2Size, const unsigned IsPCRel, const uint32_t Value2) argument
191 recordScatteredRelocation( MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp34 unsigned Log2Size,
103 unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind()); local
124 Value += 1LL << Log2Size;
204 (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
246 Value -= FixupAddress + (1 << Log2Size);
302 switch (-(Target.getConstant() + (1LL << Log2Size))) {
355 MRE.r_word1 = (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
366 unsigned Log2Size,
430 (Log2Size << 28) |
452 (Log2Size << 2
360 recordScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
471 unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind()); local
510 unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind()); local
[all...]

Completed in 107 milliseconds