Searched refs:link (Results 1 - 19 of 19) sorted by relevance

/art/runtime/
H A Dhandle_scope_test.cc28 explicit NoThreadStackHandleScope(HandleScope* link) : HandleScope(link, kNumReferences) { argument
H A Dhandle_scope.h75 // Offset of link within HandleScope, used by generated code.
85 // Offset of link within handle scope, used by generated code.
91 static HandleScope* Create(void* storage, HandleScope* link, uint32_t num_references)
93 return new (storage) HandleScope(link, num_references);
108 HandleScope(HandleScope* link, uint32_t num_references) : argument
109 link_(link), number_of_references_(num_references) {
H A Dstack.h124 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link, argument
127 return CreateShadowFrameImpl(num_vregs, link, method, dex_pc, memory);
139 #define CREATE_SHADOW_FRAME(num_vregs, link, method, dex_pc) ({ \
143 ShadowFrame::CreateShadowFrameImpl((num_vregs), (link), (method), (dex_pc), \
399 ShadowFrame* link,
403 return new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
415 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, argument
417 : link_(link), method_(method), result_register_(nullptr), dex_pc_ptr_(nullptr),
398 CreateShadowFrameImpl(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, uint32_t dex_pc, void* memory) argument
H A Dthread.cc172 DeoptimizationContextRecord* link)
177 link_(link) {}
206 // A link to the previous DeoptimizationContextRecord.
216 StackedShadowFrameRecord* link)
219 link_(link) {}
168 DeoptimizationContextRecord(const JValue& ret_val, bool is_reference, bool from_code, mirror::Throwable* pending_exception, DeoptimizationContextRecord* link) argument
214 StackedShadowFrameRecord(ShadowFrame* shadow_frame, StackedShadowFrameType type, StackedShadowFrameRecord* link) argument
H A Doat_file.cc26 #include <link.h> // for dl_iterate_phdr.
/art/tools/ahat/src/
H A DMenu.java24 DocString.link(DocString.uri("/"), DocString.text("overview"))
H A DValue.java49 DocString link = new DocString();
51 link.append("class ");
54 link.append(inst.toString());
57 formatted.appendLink(objTarget, link);
H A DSiteHandler.java69 return DocString.link(
99 DocString.link(
H A DDocString.java51 * Construct a new DocString, initialized with the given link.
53 public static DocString link(URI uri, DocString content) { method in class:DocString
H A DObjectHandler.java239 return DocString.link(DocString.uri("rooted"), DocString.text("ROOT"));
/art/compiler/
H A Delf_builder.h95 const Section* link,
104 link_(link),
245 const Section* link,
249 : Section(owner, name, type, flags, link, info, align, entsize), cache_() { }
289 /* link */ nullptr,
313 /* link */ nullptr,
407 const Section* link,
413 : Section(owner, name, type, flags, link, info, align, entsize) {
91 Section(ElfBuilder<ElfTypes>* owner, const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize) argument
241 CachedSection(ElfBuilder<ElfTypes>* owner, const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize) argument
403 AbiflagsSection(ElfBuilder<ElfTypes>* owner, const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize, InstructionSet isa, const InstructionSetFeatures* features) argument
/art/compiler/utils/arm/
H A Dassembler_arm32.h331 void EmitType5(Condition cond, int offset, bool link);
398 void EmitBranch(Condition cond, Label* label, bool link);
H A Dassembler_arm32.cc593 void Arm32Assembler::EmitType5(Condition cond, int offset, bool link) { argument
597 (link ? 1 : 0) << kLinkShift;
709 void Arm32Assembler::EmitBranch(Condition cond, Label* label, bool link) { argument
711 EmitType5(cond, label->Position() - buffer_.Size(), link);
715 EmitType5(cond, label->position_, link);
H A Dassembler_thumb2.h405 // to it, using the fixup ids as links. The first link is stored in the label's position
766 void EmitBranch(Condition cond, Label* label, bool link, bool x);
H A Dassembler_thumb2.cc2307 Emit16(prev); // Previous link.
2546 void Thumb2Assembler::EmitBranch(Condition cond, Label* label, bool link, bool x) { argument
2551 if (link) {
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S507 str lr, [sp, r10] @ Store link register per the compiler ABI
659 push {r0-r1, lr} @ save arguments, link register and pad
1443 mov lr, #0 @ link register is to here, so clobber with 0 for later checks
1464 mov r2, r0 @ link register saved by instrumentation
1465 mov lr, r1 @ r1 is holding link register if we're to bounce to deoptimize
/art/test/083-compiler-regressions/src/
H A DMain.java9686 private LVNTests link = null; field in class:LVNTests
9690 link = l;
9694 LVNTests link1 = lhs.link;
9695 rhs.link = null;
9696 LVNTests link2 = lhs.link;
9704 t.link = new LVNTests();
9713 LVNTests link1 = lhs.link;
9715 LVNTests link2 = lhs.link;
9723 t.link = new LVNTests();
/art/test/
H A DAndroid.run-test.mk430 087-gc-after-link \
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1849 move $ra, $zero # link register is to here, so clobber with 0 for later checks
1865 move $t9, $v0 # set aside returned link register
1866 move $ra, $v1 # set link register for deoptimization

Completed in 761 milliseconds