Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:SymInfo
(Results
1 - 8
of
8
) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H
A
D
IceELFSection.h
335
const Elf64_Sym &
SymInfo
= KeyValue.second.Sym;
in writeSymbolMap()
local
336
Str.writeELFWord<IsELF64>(
SymInfo
.st_name);
in writeSymbolMap()
337
Str.write8(
SymInfo
.st_info);
in writeSymbolMap()
338
Str.write8(
SymInfo
.st_other);
in writeSymbolMap()
339
Str.writeLE16(
SymInfo
.st_shndx);
in writeSymbolMap()
340
Str.writeAddrOrOffset<IsELF64>(
SymInfo
.st_value);
in writeSymbolMap()
341
Str.writeELFXword<IsELF64>(
SymInfo
.st_size);
in writeSymbolMap()
345
const Elf64_Sym &
SymInfo
= KeyValue.second.Sym;
in writeSymbolMap()
local
346
Str.writeELFWord<IsELF64>(
SymInfo
.st_name);
in writeSymbolMap()
347
Str.writeAddrOrOffset<IsELF64>(
SymInfo
in writeSymbolMap()
[all...]
H
A
D
IceELFSection.cpp
160
Elf64_Sym &
SymInfo
= KeyValue.second.Sym;
in updateIndices()
local
162
SymInfo
.st_name = StrTab->getIndex(Name.toString());
in updateIndices()
163
SymInfo
.st_shndx = Section->getNumber();
in updateIndices()
169
Elf64_Sym &
SymInfo
= KeyValue.second.Sym;
in updateIndices()
local
171
SymInfo
.st_name = StrTab->getIndex(Name);
in updateIndices()
172
SymInfo
.st_shndx = Section->getNumber();
in updateIndices()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
H
A
D
RuntimeDyldChecker.cpp
738
auto
SymInfo
= GetSymbolInfo(Symbol);
in getSymbolLocalAddr()
local
739
if (!
SymInfo
) {
in getSymbolLocalAddr()
740
logAllUnhandledErrors(
SymInfo
.takeError(), errs(), "RTDyldChecker: ");
in getSymbolLocalAddr()
744
if (
SymInfo
->isZeroFill())
in getSymbolLocalAddr()
748
reinterpret_cast<uintptr_t>(
SymInfo
->getContent().data()));
in getSymbolLocalAddr()
752
auto
SymInfo
= GetSymbolInfo(Symbol);
in getSymbolRemoteAddr()
local
753
if (!
SymInfo
) {
in getSymbolRemoteAddr()
754
logAllUnhandledErrors(
SymInfo
.takeError(), errs(), "RTDyldChecker: ");
in getSymbolRemoteAddr()
758
return
SymInfo
->getTargetAddress();
in getSymbolRemoteAddr()
781
auto
SymInfo
in getSymbolContent()
local
[all...]
H
A
D
RuntimeDyldImpl.h
498
const auto &
SymInfo
= pos->second;
in getSymbolLocalAddress()
local
500
if (
SymInfo
.getSectionID() == AbsoluteSymbolSection)
in getSymbolLocalAddress()
502
return getSectionAddress(
SymInfo
.getSectionID()) +
SymInfo
.getOffset();
in getSymbolLocalAddress()
H
A
D
RuntimeDyld.cpp
925
const auto &
SymInfo
= Loc->second;
in addRelocationForSymbol()
local
926
RECopy.Addend +=
SymInfo
.getOffset();
in addRelocationForSymbol()
927
Relocations[
SymInfo
.getSectionID()].push_back(RECopy);
in addRelocationForSymbol()
1102
const auto &
SymInfo
= Loc->second;
in applyExternalSymbolRelocations()
local
1103
Addr = getSectionLoadAddress(
SymInfo
.getSectionID()) +
in applyExternalSymbolRelocations()
1104
SymInfo
.getOffset();
in applyExternalSymbolRelocations()
1105
Flags =
SymInfo
.getFlags();
in applyExternalSymbolRelocations()
H
A
D
RuntimeDyldMachO.cpp
118
const auto &
SymInfo
= SI->second;
in getRelocationValueRef()
local
119
Value.SectionID =
SymInfo
.getSectionID();
in getRelocationValueRef()
120
Value.Offset =
SymInfo
.getOffset() + RE.Addend;
in getRelocationValueRef()
H
A
D
RuntimeDyldELF.cpp
1031
const auto &
SymInfo
= Loc->second;
in resolveAArch64ShortBranch()
local
1033
uint64_t(Sections[
SymInfo
.getSectionID()].getLoadAddressWithOffset(
in resolveAArch64ShortBranch()
1034
SymInfo
.getOffset()));
in resolveAArch64ShortBranch()
1150
const auto &
SymInfo
= gsi->second;
in processRelocationRef()
local
1151
Value.SectionID =
SymInfo
.getSectionID();
in processRelocationRef()
1152
Value.Offset =
SymInfo
.getOffset();
in processRelocationRef()
1153
Value.Addend =
SymInfo
.getOffset() + Addend;
in processRelocationRef()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H
A
D
DWARFContext.cpp
1346
///
SymInfo
contains information about symbol: it's address
1348
struct
SymInfo
{
struct
1355
static Expected<
SymInfo
> getSymbolInfo(const object::ObjectFile &Obj,
in getSymbolInfo()
1358
std::map<SymbolRef,
SymInfo
> &Cache) {
in getSymbolInfo()
1359
SymInfo
Ret = {0, (uint64_t)-1LL};
in getSymbolInfo()
1363
std::map<SymbolRef,
SymInfo
>::iterator CacheIt = Cache.end();
in getSymbolInfo()
1716
std::map<SymbolRef,
SymInfo
> AddrCache;
in DWARFObjInMemory()
1726
Expected<
SymInfo
> SymInfoOrErr =
in DWARFObjInMemory()
Completed in 14 milliseconds