Searched refs:CompiledCode (Results 1 - 6 of 6) sorted by relevance

/art/compiler/
H A Dcompiled_method.cc22 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, function in class:art::CompiledCode
29 void CompiledCode::SetCode(const ArrayRef<const uint8_t>* quick_code) {
43 CompiledCode::~CompiledCode() {
49 bool CompiledCode::operator==(const CompiledCode& rhs) const {
62 size_t CompiledCode::AlignCode(size_t offset) const {
66 size_t CompiledCode::AlignCode(size_t offset, InstructionSet instruction_set) {
70 size_t CompiledCode
[all...]
H A Dcompiled_method.h34 class CompiledCode { class in namespace:art
37 CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
40 virtual ~CompiledCode();
52 bool operator==(const CompiledCode& rhs) const;
307 class CompiledMethod FINAL : public CompiledCode {
H A Doat_writer.cc1080 offset = CompiledCode::AlignCode(offset, instruction_set); \
1081 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \
1332 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
/art/compiler/linker/arm/
H A Drelative_patcher_thumb2_test.cc48 CompiledCode::AlignCode(kTrampolineSize, kThumb2) + sizeof(OatQuickMethodHeader);
57 CompiledCode::AlignCode(method1_offset + method1_code.size(), kThumb2) +
77 uint32_t aligned_thunk_size = CompiledCode::AlignCode(ThunkSize(), kThumb2);
294 uint32_t thunk_offset = method3_header_offset - CompiledCode::AlignCode(ThunkSize(), kThumb2);
321 uint32_t thunk_offset = CompiledCode::AlignCode(method3_offset + method3_code.size(), kThumb2);
H A Drelative_patcher_arm_base.cc162 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_);
/art/compiler/linker/arm64/
H A Drelative_patcher_arm64_test.cc61 CompiledCode::AlignCode(kTrampolineSize, kArm64) + sizeof(OatQuickMethodHeader);
64 CompiledCode::AlignCode(method1_offset + method1_code.size(), kArm64);
102 uint32_t aligned_thunk_size = CompiledCode::AlignCode(ThunkSize(), kArm64);
240 uint32_t thunk_offset = CompiledCode::AlignCode(method1_offset + method1_size, kArm64);
275 CompiledCode::AlignCode(kTrampolineSize, kArm64) + sizeof(OatQuickMethodHeader);
456 uint32_t thunk_offset = last_method_header_offset - CompiledCode::AlignCode(ThunkSize(), kArm64);
486 CompiledCode::AlignCode(last_method_offset + last_method_code.size(), kArm64);

Completed in 69 milliseconds