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 412 std::vector<uint8_t>* cfi_info = writer_->compiler_driver_->GetCallFrameInformation(); local
413 if (cfi_info != nullptr) {
417 // Copy the information into cfi_info and then fix the address in the new copy.
418 int cur_offset = cfi_info->size();
419 cfi_info->insert(cfi_info->end(), fde->begin(), fde->end());
424 (*cfi_info)[offset_to_update+0] = CIE_pointer;
425 (*cfi_info)[offset_to_update+1] = CIE_pointer >> 8;
426 (*cfi_info)[offset_to_update+2] = CIE_pointer >> 16;
427 (*cfi_info)[offset_to_update+3] = CIE_pointer >> 24
    [all...]
  /art/compiler/dex/quick/x86/
target_x86.cc 1489 std::vector<uint8_t>*cfi_info = new std::vector<uint8_t>; local
1589 std::vector<uint8_t>*cfi_info = new std::vector<uint8_t>; local
    [all...]

Completed in 142 milliseconds