Searched defs:link (Results 1 - 9 of 9) 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
/art/tools/ahat/src/
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
/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.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.cc2307 Emit16(prev); // Previous link.
2546 void Thumb2Assembler::EmitBranch(Condition cond, Label* label, bool link, bool x) { argument
2551 if (link) {
/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();

Completed in 806 milliseconds