summaryrefslogtreecommitdiff
path: root/src/compiled_method.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiled_method.cc')
-rw-r--r--src/compiled_method.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/compiled_method.cc b/src/compiled_method.cc
index 082600f5ab..500a62bd82 100644
--- a/src/compiled_method.cc
+++ b/src/compiled_method.cc
@@ -7,7 +7,6 @@ namespace art {
CompiledMethod::CompiledMethod(InstructionSet instruction_set,
std::vector<short>& short_code,
const size_t frame_size_in_bytes,
- const size_t return_pc_offset_in_bytes,
const uint32_t core_spill_mask,
const uint32_t fp_spill_mask,
std::vector<uint32_t>& mapping_table,
@@ -37,7 +36,6 @@ CompiledMethod::CompiledMethod(InstructionSet instruction_set,
instruction_set_ = instruction_set;
code_ = byte_code;
frame_size_in_bytes_ = frame_size_in_bytes;
- return_pc_offset_in_bytes_ = return_pc_offset_in_bytes;
core_spill_mask_ = core_spill_mask;
fp_spill_mask_ = fp_spill_mask;
mapping_table_ = length_prefixed_mapping_table;
@@ -49,7 +47,6 @@ CompiledMethod::CompiledMethod(InstructionSet instruction_set,
CompiledMethod::CompiledMethod(InstructionSet instruction_set,
std::vector<uint8_t>& code,
const size_t frame_size_in_bytes,
- const size_t return_pc_offset_in_bytes,
const uint32_t core_spill_mask,
const uint32_t fp_spill_mask) {
CHECK_NE(code.size(), 0U);
@@ -57,7 +54,6 @@ CompiledMethod::CompiledMethod(InstructionSet instruction_set,
instruction_set_ = instruction_set;
code_ = code;
frame_size_in_bytes_ = frame_size_in_bytes;
- return_pc_offset_in_bytes_ = return_pc_offset_in_bytes;
core_spill_mask_ = core_spill_mask;
fp_spill_mask_ = fp_spill_mask;
}
@@ -76,10 +72,6 @@ size_t CompiledMethod::GetFrameSizeInBytes() const {
return frame_size_in_bytes_;
}
-size_t CompiledMethod::GetReturnPcOffsetInBytes() const {
- return return_pc_offset_in_bytes_;
-}
-
uint32_t CompiledMethod::GetCoreSpillMask() const {
return core_spill_mask_;
}
@@ -146,7 +138,6 @@ const void* CompiledMethod::CodePointer(const void* code_pointer,
}
}
-
CompiledInvokeStub::CompiledInvokeStub(std::vector<uint8_t>& code) {
CHECK_NE(code.size(), 0U);
code_ = code;