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:variable_info
(Results
1 - 2
of
2
) sorted by relevance
/arkcompiler/runtime_core/abc2program/
H
A
D
program_dump.cpp
575
for (const auto &
variable_info
: function.local_variable_debug) {
in DumpFunctionDebugInfo()
576
local_variable_table[
variable_info
.reg] =
variable_info
;
in DumpFunctionDebugInfo()
589
const auto &
variable_info
= iter.second;
in DumpFunctionDebugInfo()
local
591
<< std::setw(START_WIDTH) << std::right <<
variable_info
.start << DUMP_CONTENT_TRIPLE_SPACES;
in DumpFunctionDebugInfo()
592
os << std::setw(END_WIDTH) << std::right <<
variable_info
.length << DUMP_CONTENT_DOUBLE_SPACES;
in DumpFunctionDebugInfo()
593
os << std::setw(REG_WIDTH) << std::right <<
variable_info
.reg << DUMP_CONTENT_DOUBLE_SPACES;
in DumpFunctionDebugInfo()
595
<< std::right <<
variable_info
.name << DUMP_CONTENT_NONUPLE_SPACES <<
variable_info
.signature;
in DumpFunctionDebugInfo()
596
if (!
variable_info
in DumpFunctionDebugInfo()
[all...]
/arkcompiler/runtime_core/disassembler/
H
A
D
disassembler.cpp
2098
for (const auto &
variable_info
: local_variable_table) {
in SerializeLocalVariableTable()
2100
reg_stream <<
variable_info
.reg_number << '(';
in SerializeLocalVariableTable()
2101
if (
variable_info
.reg_number < 0) {
in SerializeLocalVariableTable()
2104
uint32_t vreg =
variable_info
.reg_number;
in SerializeLocalVariableTable()
2114
os << "#\t " << std::setw(START_WIDTH) << std::right <<
variable_info
.start_offset << " ";
in SerializeLocalVariableTable()
2115
os << std::setw(END_WIDTH) << std::right <<
variable_info
.end_offset << " ";
in SerializeLocalVariableTable()
2117
os << std::setw(NAME_WIDTH) << std::right <<
variable_info
.name << " " <<
variable_info
.type;
in SerializeLocalVariableTable()
2118
if (!
variable_info
.type_signature.empty() &&
variable_info
in SerializeLocalVariableTable()
[all...]
Completed in 5 milliseconds