OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OatMethodOffsets
(Results
1 - 7
of
7
) sorted by null
/art/runtime/
oat.h
159
//
OatMethodOffsets
are currently 5x32-bits=160-bits long, so if we can
160
// save even one
OatMethodOffsets
struct, the more complicated encoding
164
kOatClassAllCompiled = 0, // OatClass is followed by an
OatMethodOffsets
for each method.
165
kOatClassSomeCompiled = 1, // A bitmap of which
OatMethodOffsets
are present follows the OatClass.
166
kOatClassNoneCompiled = 2, // All methods are interpreted so no
OatMethodOffsets
are necessary.
172
class PACKED(4)
OatMethodOffsets
{
174
OatMethodOffsets
(uint32_t code_offset = 0);
176
~
OatMethodOffsets
();
178
OatMethodOffsets
& operator=(const
OatMethodOffsets
&) = default
[
all
...]
oat_file.h
39
class
OatMethodOffsets
;
179
// Return a pointer to the
OatMethodOffsets
for the requested
182
const
OatMethodOffsets
* GetOatMethodOffsets(uint32_t method_index) const;
185
//
OatMethodOffsets
for the requested method_index, or 0 if none
202
const
OatMethodOffsets
* methods_pointer);
212
const
OatMethodOffsets
* const methods_pointer_;
oat.cc
514
OatMethodOffsets
::
OatMethodOffsets
(uint32_t code_offset) : code_offset_(code_offset) {
517
OatMethodOffsets
::~
OatMethodOffsets
() {}
oat_file.cc
[
all
...]
/art/compiler/
oat_writer.cc
171
// Offset from OatClass::offset_ to the
OatMethodOffsets
for the
189
// method has an
OatMethodOffsets
in methods_offsets_, otherwise
194
//
OatMethodOffsets
and OatMethodHeaders for each CompiledMethod
199
dchecked_vector<
OatMethodOffsets
> method_offsets_;
625
//
OatMethodOffsets
for the compiled methods.
788
OatMethodOffsets
* offsets = &oat_class->method_offsets_[method_offsets_index_];
[
all
...]
oat_test.cc
445
EXPECT_EQ(4U, sizeof(
OatMethodOffsets
));
[
all
...]
/art/oatdump/
oatdump.cc
796
const
OatMethodOffsets
* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index);
830
vios->Stream() << "
OatMethodOffsets
";
839
// If we can't read
OatMethodOffsets
, the rest of the data is dangerous to read.
[
all
...]
Completed in 118 milliseconds