Skip to content

Commit

Permalink
Add dyninstAPI/src/linux-aarch64.C
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Apr 3, 2024
1 parent ac0bfff commit 23df75b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions dyninstAPI/src/linux-aarch64.C
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,6 @@ bool AddressSpace::getDyninstRTLibName() {
return true;
}

// floor of inferior malloc address range within a single branch of x
// for 32-bit ELF PowerPC mutatees
Dyninst::Address region_lo(const Dyninst::Address x) {
const Dyninst::Address floor = getpagesize();

Expand All @@ -201,8 +199,6 @@ Dyninst::Address region_lo(const Dyninst::Address x) {
}


// floor of inferior malloc address range within a single branch of x
// for 64-bit ELF PowerPC mutatees
Dyninst::Address region_lo_64(const Dyninst::Address x) {
const Dyninst::Address floor = getpagesize();

Expand All @@ -215,8 +211,6 @@ Dyninst::Address region_lo_64(const Dyninst::Address x) {
}


// ceiling of inferior malloc address range within a single branch of x
// for 32-bit ELF PowerPC mutatees
Dyninst::Address region_hi(const Dyninst::Address x) {
const Dyninst::Address ceiling = ~(Dyninst::Address)0 & 0xffffffff;

Expand All @@ -229,8 +223,6 @@ Dyninst::Address region_hi(const Dyninst::Address x) {
}


// ceiling of inferior malloc address range within a single branch of x
// for 64-bit ELF PowerPC mutatees
Dyninst::Address region_hi_64(const Dyninst::Address x) {
const Dyninst::Address ceiling = ~(Dyninst::Address)0;

Expand Down

0 comments on commit 23df75b

Please sign in to comment.