Home
last modified time | relevance | path

Searched refs:ObjFile (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DInstrumentationMap.cpp54 loadObj(StringRef Filename, object::OwningBinary<object::ObjectFile> &ObjFile, in loadObj() argument
61 if ((!ObjFile.getBinary()->isELF() && !ObjFile.getBinary()->isMachO()) || in loadObj()
62 !(ObjFile.getBinary()->getArch() == Triple::x86_64 || in loadObj()
63 ObjFile.getBinary()->getArch() == Triple::ppc64le || in loadObj()
64 ObjFile.getBinary()->getArch() == Triple::aarch64)) in loadObj()
70 const auto &Sections = ObjFile.getBinary()->sections(); in loadObj()
90 if (ObjFile.getBinary()->isELF()) { in loadObj()
91 uint32_t RelativeRelocation = [](object::ObjectFile *ObjFile) { in loadObj() argument
92 if (const auto *ELFObj = dyn_cast<object::ELF32LEObjectFile>(ObjFile)) in loadObj()
94 else if (const auto *ELFObj = dyn_cast<object::ELF32BEObjectFile>(ObjFile)) in loadObj()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DIRObjectFile.cpp98 Expected<std::unique_ptr<ObjectFile>> ObjFile = in findBitcodeInMemBuffer() local
100 if (!ObjFile) in findBitcodeInMemBuffer()
101 return ObjFile.takeError(); in findBitcodeInMemBuffer()
102 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/
Dsymbolize_elf.inc179 struct ObjFile {
180 ObjFile()
245 // An AddrMap is a vector of ObjFile, using SigSafeArena() for allocation.
252 ObjFile *At(int i) { return &obj_[i]; }
253 ObjFile *Add();
259 ObjFile *obj_; // array of allocated_ elements
266 At(i)->~ObjFile();
271 ObjFile *AddrMap::Add() {
274 ObjFile *new_obj_ =
275 static_cast<ObjFile *>(base_internal::LowLevelAlloc::AllocWithArena(
[all …]
/third_party/abseil-cpp/absl/debugging/
Dsymbolize_elf.inc179 struct ObjFile {
180 ObjFile()
245 // An AddrMap is a vector of ObjFile, using SigSafeArena() for allocation.
252 ObjFile *At(int i) { return &obj_[i]; }
253 ObjFile *Add();
259 ObjFile *obj_; // array of allocated_ elements
266 At(i)->~ObjFile();
271 ObjFile *AddrMap::Add() {
274 ObjFile *new_obj_ =
275 static_cast<ObjFile *>(base_internal::LowLevelAlloc::AllocWithArena(
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp127 std::unique_ptr<object::ObjectFile> ObjFile; in addObjectFile() local
129 std::tie(ObjFile, MemBuf) = Obj.takeBinary(); in addObjectFile()
130 addObjectFile(std::move(ObjFile)); in addObjectFile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp332 const auto *ObjFile = DObj->getFile(); in dump() local
334 dumpUUID(OS, *ObjFile); in dump()