Home
last modified time | relevance | path

Searched refs:getContents (Results 1 – 21 of 21) sorted by relevance

/trueos/contrib/llvm/lib/MC/
HDMCObjectStreamer.cpp117 MCFixup::Create(DF->getContents().size(), Value, in EmitValueImpl()
119 DF->getContents().resize(DF->getContents().size() + Size, 0); in EmitValueImpl()
142 SD.setOffset(F->getContents().size()); in EmitLabel()
244 IF->getContents().append(Code.begin(), Code.end()); in EmitInstToFragment()
309 getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end()); in EmitBytes()
357 DF->getFixups().push_back(MCFixup::Create(DF->getContents().size(), in EmitGPRel32Value()
359 DF->getContents().resize(DF->getContents().size() + 4, 0); in EmitGPRel32Value()
366 DF->getFixups().push_back(MCFixup::Create(DF->getContents().size(), in EmitGPRel64Value()
368 DF->getContents().resize(DF->getContents().size() + 8, 0); in EmitGPRel64Value()
374 getOrCreateDataFragment()->getContents().append(NumBytes, FillValue); in EmitFill()
HDMCAssembler.cpp431 return cast<MCEncodedFragment>(F).getContents().size(); in computeFragmentSize()
436 return cast<MCLEBFragment>(F).getContents().size(); in computeFragmentSize()
469 return cast<MCDwarfLineAddrFragment>(F).getContents().size(); in computeFragmentSize()
471 return cast<MCDwarfCallFrameFragment>(F).getContents().size(); in computeFragmentSize()
532 OW->WriteBytes(EF.getContents()); in writeFragmentContents()
655 OW->WriteBytes(LF.getContents().str()); in writeFragment()
671 OW->WriteBytes(OF.getContents().str()); in writeFragment()
676 OW->WriteBytes(CF.getContents().str()); in writeFragment()
703 for (unsigned i = 0, e = DF.getContents().size(); i != e; ++i) in writeSectionData()
704 assert(DF.getContents()[i] == 0 && in writeSectionData()
[all …]
HDMCPureStreamer.cpp137 SD.setOffset(F->getContents().size()); in EmitLabel()
153 getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end()); in EmitBytes()
205 IF->getContents() = Code; in EmitInstToFragment()
220 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size()); in EmitInstToData()
223 DF->getContents().append(Code.begin(), Code.end()); in EmitInstToData()
HDWinCOFFStreamer.cpp91 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size()); in EmitInstToData()
94 DF->getContents().append(Code.begin(), Code.end()); in EmitInstToData()
270 MCFixup::Create(DF->getContents().size(), in EmitCOFFSecRel32()
273 DF->getContents().resize(DF->getContents().size() + 4, 0); in EmitCOFFSecRel32()
HDELFObjectWriter.cpp200 F.getContents().append(&buf[0], &buf[1]); in String8()
209 F.getContents().append(&buf[0], &buf[2]); in String16()
218 F.getContents().append(&buf[0], &buf[4]); in String32()
227 F.getContents().append(&buf[0], &buf[8]); in String64()
1196 F->getContents().append(StringTable.begin(), StringTable.end()); in CreateMetadataSections()
1214 F->getContents().push_back('\x00'); in CreateMetadataSections()
1232 F->getContents().append(Name.begin(), Name.end()); in CreateMetadataSections()
1233 F->getContents().push_back('\x00'); in CreateMetadataSections()
1399 Ret += cast<MCDataFragment>(F).getContents().size(); in DataSectionSize()
1431 WriteBytes(cast<MCDataFragment>(F).getContents()); in WriteDataSectionData()
HDMCELFStreamer.cpp478 CEIF->getContents().append(Code.begin(), Code.end()); in EmitInstToData()
499 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size()); in EmitInstToData()
503 DF->getContents().append(Code.begin(), Code.end()); in EmitInstToData()
HDMCMachOStreamer.cpp392 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size()); in EmitInstToData()
395 DF->getContents().append(Code.begin(), Code.end()); in EmitInstToData()
HDMCObjectDisassembler.cpp111 StringRef Contents; SI->getContents(Contents); in buildSectionAtoms()
519 SI->getContents(ModInitContents); in MCMachOObjectDisassembler()
522 SI->getContents(ModExitContents); in MCMachOObjectDisassembler()
HDMCObjectSymbolizer.cpp118 S->getContents(Contents); in tryAddingPcLoadReferenceComment()
/trueos/contrib/llvm/include/llvm/MC/
HDMCAssembler.h143 virtual SmallVectorImpl<char> &getContents() = 0;
144 virtual const SmallVectorImpl<char> &getContents() const = 0;
221 virtual SmallVectorImpl<char> &getContents() { return Contents; } in getContents() function
222 virtual const SmallVectorImpl<char> &getContents() const { return Contents; } in getContents() function
271 virtual SmallVectorImpl<char> &getContents() { return Contents; } in getContents() function
272 virtual const SmallVectorImpl<char> &getContents() const { return Contents; } in getContents() function
302 virtual SmallVectorImpl<char> &getContents() { return Contents; } in getContents() function
303 virtual const SmallVectorImpl<char> &getContents() const { return Contents; } in getContents() function
466 SmallString<8> &getContents() { return Contents; } in getContents() function
467 const SmallString<8> &getContents() const { return Contents; } in getContents() function
[all …]
/trueos/contrib/llvm/include/llvm/Object/
HDObjectFile.h153 error_code getContents(StringRef &Result) const;
480 inline error_code SectionRef::getContents(StringRef &Result) const { in getContents() function
/trueos/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
HDRuntimeDyld.cpp140 Check(si->getContents(SectionData)); in loadObject()
264 Check(Section.getContents(data)); in emitSection()
/trueos/contrib/llvm/lib/Object/
HDObject.cpp134 if (error_code ec = (*unwrap(SI))->getContents(ret)) in LLVMGetSectionContents()
/trueos/contrib/llvm/tools/llvm-objdump/
HDllvm-objdump.cpp455 if (error(i->getContents(Bytes))) break; in DisassembleObject()
603 if (error(si->getContents(Contents))) continue; in PrintSectionContents()
HDMachODump.cpp326 Sections[SectIdx].getContents(Bytes); in DisassembleInputMachO2()
/trueos/contrib/llvm/tools/llvm-readobj/
HDMachODumper.cpp291 if (error(SecI->getContents(Data))) break; in printSections()
HDCOFFDumper.cpp712 if (error(SecI->getContents(Data))) break; in printSections()
769 if (error(SecI->getContents(Contents))) return; in printRelocation()
/trueos/contrib/llvm/tools/llvm-symbolizer/
HDLLVMSymbolize.cpp280 I->getContents(Data); in getGNUDebuglinkContents()
/trueos/contrib/llvm/lib/DebugInfo/
HDDWARFContext.cpp585 i->getContents(data); in DWARFContextInMemory()
/trueos/contrib/llvm/lib/Target/ARM/MCTargetDesc/
HDARMELFStreamer.cpp794 DF->getFixups().push_back(MCFixup::Create(DF->getContents().size(), in EmitPersonalityFixup()
/trueos/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
HDJDTrace.java937 p.getContents().split("[/{;]", 2)[0]; in main()