/art/runtime/arch/arm64/ |
D | memcmp16_arm64.S | 30 #define limit x2 macro 51 cbz limit, .Lret0 52 lsl limit, limit, #1 /* Half-words to bytes. */ 58 add limit_wd, limit, #7 75 ands limit, limit, #7 78 lsl limit, limit, #3 /* Bits -> bytes. */ 80 lsl mask, mask, limit 111 add limit, limit, tmp1 /* Adjust the limit for the extra. */ 119 add limit_wd, limit, #7 131 sub limit, limit, #1 [all …]
|
/art/test/162-method-resolution/jasmin/ |
D | Test1Derived.j | 19 .limit stack 1 20 .limit locals 1 27 .limit stack 2 28 .limit locals 0 37 .limit stack 2 38 .limit locals 1
|
D | Test8Derived.j | 19 .limit stack 1 20 .limit locals 1 27 .limit stack 2 28 .limit locals 1
|
D | Test9Derived.j | 19 .limit stack 1 20 .limit locals 1 27 .limit stack 2 28 .limit locals 1
|
D | Test10User.j | 19 .limit stack 3 20 .limit locals 3 29 .limit stack 3 30 .limit locals 3
|
D | Test2User2.j | 19 .limit stack 0 20 .limit locals 0
|
D | Test5User2.j | 19 .limit stack 2 20 .limit locals 0
|
D | Test2Derived.j | 20 .limit stack 1 21 .limit locals 1
|
D | Test1User2.j | 19 .limit stack 2 20 .limit locals 0
|
D | Test3Derived.j | 20 .limit stack 1 21 .limit locals 1
|
D | Test9User2.j | 19 .limit stack 2 20 .limit locals 0
|
D | Test9User.j | 19 .limit stack 0 20 .limit locals 0
|
D | Test2User.j | 19 .limit stack 2 20 .limit locals 0
|
D | Test8User.j | 19 .limit stack 2 20 .limit locals 0
|
D | Test10Base.j | 20 .limit stack 1 21 .limit locals 1
|
/art/runtime/arch/x86/ |
D | thread_x86.cc | 35 unsigned limit: 4, avl: 1, l: 1, d: 1, g: 1, base2: 8; member 49 const size_t limit = sizeof(Thread); in InitCpu() local 64 entry.limit0 = (limit & 0x0ffff); in InitCpu() 65 entry.limit = (limit & 0xf0000) >> 16; in InitCpu() 107 gdt_entry.limit = limit; in InitCpu()
|
/art/libartbase/base/ |
D | utils.cc | 76 int CacheFlush(uintptr_t start, uintptr_t limit) { in CacheFlush() argument 79 int r = cacheflush(start, limit, kCacheFlushFlags); in CacheFlush() 86 bool TouchAndFlushCacheLinesWithinPage(uintptr_t start, uintptr_t limit, size_t attempts) { in TouchAndFlushCacheLinesWithinPage() argument 87 CHECK_LT(start, limit); in TouchAndFlushCacheLinesWithinPage() 88 CHECK_EQ(RoundDown(start, kPageSize), RoundDown(limit - 1, kPageSize)) << "range spans pages"; in TouchAndFlushCacheLinesWithinPage() 95 if (LIKELY(CacheFlush(start, limit) == 0)) { in TouchAndFlushCacheLinesWithinPage() 129 const uintptr_t limit = reinterpret_cast<uintptr_t>(end); in FlushCpuCaches() local 130 if (LIKELY(CacheFlush(start, limit) == 0)) { in FlushCpuCaches() 138 while (start < limit) { in FlushCpuCaches() 139 uintptr_t boundary = std::min(next_page, limit); in FlushCpuCaches()
|
D | memory_type_table.h | 33 MemoryTypeRange(uintptr_t start, uintptr_t limit, const T& type) in MemoryTypeRange() argument 34 : start_(start), limit_(limit), type_(type) {} in MemoryTypeRange() 243 const uintptr_t limit = succ->second.Limit(); in Add() local 244 DCHECK_GT(limit, range.Limit()); in Add() 246 ranges_[limit] = MemoryTypeRange<T>(range.Start(), limit, range.Type()); in Add() 252 const uintptr_t limit = range.Limit(); in Add() local 254 DCHECK_GT(limit, pred->second.Limit()); in Add() 256 ranges_[limit] = MemoryTypeRange<T>(start, limit, range.Type()); in Add() 262 const uintptr_t limit = succ->second.Limit(); in Add() local 264 ranges_[limit] = MemoryTypeRange<T>(start, limit, range.Type()); in Add()
|
/art/test/085-old-style-inner-class/jasmin/ |
D | Main$2.j | 25 .limit stack 1 26 .limit locals 1 34 .limit stack 0 35 .limit locals 1
|
D | Main$1.j | 25 .limit stack 1 26 .limit locals 1 34 .limit stack 0 35 .limit locals 1
|
/art/test/626-const-class-linking/src/ |
D | RacyLoader.java | 59 private int syncWithOtherInstances(int limit) { in syncWithOtherInstances() argument 64 if (index != limit) { in syncWithOtherInstances() 71 } while (index < limit); in syncWithOtherInstances()
|
D | RacyMisbehavingLoader.java | 80 private int syncWithOtherInstances(int limit) { in syncWithOtherInstances() argument 85 if (index != limit) { in syncWithOtherInstances() 92 } while (index < limit); in syncWithOtherInstances()
|
/art/test/064-field-access/jasmin/ |
D | SubClassUsingInaccessibleField.j | 19 .limit stack 1 20 .limit locals 1 30 .limit stack 1 31 .limit locals 1
|
/art/runtime/gc/space/ |
D | space.h | 289 void SetLimit(uint8_t* limit) { in SetLimit() argument 290 limit_ = limit; in SetLimit() 325 uint8_t* begin, uint8_t* end, uint8_t* limit) : in ContinuousSpace() argument 326 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) { in ContinuousSpace() 396 uint8_t* limit, in MemMapSpace() argument 398 : ContinuousSpace(name, gc_retention_policy, begin, end, limit), in MemMapSpace() 462 uint8_t* limit, in ContinuousMemMapAllocSpace() argument 464 : MemMapSpace(name, std::move(mem_map), begin, end, limit, gc_retention_policy) { in ContinuousMemMapAllocSpace()
|
/art/test/162-method-resolution/jasmin-multidex/ |
D | Test1User.j | 19 .limit stack 2 20 .limit locals 0
|