OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:compiled_method
(Results
1 - 7
of
7
) sorted by null
/art/compiler/
oat_writer.cc
141
static const std::vector<uint8_t>* GetData(const CompiledMethod*
compiled_method
) ALWAYS_INLINE {
142
return &
compiled_method
->GetGcMap();
160
static const std::vector<uint8_t>* GetData(const CompiledMethod*
compiled_method
) ALWAYS_INLINE {
161
return &
compiled_method
->GetMappingTable();
182
static const std::vector<uint8_t>* GetData(const CompiledMethod*
compiled_method
) ALWAYS_INLINE {
183
return &
compiled_method
->GetVmapTable();
294
CompiledMethod*
compiled_method
=
local
296
compiled_methods_.push_back(
compiled_method
);
297
if (
compiled_method
!= nullptr) {
336
CompiledMethod*
compiled_method
= oat_class->GetCompiledMethod(class_def_method_index)
local
534
CompiledMethod*
compiled_method
= oat_class->GetCompiledMethod(class_def_method_index);
local
573
const CompiledMethod*
compiled_method
= oat_class->GetCompiledMethod(class_def_method_index);
local
653
const CompiledMethod*
compiled_method
= oat_class->GetCompiledMethod(class_def_method_index);
local
1189
CompiledMethod*
compiled_method
=
compiled_method
s_[i];
local
[
all
...]
common_compiler_test.cc
25
#include "
compiled_method
.h"
166
const CompiledMethod*
compiled_method
= nullptr;
local
170
compiled_method
=
174
if (
compiled_method
!= nullptr) {
175
const std::vector<uint8_t>* code =
compiled_method
->GetQuickCode();
180
const std::vector<uint8_t>& vmap_table =
compiled_method
->GetVmapTable();
183
const std::vector<uint8_t>& mapping_table =
compiled_method
->GetMappingTable();
187
compiled_method
->GetFrameSizeInBytes(),
188
compiled_method
->GetCoreSpillMask(),
189
compiled_method
->GetFpSpillMask(), code_size)
[
all
...]
oat_test.cc
42
const CompiledMethod*
compiled_method
=
local
46
if (
compiled_method
== NULL) {
57
EXPECT_EQ(oat_method.GetFrameSizeInBytes(),
compiled_method
->GetFrameSizeInBytes());
58
EXPECT_EQ(oat_method.GetCoreSpillMask(),
compiled_method
->GetCoreSpillMask());
59
EXPECT_EQ(oat_method.GetFpSpillMask(),
compiled_method
->GetFpSpillMask());
62
const std::vector<uint8_t>* quick_code =
compiled_method
->GetQuickCode();
76
const std::vector<uint8_t>* portable_code =
compiled_method
->GetPortableCode();
elf_writer_mclinker.cc
248
const CompiledMethod*
compiled_method
=
local
250
if (
compiled_method
!= NULL) {
251
AddCompiledCodeInput(*
compiled_method
);
371
const CompiledMethod*
compiled_method
=
local
373
if (
compiled_method
!= NULL) {
374
uint32_t offset = FixupCompiledCodeOffset(*elf_file.get(), oatdata_address, *
compiled_method
);
Android.mk
22
compiled_method
.cc \
/art/compiler/sea_ir/
frontend.cc
57
CompiledMethod*
compiled_method
=
local
61
return
compiled_method
;
/art/compiler/driver/
compiler_driver.cc
2004
CompiledMethod*
compiled_method
= nullptr;
local
[
all
...]
Completed in 75 milliseconds