HomeSort by relevance Sort by last modified time
    Searched refs:OW (Results 1 - 11 of 11) sorted by null

  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeAsmBackend.cpp 62 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
106 bool MBlazeAsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
111 OW->Write32(0x00000000);
  /external/llvm/lib/MC/
MCAssembler.cpp 506 static void writeFragmentContents(const MCFragment &F, MCObjectWriter *OW) {
508 OW->WriteBytes(EF.getContents());
514 MCObjectWriter *OW = &Asm.getWriter();
538 if (!Asm.getBackend().writeNopData(DistanceToBoundary, OW))
543 if (!Asm.getBackend().writeNopData(BundlePadding, OW))
550 uint64_t Start = OW->getStream().tell();
577 if (!Asm.getBackend().writeNopData(Count, OW))
587 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
588 case 2: OW->Write16(uint16_t(AF.getValue())); break;
589 case 4: OW->Write32(uint32_t(AF.getValue())); break
    [all...]
MCDwarf.cpp 359 void MCDwarfLineAddr::Write(MCObjectWriter *OW, int64_t LineDelta,
364 OW->WriteBytes(OS.str());
    [all...]
  /external/llvm/include/llvm/MC/
MCAsmBackend.h 158 virtual bool writeNopData(uint64_t Count, MCObjectWriter *OW) const = 0;
MCDwarf.h 239 static void Write(MCObjectWriter *OW,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 131 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
221 bool ARMAsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
231 OW->Write16(nopEncoding);
233 OW->Write8(0);
241 OW->Write32(nopEncoding);
246 case 1: OW->Write8(0); break;
247 case 2: OW->Write16(0); break;
248 case 3: OW->Write16(0); OW->Write8(0xa0); break;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 240 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
248 OW->Write32(0);
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 134 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
138 OW->Write8(0);
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUAsmBackend.cpp 60 virtual bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 121 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
285 bool X86AsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
314 OW->Write8(0x90);
324 OW->Write8(0x66);
327 OW->Write8(Nops[Rest - 1][i]);
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 41 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
220 bool AArch64AsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
227 OW->Write32(0xd503201f);

Completed in 2226 milliseconds