Home
last modified time | relevance | path

Searched refs:align_frag (Results 1 – 5 of 5) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
DBranchIsland.cpp110 AlignFragment* align_frag = in addStub() local
112 align_frag->setParent(sd); in addStub()
113 sd->getFragmentList().insert(end(), align_frag); in addStub()
114 align_frag->setOffset(align_frag->getPrevNode()->getOffset() + in addStub()
115 align_frag->getPrevNode()->size()); in addStub()
136 AlignFragment* align_frag = in addStub() local
138 align_frag->setParent(sd); in addStub()
139 sd->getFragmentList().insert(end(), align_frag); in addStub()
140 align_frag->setOffset(align_frag->getPrevNode()->getOffset() + in addStub()
141 align_frag->getPrevNode()->size()); in addStub()
DELFObjectWriter.cpp665 const AlignFragment& align_frag = llvm::cast<AlignFragment>(*fragIter); in emitSectionData() local
666 uint64_t count = size / align_frag.getValueSize(); in emitSectionData()
667 switch (align_frag.getValueSize()) { in emitSectionData()
670 pRegion.begin() + cur_offset, align_frag.getValue(), count); in emitSectionData()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMLDBackend.cpp435 const AlignFragment& align_frag = llvm::cast<AlignFragment>(*frag_iter); in emitSectionData() local
436 uint64_t count = size / align_frag.getValueSize(); in emitSectionData()
437 switch (align_frag.getValueSize()) { in emitSectionData()
439 std::memset(out_offset, align_frag.getValue(), count); in emitSectionData()
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp202 const AlignFragment& align_frag = llvm::cast<AlignFragment>(*frag_iter); in emitSectionData() local
203 uint64_t count = size / align_frag.getValueSize(); in emitSectionData()
204 switch (align_frag.getValueSize()) { in emitSectionData()
206 std::memset(out_offset, align_frag.getValue(), count); in emitSectionData()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsLDBackend.cpp305 const AlignFragment& align_frag = in emitSectionData() local
307 uint64_t count = size / align_frag.getValueSize(); in emitSectionData()
308 switch (align_frag.getValueSize()) { in emitSectionData()
310 std::memset(out_offset, align_frag.getValue(), count); in emitSectionData()