Home
last modified time | relevance | path

Searched refs:link (Results 1 – 15 of 15) sorted by relevance

/art/runtime/
Dhandle_scope_test.cc28 explicit NoThreadStackHandleScope(HandleScope* link) : HandleScope(link, kNumReferences) { in NoThreadStackHandleScope() argument
Dhandle_scope.h92 static HandleScope* Create(void* storage, HandleScope* link, uint32_t num_references) in Create() argument
94 return new (storage) HandleScope(link, num_references); in Create()
109 explicit HandleScope(HandleScope* link, uint32_t num_references) : in HandleScope() argument
110 link_(link), number_of_references_(num_references) { in HandleScope()
Dstack.h77 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link, in CreateDeoptimizedFrame() argument
80 return Create(num_vregs, link, method, dex_pc, memory); in CreateDeoptimizedFrame()
90 static ShadowFrame* Create(uint32_t num_vregs, ShadowFrame* link, in Create() argument
92 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); in Create()
282 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, in ShadowFrame() argument
284 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) { in ShadowFrame()
Dthread.cc154 DeoptimizationReturnValueRecord* link) in DeoptimizationReturnValueRecord() argument
155 : ret_val_(ret_val), is_reference_(is_reference), link_(link) {} in DeoptimizationReturnValueRecord()
177 StackedShadowFrameRecord* link) in StackedShadowFrameRecord() argument
180 link_(link) {} in StackedShadowFrameRecord()
/art/compiler/
Delf_builder.h59 const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize) in Section() argument
60 : header_(), section_index_(0), name_(name), link_(link) { in Section()
120 DynamicSection(const std::string& name, Section* link) in DynamicSection() argument
122 link, 0, kPageSize, sizeof(Elf_Dyn)) {} in DynamicSection()
163 const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize,
165 : Section(name, type, flags, link, info, align, entsize), in Section() argument
222 const Section* link, Elf_Word info, Elf_Word align, in OatSection() argument
224 : Section(name, type, flags, link, info, align, entsize), in OatSection()
/art/compiler/utils/arm/
Dassembler_arm32.h302 void EmitType5(Condition cond, int offset, bool link);
364 void EmitBranch(Condition cond, Label* label, bool link);
Dassembler_arm32.cc603 void Arm32Assembler::EmitType5(Condition cond, int offset, bool link) { in EmitType5() argument
607 (link ? 1 : 0) << kLinkShift; in EmitType5()
719 void Arm32Assembler::EmitBranch(Condition cond, Label* label, bool link) { in EmitBranch() argument
721 EmitType5(cond, label->Position() - buffer_.Size(), link); in EmitBranch()
725 EmitType5(cond, label->position_, link); in EmitBranch()
Dassembler_thumb2.cc1284 bool link = type_ == kUnconditionalLinkX || type_ == kUnconditionalLink; in Emit() local
1290 if (link) { in Emit()
1592 void Thumb2Assembler::EmitBranch(Condition cond, Label* label, bool link, bool x) { in EmitBranch() argument
1596 if (link) { in EmitBranch()
Dassembler_thumb2.h431 void EmitBranch(Condition cond, Label* label, bool link, bool x);
/art/compiler/utils/mips/
Dassembler_mips.h150 void EmitJump(Label* label, bool link);
Dassembler_mips.cc109 void MipsAssembler::EmitJump(Label* label, bool link) { in EmitJump() argument
118 if (link) { in EmitJump()
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S1069 mov r2, r0 @ link register saved by instrumentation
1070 mov lr, r1 @ r1 is holding link register if we're to bounce to deoptimize
/art/test/083-compiler-regressions/src/
DMain.java9686 private LVNTests link = null; field in LVNTests
9690 link = l; in setLink()
9694 LVNTests link1 = lhs.link; in causeNPE1()
9695 rhs.link = null; in causeNPE1()
9696 LVNTests link2 = lhs.link; in causeNPE1()
9704 t.link = new LVNTests(); in testNPE1()
9713 LVNTests link1 = lhs.link; in causeNPE2()
9715 LVNTests link2 = lhs.link; in causeNPE2()
9723 t.link = new LVNTests(); in testNPE2()
/art/
DNOTICE58 separable from, or merely link (or bind by name) to the interfaces of,
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1504 move $ra, $zero # link register is to here, so clobber with 0 for later checks