Home
last modified time | relevance | path

Searched refs:tmp (Results 51 – 75 of 93) sorted by relevance

1234

/art/compiler/optimizing/
Dcode_generator_vector_arm64_sve.cc1251 VRegister tmp = VRegisterFrom(locations->GetTemp(0)); in VisitVecSADAccumulate() local
1252 __ Sub(tmp.V4S(), left.V4S(), right.V4S()); in VisitVecSADAccumulate()
1253 __ Abs(tmp.V4S(), tmp.V4S()); in VisitVecSADAccumulate()
1254 __ Add(acc.V4S(), acc.V4S(), tmp.V4S()); in VisitVecSADAccumulate()
1272 VRegister tmp = VRegisterFrom(locations->GetTemp(0)); in VisitVecSADAccumulate() local
1273 __ Sub(tmp.V2D(), left.V2D(), right.V2D()); in VisitVecSADAccumulate()
1274 __ Abs(tmp.V2D(), tmp.V2D()); in VisitVecSADAccumulate()
1275 __ Add(acc.V2D(), acc.V2D(), tmp.V2D()); in VisitVecSADAccumulate()
1324 VRegister tmp = VRegisterFrom(locations->GetTemp(0)); in VisitVecDotProd() local
1325 __ Umull(tmp.V8H(), left.V8B(), right.V8B()); in VisitVecDotProd()
[all …]
Dcode_generator_vector_arm64_neon.cc1251 VRegister tmp = VRegisterFrom(locations->GetTemp(0)); in VisitVecSADAccumulate() local
1252 __ Sub(tmp.V4S(), left.V4S(), right.V4S()); in VisitVecSADAccumulate()
1253 __ Abs(tmp.V4S(), tmp.V4S()); in VisitVecSADAccumulate()
1254 __ Add(acc.V4S(), acc.V4S(), tmp.V4S()); in VisitVecSADAccumulate()
1272 VRegister tmp = VRegisterFrom(locations->GetTemp(0)); in VisitVecSADAccumulate() local
1273 __ Sub(tmp.V2D(), left.V2D(), right.V2D()); in VisitVecSADAccumulate()
1274 __ Abs(tmp.V2D(), tmp.V2D()); in VisitVecSADAccumulate()
1275 __ Add(acc.V2D(), acc.V2D(), tmp.V2D()); in VisitVecSADAccumulate()
1324 VRegister tmp = VRegisterFrom(locations->GetTemp(0)); in VisitVecDotProd() local
1325 __ Umull(tmp.V8H(), left.V8B(), right.V8B()); in VisitVecDotProd()
[all …]
Dintrinsics_arm_vixl.cc145 vixl32::Register tmp = RegisterFrom(locations->GetTemp(3)); in EmitNativeCode() local
153 __ Ldr(tmp, MemOperand(src_curr_addr, element_size, PostIndex)); in EmitNativeCode()
154 assembler->MaybeUnpoisonHeapReference(tmp); in EmitNativeCode()
162 DCHECK(!tmp.IsSP()); in EmitNativeCode()
163 DCHECK(!tmp.IsLR()); in EmitNativeCode()
164 DCHECK(!tmp.IsPC()); in EmitNativeCode()
171 DCHECK(!tmp.Is(ip)); in EmitNativeCode()
172 DCHECK(tmp.IsRegister()) << tmp; in EmitNativeCode()
176 Thread::ReadBarrierMarkEntryPointsOffset<kArmPointerSize>(tmp.GetCode()); in EmitNativeCode()
179 assembler->MaybePoisonHeapReference(tmp); in EmitNativeCode()
[all …]
Dintrinsics_arm64.cc86 ReadBarrierSystemArrayCopySlowPathARM64(HInstruction* instruction, Location tmp) in ReadBarrierSystemArrayCopySlowPathARM64() argument
87 : SlowPathCodeARM64(instruction), tmp_(tmp) { in ReadBarrierSystemArrayCopySlowPathARM64()
975 Register tmp = temps.AcquireSameSizeAs(value); in EmitNativeCode() local
987 __ Ldaxr(tmp, MemOperand(tmp_ptr)); in EmitNativeCode()
988 assembler->MaybeUnpoisonHeapReference(tmp); in EmitNativeCode()
989 __ Cmp(tmp, expected); in EmitNativeCode()
990 __ Ccmp(tmp, old_value, ZFlag, ne); in EmitNativeCode()
993 __ Stlxr(tmp.W(), value, MemOperand(tmp_ptr)); in EmitNativeCode()
995 __ Cbnz(tmp.W(), &loop_head); in EmitNativeCode()
2205 Register tmp = temps.AcquireW(); in VisitSystemArrayCopyChar() local
[all …]
Dintrinsics_x86_64.cc2370 CpuRegister tmp = locations->GetTemp(0).AsRegister<CpuRegister>(); in GenOneBit() local
2375 __ bsrq(tmp, src.AsRegister<CpuRegister>()); in GenOneBit()
2377 __ bsrl(tmp, src.AsRegister<CpuRegister>()); in GenOneBit()
2381 __ bsrq(tmp, Address(CpuRegister(RSP), src.GetStackIndex())); in GenOneBit()
2384 __ bsrl(tmp, Address(CpuRegister(RSP), src.GetStackIndex())); in GenOneBit()
2391 __ shlq(out, tmp); in GenOneBit()
2393 __ shll(out, tmp); in GenOneBit()
2403 __ movq(tmp, src.AsRegister<CpuRegister>()); in GenOneBit()
2405 __ movl(tmp, src.AsRegister<CpuRegister>()); in GenOneBit()
2409 __ movq(tmp, Address(CpuRegister(RSP), src.GetStackIndex())); in GenOneBit()
[all …]
/art/libartbase/base/
Dintrusive_forward_list.h83 IntrusiveForwardListIterator tmp(*this);
85 return tmp;
157 IntrusiveForwardList tmp(std::move(src));
158 tmp.swap(*this);
185 IntrusiveForwardList tmp(first, last); in assign()
186 tmp.swap(*this); in assign()
Dfile_utils.cc98 std::string tmp = dir2; // Make a copy here so that fname can be released. in GetRootContainingLibartbase() local
99 return tmp; in GetRootContainingLibartbase()
/art/test/020-string/src/
DMain.java132 char[] tmp = null; in copyTest() local
135 src.getChars(2, 9, tmp, 0); in copyTest()
/art/build/
DAndroid.gtest.mk239 $$< --gtest_output=xml:$$@ 2>&1 | tee $$<.tmp.out >&2 && \
240 { $$(call ART_TEST_PASSED,$$(NAME)) ; rm $$<.tmp.out ; }) || \
241 ( grep -q AddressSanitizer $$<.tmp.out && export ANDROID_BUILD_TOP=`pwd` && \
242 { echo "ABI: 'x86_64'" | cat - $$<.tmp.out | development/scripts/stack | tail -n 3000 ; } ; \
243 rm $$<.tmp.out ; $$(call ART_TEST_FAILED,$$(NAME)))
DAndroid.common.mk37 GCOV_PREFIX := /data/local/tmp/gcov
/art/tools/
Dboot-image-profile-generate.sh51 WORK_DIR=/tmp/android-bcp
/art/test/dexdump/
Drun-all-tests37 tmpdir=/tmp/test-$$
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md35 …i.so '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' -cp tmp/java/helloworld.dex…
41 > `java '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' -cp tmp/helloworld/cla…
/art/tools/jvmti-agents/wrapagentproperties/
DREADME.md15 …libwrapagentproperties.so=/path/to/prop.file,/path/to/agent=agent-args -cp tmp/java/helloworld.dex…
/art/runtime/
Druntime_callbacks_test.cc272 std::string tmp; in ClassLoad() local
273 std::string event = std::string("Load:") + klass->GetDescriptor(&tmp); in ClassLoad()
279 std::string tmp, tmp2; in ClassPrepare() local
280 std::string event = std::string("Prepare:") + klass->GetDescriptor(&tmp) in ClassPrepare()
Dcha.cc305 std::string tmp = in->PrettyClass(); in VerifyNonSingleImplementation() local
308 tmp = tmp + "->" + in->PrettyClass(); in VerifyNonSingleImplementation()
310 return tmp; in VerifyNonSingleImplementation()
Dcommon_runtime_test.cc214 std::vector<const DexFile*> tmp(GetDexFiles(jclass_loader)); in GetFirstDexFile() local
215 DCHECK(!tmp.empty()); in GetFirstDexFile()
216 const DexFile* ret = tmp[0]; in GetFirstDexFile()
/art/tools/veridex/
Dveridex.cc125 std::string tmp; in Split() local
127 while (std::getline(iss, tmp, sep)) { in Split()
128 tokens.push_back(tmp); in Split()
/art/test/160-read-barrier-stress/src/
DMain.java62 Object tmp = new Integer(1); in testArrayReadsWithConstIndex() local
63 largeArray[1] = tmp; in testArrayReadsWithConstIndex()
66 tmp = new Integer(4998); in testArrayReadsWithConstIndex()
67 largeArray[4998] = tmp; in testArrayReadsWithConstIndex()
69 tmp = null; // Do not keep a reference to objects in largeArray[1] or largeArray[4998]. in testArrayReadsWithConstIndex()
95 Object tmp = new Integer(1); in testArrayReadsWithNonConstIndex() local
96 largeArray[1] = tmp; in testArrayReadsWithNonConstIndex()
99 tmp = new Integer(4998); in testArrayReadsWithNonConstIndex()
100 largeArray[4998] = tmp; in testArrayReadsWithNonConstIndex()
102 tmp = null; // Do not keep a reference to objects in largeArray[1] or largeArray[4998]. in testArrayReadsWithNonConstIndex()
/art/libdexfile/dex/
Ddex_file_verifier_test.cc106 std::vector<std::unique_ptr<const DexFile>> tmp; in OpenDexFileBase64() local
116 &tmp); in OpenDexFileBase64()
118 EXPECT_EQ(1U, tmp.size()); in OpenDexFileBase64()
119 std::unique_ptr<const DexFile> dex_file = std::move(tmp[0]); in OpenDexFileBase64()
310 const uint8_t* tmp = ptr; in RemoveCode() local
311 DecodeUnsignedLeb128(&tmp); in RemoveCode()
312 size_t bytes = tmp - ptr; in RemoveCode()
/art/cmdline/
Dtoken_range.h378 TokenList tmp(begin(), end()); in Join()
379 return android::base::Join(tmp, separator); in Join()
/art/test/912-classes/
Dclasses.cc234 std::string tmp(name); in GetClassName() local
237 return tmp; in GetClassName()
355 std::string tmp(info.name); in GetThreadName() local
360 return tmp; in GetThreadName()
/art/test/913-heaps/
Dheaps.cc418 std::string tmp = StringPrintf("field@%d", reference_info->field.index); in Java_art_Test913_followReferences() local
423 tmp)); in Java_art_Test913_followReferences()
432 std::string tmp = StringPrintf("array-element@%d", index); in Java_art_Test913_followReferences() local
437 tmp)); in Java_art_Test913_followReferences()
464 std::string tmp = StringPrintf("array-element@%d", reference_info->array.index); in Java_art_Test913_followReferences() local
469 tmp));; in Java_art_Test913_followReferences()
/art/test/530-checker-lse/src/
DMain.java683 int tmp = 0; in $noinline$testConversion2() local
695 tmp = (byte) x; in $noinline$testConversion2()
697 return obj.i + tmp; in $noinline$testConversion2()
/art/test/565-checker-doublenegbitwise/smali/
DSmaliTests.smali327 # int tmp = ~b;
329 # return (tmp & 0x1) + (~a & tmp);
795 # int tmp = ~b;
796 # return (tmp & 0x1) + (~a & tmp);
809 .local v0, "tmp":I

1234