Home
last modified time | relevance | path

Searched refs:ConstantPoolArray (Results 1 – 25 of 40) sorted by relevance

12

/external/v8/test/cctest/
Dtest-constantpool.cc13 static ConstantPoolArray::Type kTypes[] = { ConstantPoolArray::INT64,
14 ConstantPoolArray::CODE_PTR,
15 ConstantPoolArray::HEAP_PTR,
16 ConstantPoolArray::INT32 };
17 static ConstantPoolArray::LayoutSection kSmall =
18 ConstantPoolArray::SMALL_SECTION;
19 static ConstantPoolArray::LayoutSection kExtended =
20 ConstantPoolArray::EXTENDED_SECTION;
38 ConstantPoolArray::NumberOfEntries small(3, 1, 2, 1); in TEST()
39 Handle<ConstantPoolArray> array = factory->NewConstantPoolArray(small); in TEST()
[all …]
/external/v8/src/ic/
Dic.h88 ConstantPoolArray* constant_pool);
160 ConstantPoolArray* constant_pool);
162 ConstantPoolArray* constant_pool);
232 inline ConstantPoolArray* constant_pool() const;
233 inline ConstantPoolArray* raw_constant_pool() const;
259 Handle<ConstantPoolArray> raw_constant_pool_;
314 ConstantPoolArray* constant_pool);
392 ConstantPoolArray* constant_pool);
441 ConstantPoolArray* constant_pool);
518 ConstantPoolArray* constant_pool);
[all …]
Dic-inl.h51 ConstantPoolArray* IC::constant_pool() const { in constant_pool()
55 Handle<ConstantPoolArray> result = raw_constant_pool_; in constant_pool()
75 ConstantPoolArray* IC::raw_constant_pool() const { in raw_constant_pool()
85 ConstantPoolArray* constant_pool) { in GetTargetAtAddress()
97 ConstantPoolArray* constant_pool) { in SetTargetAtAddress()
Dic.cc176 ConstantPoolArray::cast(reinterpret_cast<Object*>(constant_pool)), in IC()
453 ConstantPoolArray::WEAK_OBJECTS_IN_IC); in RegisterWeakMapDependency()
479 ConstantPoolArray* constant_pool) { in Clear()
512 ConstantPoolArray* constant_pool) { in Clear()
522 ConstantPoolArray* constant_pool) { in Clear()
528 ConstantPoolArray* constant_pool) { in Clear()
537 ConstantPoolArray* constant_pool) { in Clear()
546 ConstantPoolArray* constant_pool) { in Clear()
556 ConstantPoolArray* constant_pool) { in Clear()
2386 ConstantPoolArray* constant_pool) { in Clear()
Dic-state.h21 ConstantPoolArray* constant_pool);
/external/v8/src/arm/
Dassembler-arm.h653 ConstantPoolArray::LayoutSection AddEntry(Assembler* assm,
657 Handle<ConstantPoolArray> New(Isolate* isolate);
658 void Populate(Assembler* assm, ConstantPoolArray* constant_pool);
660 inline ConstantPoolArray::LayoutSection current_section() const { in current_section()
664 inline ConstantPoolArray::NumberOfEntries* number_of_entries( in number_of_entries()
665 ConstantPoolArray::LayoutSection section) { in number_of_entries()
669 inline ConstantPoolArray::NumberOfEntries* small_entries() { in small_entries()
670 return number_of_entries(ConstantPoolArray::SMALL_SECTION); in small_entries()
673 inline ConstantPoolArray::NumberOfEntries* extended_entries() { in extended_entries()
674 return number_of_entries(ConstantPoolArray::EXTENDED_SECTION); in extended_entries()
[all …]
Dassembler-arm.cc1141 ConstantPoolArray::LayoutSection section = ConstantPoolAddEntry(rinfo); in move_32_bit_immediate()
1142 if (section == ConstantPoolArray::EXTENDED_SECTION) { in move_32_bit_immediate()
1158 DCHECK(section == ConstantPoolArray::SMALL_SECTION); in move_32_bit_immediate()
2512 ConstantPoolArray::LayoutSection section = ConstantPoolAddEntry(rinfo); in vmov()
2513 if (section == ConstantPoolArray::EXTENDED_SECTION) { in vmov()
2521 DCHECK(section == ConstantPoolArray::SMALL_SECTION); in vmov()
3360 ConstantPoolArray::LayoutSection Assembler::ConstantPoolAddEntry( in ConstantPoolAddEntry()
3381 return ConstantPoolArray::SMALL_SECTION; in ConstantPoolAddEntry()
3619 Handle<ConstantPoolArray> Assembler::NewConstantPool(Isolate* isolate) { in NewConstantPool()
3627 void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { in PopulateConstantPool()
[all …]
Dassembler-arm-inl.h547 Address pc, ConstantPoolArray* constant_pool) { in constant_pool_entry_address()
586 ConstantPoolArray* constant_pool) { in target_address_at()
618 ConstantPoolArray* constant_pool, in set_target_address_at()
/external/v8/src/
Dfactory.h47 Handle<ConstantPoolArray> NewConstantPoolArray(
48 const ConstantPoolArray::NumberOfEntries& small);
50 Handle<ConstantPoolArray> NewExtendedConstantPoolArray(
51 const ConstantPoolArray::NumberOfEntries& small,
52 const ConstantPoolArray::NumberOfEntries& extended);
330 Handle<ConstantPoolArray> CopyConstantPoolArray(
331 Handle<ConstantPoolArray> array);
Dobjects-inl.h694 TYPE_CHECKER(ConstantPoolArray, CONSTANT_POOL_ARRAY_TYPE) in TYPE_CHECKER()
2279 void ConstantPoolArray::NumberOfEntries::increment(Type type) { in increment()
2285 int ConstantPoolArray::NumberOfEntries::equals( in equals()
2286 const ConstantPoolArray::NumberOfEntries& other) const { in equals()
2294 bool ConstantPoolArray::NumberOfEntries::is_empty() const { in is_empty()
2299 int ConstantPoolArray::NumberOfEntries::count_of(Type type) const { in count_of()
2305 int ConstantPoolArray::NumberOfEntries::base_of(Type type) const { in base_of()
2315 int ConstantPoolArray::NumberOfEntries::total_count() const { in total_count()
2324 int ConstantPoolArray::NumberOfEntries::are_in_range(int min, int max) const { in are_in_range()
2334 int ConstantPoolArray::Iterator::next_index() { in next_index()
[all …]
Dobjects-debug.cc68 ConstantPoolArray::cast(this)->ConstantPoolArrayVerify(); in HeapObjectVerify()
382 void ConstantPoolArray::ConstantPoolArrayVerify() { in ConstantPoolArrayVerify()
384 ConstantPoolArray::Iterator code_iter(this, ConstantPoolArray::CODE_PTR); in ConstantPoolArrayVerify()
389 ConstantPoolArray::Iterator heap_iter(this, ConstantPoolArray::HEAP_PTR); in ConstantPoolArrayVerify()
Dfactory.cc119 Handle<ConstantPoolArray> Factory::NewConstantPoolArray( in NewConstantPoolArray()
120 const ConstantPoolArray::NumberOfEntries& small) { in NewConstantPoolArray()
125 ConstantPoolArray); in NewConstantPoolArray()
129 Handle<ConstantPoolArray> Factory::NewExtendedConstantPoolArray( in NewExtendedConstantPoolArray()
130 const ConstantPoolArray::NumberOfEntries& small, in NewExtendedConstantPoolArray()
131 const ConstantPoolArray::NumberOfEntries& extended) { in NewExtendedConstantPoolArray()
137 ConstantPoolArray); in NewExtendedConstantPoolArray()
1006 Handle<ConstantPoolArray> Factory::CopyConstantPoolArray( in CopyConstantPoolArray()
1007 Handle<ConstantPoolArray> array) { in CopyConstantPoolArray()
1010 ConstantPoolArray); in CopyConstantPoolArray()
[all …]
Dlithium-codegen.cc208 ConstantPoolArray::WEAK_OBJECTS_IN_OPTIMIZED_CODE); in RegisterWeakObjectsInOptimizedCode()
/external/v8/src/heap/
Dobjects-visiting-inl.h478 ConstantPoolArray* array = ConstantPoolArray::cast(object); in VisitConstantPoolArray()
479 ConstantPoolArray::Iterator code_iter(array, ConstantPoolArray::CODE_PTR); in VisitConstantPoolArray()
486 ConstantPoolArray::Iterator heap_iter(array, ConstantPoolArray::HEAP_PTR); in VisitConstantPoolArray()
493 ConstantPoolArray::WEAK_OBJECTS_IN_OPTIMIZED_CODE && in VisitConstantPoolArray()
496 ConstantPoolArray::WEAK_OBJECTS_IN_IC && in VisitConstantPoolArray()
Dheap.cc1785 STATIC_ASSERT((ConstantPoolArray::kFirstEntryOffset & kDoubleAlignmentMask) ==
1787 STATIC_ASSERT((ConstantPoolArray::kExtendedFirstOffset &
2432 set_empty_constant_pool_array(ConstantPoolArray::cast(obj)); in CreateInitialMaps()
4009 AllocationResult Heap::CopyConstantPoolArrayWithMap(ConstantPoolArray* src, in CopyConstantPoolArrayWithMap()
4013 ConstantPoolArray::NumberOfEntries small(src, in CopyConstantPoolArrayWithMap()
4014 ConstantPoolArray::SMALL_SECTION); in CopyConstantPoolArrayWithMap()
4015 ConstantPoolArray::NumberOfEntries extended( in CopyConstantPoolArrayWithMap()
4016 src, ConstantPoolArray::EXTENDED_SECTION); in CopyConstantPoolArrayWithMap()
4021 ConstantPoolArray::NumberOfEntries small(src, in CopyConstantPoolArrayWithMap()
4022 ConstantPoolArray::SMALL_SECTION); in CopyConstantPoolArrayWithMap()
[all …]
Dheap.h61 V(ConstantPoolArray, empty_constant_pool_array, EmptyConstantPoolArray) \
1749 ConstantPoolArray* src);
1762 CopyConstantPoolArrayWithMap(ConstantPoolArray* src, Map* map);
1765 const ConstantPoolArray::NumberOfEntries& small);
1768 const ConstantPoolArray::NumberOfEntries& small,
1769 const ConstantPoolArray::NumberOfEntries& extended);
/external/v8/src/x87/
Dassembler-x87.h488 ConstantPoolArray* constant_pool);
490 ConstantPoolArray* constant_pool,
495 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL; in target_address_at()
503 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL;
961 Handle<ConstantPoolArray> NewConstantPool(Isolate* isolate);
964 void PopulateConstantPool(ConstantPoolArray* constant_pool);
Dassembler-x87-inl.h464 ConstantPoolArray* constant_pool) { in target_address_at()
470 ConstantPoolArray* constant_pool, in set_target_address_at()
/external/v8/src/mips/
Dassembler-mips.h498 ConstantPoolArray* constant_pool)) { in INLINE()
502 ConstantPoolArray* constant_pool, in INLINE()
509 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL; in INLINE()
517 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL; in INLINE()
1105 Handle<ConstantPoolArray> NewConstantPool(Isolate* isolate);
1108 void PopulateConstantPool(ConstantPoolArray* constant_pool);
/external/v8/src/ia32/
Dassembler-ia32.h499 ConstantPoolArray* constant_pool);
501 ConstantPoolArray* constant_pool,
506 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL; in target_address_at()
514 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL;
1091 Handle<ConstantPoolArray> NewConstantPool(Isolate* isolate);
1094 void PopulateConstantPool(ConstantPoolArray* constant_pool);
Dassembler-ia32-inl.h463 ConstantPoolArray* constant_pool) { in target_address_at()
469 ConstantPoolArray* constant_pool, in set_target_address_at()
/external/v8/src/x64/
Dassembler-x64.h519 ConstantPoolArray* constant_pool);
521 ConstantPoolArray* constant_pool,
526 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL; in target_address_at()
534 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL;
1116 Handle<ConstantPoolArray> NewConstantPool(Isolate* isolate);
1119 void PopulateConstantPool(ConstantPoolArray* constant_pool);
Dassembler-x64-inl.h188 ConstantPoolArray* constant_pool) { in target_address_at()
194 ConstantPoolArray* constant_pool, in set_target_address_at()
/external/v8/src/mips64/
Dassembler-mips64.h488 ConstantPoolArray* constant_pool)) { in INLINE()
492 ConstantPoolArray* constant_pool, in INLINE()
499 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL; in INLINE()
507 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL; in INLINE()
1141 Handle<ConstantPoolArray> NewConstantPool(Isolate* isolate);
1144 void PopulateConstantPool(ConstantPoolArray* constant_pool);
/external/v8/src/arm64/
Dassembler-arm64-inl.h585 ConstantPoolArray* constant_pool) {
591 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL;
658 ConstantPoolArray* constant_pool,
677 ConstantPoolArray* constant_pool = code ? code->constant_pool() : NULL;

12