HomeSort by relevance Sort by last modified time
    Searched defs:cfi_info (Results 1 - 2 of 2) sorted by null

  /art/compiler/
oat_writer.cc 404 std::vector<uint8_t>* cfi_info = writer_->compiler_driver_->GetCallFrameInformation(); local
405 if (cfi_info != nullptr) {
409 // Copy the information into cfi_info and then fix the address in the new copy.
410 int cur_offset = cfi_info->size();
411 cfi_info->insert(cfi_info->end(), fde->begin(), fde->end());
416 (*cfi_info)[offset_to_update+0] = CIE_pointer;
417 (*cfi_info)[offset_to_update+1] = CIE_pointer >> 8;
418 (*cfi_info)[offset_to_update+2] = CIE_pointer >> 16;
419 (*cfi_info)[offset_to_update+3] = CIE_pointer >> 24
    [all...]
  /art/compiler/dex/quick/x86/
target_x86.cc 1488 std::vector<uint8_t>*cfi_info = new std::vector<uint8_t>; local
1588 std::vector<uint8_t>*cfi_info = new std::vector<uint8_t>; local
    [all...]

Completed in 306 milliseconds