Searched refs:header (Results 26 - 38 of 38) sorted by relevance

12

/art/runtime/
H A Dintern_table.cc179 const ImageHeader* const header = &image_space->GetImageHeader(); local
181 const ImageSection& section = header->GetImageSection(ImageHeader::kSectionInternedStrings);
186 mirror::Object* root = header->GetImageRoot(ImageHeader::kDexCaches);
H A Delf_file.cc109 *error_msg = StringPrintf("File size of %zd bytes not large enough to contain ELF header of "
116 // first just map ELF header to get program header size information
129 // then remap to cover program header
133 "header of %zd bytes: '%s'", file_length,
180 *error_msg = StringPrintf("Failed to find shstrtab section header in ELF file: '%s'",
185 // Find .dynamic section info from program header
188 *error_msg = StringPrintf("Failed to find PT_DYNAMIC program header in ELF file: '%s'",
202 *error_msg = StringPrintf("Failed to find section header for section %d in ELF file: '%s'",
338 *error_msg = StringPrintf("Failed to find PT_DYNAMIC program header i
1690 uint8_t* header = map->Begin(); local
1740 uint8_t* header = map->Begin(); local
[all...]
H A Dstack.cc680 const auto& header = image_space->GetImageHeader(); local
681 const ImageSection& methods = header.GetMethodsSection();
682 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection();
H A Dclass_linker.cc779 auto& header = space->GetImageHeader(); local
782 const ImageSection& methods = header.GetMethodsSection();
785 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection();
1148 explicit FixupArtMethodArrayVisitor(const ImageHeader& header) : header_(header) {} argument
1236 const ImageHeader& header = space->GetImageHeader(); local
1451 FixupArtMethodArrayVisitor visitor(header);
1452 header.VisitPackedArtMethods(&visitor, space->Begin(), sizeof(void*));
1459 header.VisitPackedArtMethods(&visitor, space->Begin(), sizeof(void*));
1536 const ImageHeader& header local
1568 const ImageHeader& header = space->GetImageHeader(); local
[all...]
/art/runtime/jit/
H A Djit_code_cache.cc317 // Ensure the header ends up at expected instruction alignment.
968 const OatQuickMethodHeader* header) {
971 (profiling_info->GetSavedEntryPoint() == header->GetEntryPoint())) {
976 if (method->GetEntryPointFromQuickCompiledCode() == header->GetEntryPoint()) {
986 if (it != osr_code_map_.end() && OatQuickMethodHeader::FromCodePointer(it->second) == header) {
1000 // Ensure the header ends up at expected instruction alignment.
967 InvalidateCompiledCodeFor(ArtMethod* method, const OatQuickMethodHeader* header) argument
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DMapList.java39 file.seek(rawDexFile.header.mapOff.getOriginalOffset());
/art/compiler/optimizing/
H A Dbounds_check_elimination.cc627 // Make sure the comparison is in the loop header so each increment is
647 // Comparison needs to be in loop header to make sure it's done after each
723 // if it's not defined in the loop header.
1499 * instruction appears in the loop header or proper loop-body.
1504 HBasicBlock* header = loop->GetHeader(); local
1505 const uint32_t loop_id = header->GetBlockId();
1511 if (instruction->GetBlock() == header) {
1562 * header
1593 HBasicBlock* header = loop->GetHeader(); local
1594 GetGraph()->TransformLoopHeaderForBCE(header);
[all...]
H A Dregister_allocator.cc184 // intervals belonging to the live-in set of the catch/header block to be spilled.
1246 // If `to` is in a loop, find the outermost loop header which does not contain `from`.
1248 HBasicBlock* header = it.Current()->GetHeader(); local
1249 if (block_from->GetLifetimeStart() >= header->GetLifetimeStart()) {
1252 block_to = header;
1926 // Instructions live at the top of catch blocks or irreducible loop header
H A Dnodes.h347 // is a throw-catch loop, i.e. the header is a catch block.
369 void TransformLoopHeaderForBCE(HBasicBlock* header);
382 void SimplifyLoop(HBasicBlock* header);
649 HLoopInformation(HBasicBlock* header, HGraph* graph) argument
650 : header_(header),
1089 // Note that a non loop header having a loop information means this loop information
1691 // require an environment (like HDeoptimization) in the loop pre-header.
/art/compiler/
H A Dimage_writer.cc222 // Image data size excludes the bitmap and the header.
315 // Write header last in case the compiler gets killed in the middle of image writing.
316 // We do not want to have a corrupted image with a valid header.
317 // The header is uncompressed since it contains whether the image is compressed or not.
322 PLOG(ERROR) << "Failed to write image file header " << image_filename;
581 bin = kBinString; // Strings are almost always immutable (except for object header).
1165 // Total array length including header.
1209 // Forward the entire array at once, but header first.
1343 // Leave space for the header, but do not write it yet, we need to
1510 LOG(INFO) << "Creating header fo
2032 const OatHeader& header = oat_file->GetOatHeader(); local
[all...]
/art/tools/
H A Dcpplint.py57 # - Avoid inlining non-trivial constructors in header files
145 The root directory used for deriving header guard CPP variable.
146 By default, the header guard CPP variable is calculated as the relative
153 Assuing that src/.git exists, the header guard CPP variables for
360 # The root directory used for deriving header guard CPP variable.
436 Call CheckNextIncludeOrder() once for each header in the file, passing
450 _C_SYS_HEADER: 'C system header',
451 _CPP_SYS_HEADER: 'C++ system header',
452 _LIKELY_MY_HEADER: 'header this file implements',
453 _POSSIBLE_MY_HEADER: 'header thi
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc233 *error_msg = StringPrintf("Unable to read image header for %s", filename);
265 *error_msg = StringPrintf("Unable to read image header for %s at %s",
270 *error_msg = StringPrintf("Unable to read image header for %s at %s",
1183 *error_msg = StringPrintf("Invalid image header in '%s'", image_filename);
1187 // Check that the file is larger or equal to the header size + data size.
1242 // Note: The image header is part of the image due to mmap page alignment required of offset.
1265 *error_msg = StringPrintf("Invalid storage mode in image header %d",
1279 const size_t decompress_offset = sizeof(ImageHeader); // Skip the header.
1336 // Loaded the map, use the image header from the file now in case we patch it with
1573 const ImageHeader& header local
[all...]
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1586 # Store the class pointer in the header. This also overwrites the first pointer. The offsets are

Completed in 400 milliseconds

12