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.h76 // Offset of link within HandleScope, used by generated code.
86 // Offset of link within handle scope, used by generated code.
92 static HandleScope* Create(void* storage, HandleScope* link, uint32_t num_references)
94 return new (storage) HandleScope(link, num_references);
109 explicit HandleScope(HandleScope* link, uint32_t num_references) : argument
110 link_(link), number_of_references_(num_references) {
H A Dstack.h77 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link, argument
80 return Create(num_vregs, link, method, dex_pc, memory);
90 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link, argument
92 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
282 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, argument
284 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
H A Dthread.cc154 DeoptimizationReturnValueRecord* link)
155 : ret_val_(ret_val), is_reference_(is_reference), link_(link) {}
177 StackedShadowFrameRecord* link)
180 link_(link) {}
152 DeoptimizationReturnValueRecord(const JValue& ret_val, bool is_reference, DeoptimizationReturnValueRecord* link) argument
175 StackedShadowFrameRecord(ShadowFrame* shadow_frame, StackedShadowFrameType type, StackedShadowFrameRecord* link) argument
/art/compiler/
H A Delf_builder.h59 const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize)
60 : header_(), section_index_(0), name_(name), link_(link) {
120 DynamicSection(const std::string& name, Section* link) argument
122 link, 0, kPageSize, sizeof(Elf_Dyn)) {}
163 const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize,
165 : Section(name, type, flags, link, info, align, entsize),
222 const Section* link, Elf_Word info, Elf_Word align,
224 : Section(name, type, flags, link, info, align, entsize),
58 Section(const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize) argument
162 RawSection(const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize, PatchFn patch = nullptr, const Section* patch_base_section = nullptr) argument
221 OatSection(const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize, Elf_Word size, CodeOutput* code_output) argument
/art/compiler/utils/arm/
H A Dassembler_arm32.cc603 void Arm32Assembler::EmitType5(Condition cond, int offset, bool link) { argument
607 (link ? 1 : 0) << kLinkShift;
719 void Arm32Assembler::EmitBranch(Condition cond, Label* label, bool link) { argument
721 EmitType5(cond, label->Position() - buffer_.Size(), link);
725 EmitType5(cond, label->position_, link);
H A Dassembler_thumb2.cc1284 bool link = type_ == kUnconditionalLinkX || type_ == kUnconditionalLink; local
1290 if (link) {
1351 Emit16(prev); // Previous link.
1592 void Thumb2Assembler::EmitBranch(Condition cond, Label* label, bool link, bool x) { argument
1596 if (link) {
1626 Emit16(static_cast<uint16_t>(label->position_)); // Emit current label link.
1629 Emit16(static_cast<uint16_t>(label->position_)); // Emit current label link.
/art/compiler/utils/mips/
H A Dassembler_mips.cc109 void MipsAssembler::EmitJump(Label* label, bool link) { argument
118 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 191 milliseconds