Searched refs:at (Results 1 - 25 of 44) sorted by relevance

12

/art/runtime/interpreter/mterp/x86/
H A Dop_const.S2 movl 2(rPC), %eax # grab all 32 bits at once
/art/runtime/interpreter/mterp/x86_64/
H A Dop_const.S2 movl 2(rPC), %eax # grab all 32 bits at once
/art/runtime/arch/mips64/
H A Dasm_support_mips64.S6 * You may obtain a copy of the License at
106 slt $at, \rreg, \sreg
107 MINint \dreg, \rreg, \sreg, $at
115 sltu $at, \rreg, \sreg
116 MINint \dreg, \rreg, \sreg, $at
H A Dquick_entrypoints_mips64.S6 * You may obtain a copy of the License at
93 sd $t1, 0($sp) # Place ArtMethod* at bottom of stack.
135 sd $t1, 0($sp) # Place Method* at bottom of stack.
257 sd $t1, 0($sp) # Place Method* at bottom of stack.
263 sd $a0, 0($sp) # Place Method* at bottom of stack.
409 sd $zero, 0($sp) # Store null for ArtMethod* at bottom of frame
533 ld $at, 8($a0)
573 * artDeliverExceptionFromCode will place the callee save Method* at
748 * a1 = argument array that must at least contain the this ptr.
805 sd $zero, 0($sp) # store null for ArtMethod* at botto
[all...]
/art/runtime/interpreter/mterp/mips64/
H A Dheader.S6 * You may obtain a copy of the License at
72 * Instead of holding a pointer to the shadow frame, we keep rFP at the base of the vregs. So,
160 .set at
174 .set at
180 .set at
186 .set at
194 .set at
202 .set at
210 .set at
225 .set at
[all...]
/art/dexlist/
H A Ddexlist.cc6 * You may obtain a copy of the License at
64 size_t at = strlen(str); local
66 at -= 2; // Two fewer chars to copy.
69 char* newStr = reinterpret_cast<char*>(malloc(at + 1));
70 newStr[at] = '\0';
71 while (at > 0) {
72 at--;
73 newStr[at] = (str[at] == '/') ? '.' : str[at];
[all...]
H A DAndroid.mk5 # You may obtain a copy of the License at
/art/runtime/arch/mips/
H A Dasm_support_mips.S6 * You may obtain a copy of the License at
157 slt $at, \rreg, \sreg
158 MINint \dreg, \rreg, \sreg, $at
166 sltu $at, \rreg, \sreg
167 MINint \dreg, \rreg, \sreg, $at
H A Dquick_entrypoints_mips.S6 * You may obtain a copy of the License at
36 * Allocates ARG_SLOT_SIZE bytes at the bottom of the stack for arg slots.
83 sw $t0, 0($sp) # Place Method* at bottom of stack.
95 * Allocates ARG_SLOT_SIZE bytes at the bottom of the stack for arg slots.
130 sw $t0, 0($sp) # Place Method* at bottom of stack.
215 * Allocates ARG_SLOT_SIZE bytes at the bottom of the stack for arg slots.
223 sw $t0, 0($sp) # Place Method* at bottom of stack.
235 * Allocates ARG_SLOT_SIZE bytes at the bottom of the stack for arg slots.
240 sw $a0, 0($sp) # Place Method* at bottom of stack.
368 sw $zero, 0($sp) # Store null for ArtMethod* at botto
[all...]
/art/runtime/interpreter/mterp/mips/
H A Dheader.S6 * You may obtain a copy of the License at
76 #define AT $$at /* assembler temp */
152 * Instead of holding a pointer to the shadow frame, we keep rFP at the base of the vregs. So,
276 .set noat; l.s rd, (AT); .set at
283 .set at; \
292 .set at; \
305 .set at; \
314 .set at; \
324 .set at; \
336 .set at; \
[all...]
H A Dop_cmp_long.S27 # at this point x.hi==y.hi
/art/compiler/optimizing/
H A Dlocations.h6 * You may obtain a copy of the License at
485 void SetInAt(uint32_t at, Location location) {
486 inputs_[at] = location;
489 Location InAt(uint32_t at) const {
490 return inputs_[at];
516 Location GetTemp(uint32_t at) const {
517 return temps_[at];
520 void SetTempAt(uint32_t at, Location location) {
521 DCHECK(temps_[at].IsUnallocated() || temps_[at]
[all...]
H A Dregister_allocator.cc6 * You may obtain a copy of the License at
183 // By blocking all registers at the top of each catch block or irreducible loop, we force
289 // We add a synthesized range at this position to record the live registers
290 // at this position. Ideally, we could just update the safepoints when locations
294 // registers at calls in slow paths.
358 // will be unavailable at these locations when trying to allocate one for an
518 message << "Spill slot conflict at " << j;
543 message << "Register conflict at " << j << " ";
627 // (2) Remove currently active intervals that are dead at this position.
628 // Move active intervals that have a lifetime hole at thi
1080 HInstruction* at = liveness_.GetInstructionFromPosition(first_register_use / 2); local
1979 HInstruction* at = liveness_.GetTempUser(temp); local
[all...]
H A Dnodes.cc6 * You may obtain a copy of the License at
116 DCHECK(block->GetPhis().IsEmpty()) << "Phis are not inserted at this stage";
178 // locals at throwing instructions inside try blocks.
326 // If we split at a back edge boundary, make the new block the back edge.
339 // to just look at the pre header to know which locals are initialized at entry of the
481 // New constants are inserted before the SuspendCheck at the bottom of the
665 // Stop marking blocks at the loop header.
687 // Look at the suspend check's environment to determine if the loop was inlined.
1594 // The normal-flow successor of HTryBoundary is always stored at inde
2049 HBasicBlock* at = invoke->GetBlock(); local
[all...]
H A Dinstruction_simplifier.cc6 * You may obtain a copy of the License at
96 bool CanEnsureNotNullAt(HInstruction* instr, HInstruction* at) const;
130 // New simplifications may be applicable to the instruction at the
407 bool InstructionSimplifierVisitor::CanEnsureNotNullAt(HInstruction* input, HInstruction* at) const {
414 if (user->IsNullCheck() && user->StrictlyDominates(at)) {
444 // The test failed at compile time so will also fail at runtime.
1673 invoke->ReplaceWithExceptInReplacementAtIndex(select, 0); // false at index 0
/art/libart_fake/
H A DAndroid.mk5 # You may obtain a copy of the License at
/art/tools/dmtracedump/
H A DAndroid.mk5 # You may obtain a copy of the License at
/art/build/
H A DAndroid.oat.mk6 # You may obtain a copy of the License at
69 core_compile_options += --compiler-filter=verify-at-runtime --runtime-arg -Xverify:softfail
73 core_compile_options += --compiler-filter=verify-at-runtime
211 core_compile_options += --compiler-filter=verify-at-runtime --runtime-arg -Xverify:softfail
215 core_compile_options += --compiler-filter=verify-at-runtime
/art/dexdump/
H A DAndroid.mk5 # You may obtain a copy of the License at
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc6 * You may obtain a copy of the License at
157 jobject val = args.at(i).l;
161 jv.SetJ(args.at(i).j);
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S6 * You may obtain a copy of the License at
55 str \rTemp1, [sp, #0] @ Place Method* at bottom of stack.
82 str \rTemp1, [sp, #0] @ Place Method* at bottom of stack.
94 * and preserves the value of rTemp2 at entry.
112 str \rTemp1, [sp, #0] @ Place Method* at bottom of stack.
172 str \rTemp1, [sp, #0] @ Place Method* at bottom of stack.
316 * that will place a mock Method* at the bottom of the stack. Arg1 holds the exception.
431 str ip, [sp] @ store null for method* at bottom of frame
484 str ip, [sp] @ Store null for ArtMethod* at bottom of frame
/art/
H A DAndroid.mk6 # You may obtain a copy of the License at
513 adb shell setprop dalvik.vm.dex2oat-filter "verify-at-runtime"
514 adb shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime"
/art/runtime/
H A Dinstrumentation.cc6 * You may obtain a copy of the License at
209 instrumentation_stack_->at(instrumentation_stack_depth_);
236 instrumentation_stack_->at(instrumentation_stack_depth_);
252 // Insert frame at the right position so we do not corrupt the instrumentation stack.
H A Dquick_exception_handler.cc6 * You may obtain a copy of the License at
367 // Single-frame deopt ends at the first non-inlined frame and needs to store that method.
471 return static_cast<VRegKind>(kinds.at(reg * 2));
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips.S13 * You may obtain a copy of the License at
83 #define AT $at /* assembler temp */
159 * Instead of holding a pointer to the shadow frame, we keep rFP at the base of the vregs. So,
283 .set noat; l.s rd, (AT); .set at
290 .set at; \
299 .set at; \
312 .set at; \
321 .set at; \
331 .set at; \
343 .set at; \
[all...]

Completed in 420 milliseconds

12