Searched refs:JSGlobalPropertyCell (Results 1 - 25 of 51) sorted by relevance

123

/external/v8/src/arm/
H A Dassembler-arm-inl.h134 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
137 return Handle<JSGlobalPropertyCell>(
138 reinterpret_cast<JSGlobalPropertyCell**>(address));
142 JSGlobalPropertyCell* RelocInfo::target_cell() {
146 address - JSGlobalPropertyCell::kValueOffset);
147 return reinterpret_cast<JSGlobalPropertyCell*>(object);
151 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell,
154 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
H A Dstub-cache-arm.cc892 Handle<JSGlobalPropertyCell> cell =
897 FieldMemOperand(scratch, JSGlobalPropertyCell::kValueOffset));
1406 Handle<JSGlobalPropertyCell> cell,
1411 __ ldr(r1, FieldMemOperand(r3, JSGlobalPropertyCell::kValueOffset));
1481 Handle<JSGlobalPropertyCell> cell,
1691 Handle<JSGlobalPropertyCell> cell,
1777 Handle<JSGlobalPropertyCell> cell,
1858 Handle<JSGlobalPropertyCell> cell,
1940 Handle<JSGlobalPropertyCell> cell,
2013 Handle<JSGlobalPropertyCell> cel
[all...]
/external/v8/src/mips/
H A Dassembler-mips-inl.h201 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
204 return Handle<JSGlobalPropertyCell>(
205 reinterpret_cast<JSGlobalPropertyCell**>(address));
209 JSGlobalPropertyCell* RelocInfo::target_cell() {
213 address - JSGlobalPropertyCell::kValueOffset);
214 return reinterpret_cast<JSGlobalPropertyCell*>(object);
218 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell,
221 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
H A Dstub-cache-mips.cc886 Handle<JSGlobalPropertyCell> cell =
891 FieldMemOperand(scratch, JSGlobalPropertyCell::kValueOffset));
1405 Handle<JSGlobalPropertyCell> cell,
1410 __ lw(a1, FieldMemOperand(a3, JSGlobalPropertyCell::kValueOffset));
1479 Handle<JSGlobalPropertyCell> cell,
1689 Handle<JSGlobalPropertyCell> cell,
1775 Handle<JSGlobalPropertyCell> cell,
1858 Handle<JSGlobalPropertyCell> cell,
1940 Handle<JSGlobalPropertyCell> cell,
2013 Handle<JSGlobalPropertyCell> cel
[all...]
/external/v8/src/ia32/
H A Dassembler-ia32-inl.h143 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
146 return Handle<JSGlobalPropertyCell>(
147 reinterpret_cast<JSGlobalPropertyCell**>(address));
151 JSGlobalPropertyCell* RelocInfo::target_cell() {
155 address - JSGlobalPropertyCell::kValueOffset);
156 return reinterpret_cast<JSGlobalPropertyCell*>(object);
160 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell,
163 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
H A Dstub-cache-ia32.cc835 Handle<JSGlobalPropertyCell> cell =
841 __ cmp(FieldOperand(scratch, JSGlobalPropertyCell::kValueOffset),
1272 Handle<JSGlobalPropertyCell> cell,
1278 __ mov(edi, FieldOperand(edi, JSGlobalPropertyCell::kValueOffset));
1372 Handle<JSGlobalPropertyCell> cell,
1579 Handle<JSGlobalPropertyCell> cell,
1661 Handle<JSGlobalPropertyCell> cell,
1744 Handle<JSGlobalPropertyCell> cell,
1829 Handle<JSGlobalPropertyCell> cell,
1904 Handle<JSGlobalPropertyCell> cel
[all...]
/external/v8/src/x64/
H A Dassembler-x64-inl.h302 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
305 return Handle<JSGlobalPropertyCell>(
306 reinterpret_cast<JSGlobalPropertyCell**>(address));
310 JSGlobalPropertyCell* RelocInfo::target_cell() {
314 address - JSGlobalPropertyCell::kValueOffset);
315 return reinterpret_cast<JSGlobalPropertyCell*>(object);
319 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell,
322 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
H A Dstub-cache-x64.cc812 Handle<JSGlobalPropertyCell> cell =
816 __ Cmp(FieldOperand(scratch, JSGlobalPropertyCell::kValueOffset),
1244 Handle<JSGlobalPropertyCell> cell,
1249 __ movq(rdi, FieldOperand(rdi, JSGlobalPropertyCell::kValueOffset));
1342 Handle<JSGlobalPropertyCell> cell,
1542 Handle<JSGlobalPropertyCell> cell,
1623 Handle<JSGlobalPropertyCell> cell,
1702 Handle<JSGlobalPropertyCell> cell,
1781 Handle<JSGlobalPropertyCell> cell,
1851 Handle<JSGlobalPropertyCell> cel
[all...]
/external/v8/src/
H A Dstub-cache.h107 Handle<JSGlobalPropertyCell> cell,
152 Handle<JSGlobalPropertyCell> cell,
207 Handle<JSGlobalPropertyCell> cell,
607 Handle<JSGlobalPropertyCell> cell,
685 Handle<JSGlobalPropertyCell> holder,
778 Handle<JSGlobalPropertyCell> cell,
790 Handle<JSGlobalPropertyCell> cell,
797 Handle<JSGlobalPropertyCell> cell, \
806 Handle<JSGlobalPropertyCell> cell,
824 void GenerateLoadFunctionFromCell(Handle<JSGlobalPropertyCell> cel
[all...]
H A Dassembler.h286 INLINE(JSGlobalPropertyCell* target_cell());
287 INLINE(Handle<JSGlobalPropertyCell> target_cell_handle());
288 INLINE(void set_target_cell(JSGlobalPropertyCell* cell,
H A Dfull-codegen.h405 void RecordTypeFeedbackCell(unsigned id, Handle<JSGlobalPropertyCell> cell);
607 Handle<JSGlobalPropertyCell> cell;
801 Handle<JSGlobalPropertyCell> profiling_counter_;
H A Dproperty.h306 value = JSGlobalPropertyCell::cast(value)->value();
H A Dspaces.h2436 : FixedSpace(heap, max_capacity, id, JSGlobalPropertyCell::kSize, "cell")
2440 if (IsPowerOf2(JSGlobalPropertyCell::kSize)) {
2441 return RoundDown(size, JSGlobalPropertyCell::kSize);
2443 return (size / JSGlobalPropertyCell::kSize) * JSGlobalPropertyCell::kSize;
H A Dast.cc529 cell_ = Handle<JSGlobalPropertyCell>::null();
533 cell_ = Handle<JSGlobalPropertyCell>(global->GetPropertyCell(lookup));
H A Dobjects-debug.cc157 JSGlobalPropertyCell::cast(this)->JSGlobalPropertyCellVerify();
543 void JSGlobalPropertyCell::JSGlobalPropertyCellVerify() {
H A Dobjects-printer.cc179 JSGlobalPropertyCell::cast(this)->JSGlobalPropertyCellPrint(out);
802 void JSGlobalPropertyCell::JSGlobalPropertyCellPrint(FILE* out) {
803 HeapObject::PrintHeader(out, "JSGlobalPropertyCell");
H A Dobjects.h849 V(JSGlobalPropertyCell) \
4062 class JSGlobalPropertyCell;
4079 inline JSGlobalPropertyCell* Cell(int index);
4080 inline void SetCell(int index, JSGlobalPropertyCell* cell);
5931 JSGlobalPropertyCell* GetPropertyCell(LookupResult* result);
5943 static Handle<JSGlobalPropertyCell> EnsurePropertyCell(
7620 class JSGlobalPropertyCell: public HeapObject {
7626 static inline JSGlobalPropertyCell* cast(Object* obj);
7647 DISALLOW_IMPLICIT_CONSTRUCTORS(JSGlobalPropertyCell);
H A Dfactory.h213 Handle<JSGlobalPropertyCell> NewJSGlobalPropertyCell(
H A Dheap-inl.h286 MaybeObject* result = cell_space_->AllocateRaw(JSGlobalPropertyCell::kSize);
H A Dstub-cache.cc220 Handle<JSGlobalPropertyCell> cell,
464 Handle<JSGlobalPropertyCell> cell,
662 Handle<JSGlobalPropertyCell> cell,
1403 Handle<JSGlobalPropertyCell> cell,
H A Dhydrogen-instructions.h3457 HLoadGlobalCell(Handle<JSGlobalPropertyCell> cell, PropertyDetails details)
3464 Handle<JSGlobalPropertyCell> cell() const { return cell_; }
3487 Handle<JSGlobalPropertyCell> cell_;
3535 Handle<JSGlobalPropertyCell> cell,
3543 Handle<JSGlobalPropertyCell> cell() const { return cell_; }
3559 Handle<JSGlobalPropertyCell> cell_;
H A Dmark-compact.cc996 JSGlobalPropertyCell::BodyDescriptor,
1031 JSGlobalPropertyCell* cell =
1032 JSGlobalPropertyCell::cast(rinfo->target_cell());
1188 JSGlobalPropertyCell* cell = type_feedback_cells->Cell(i);
2320 int offset = JSGlobalPropertyCell::kValueOffset;
3393 (JSGlobalPropertyCell::kValueOffset - kHeapObjectTag);
H A Dobjects-inl.h614 TYPE_CHECKER(JSGlobalPropertyCell, JS_GLOBAL_PROPERTY_CELL_TYPE)
1422 Object* JSGlobalPropertyCell::value() {
1427 void JSGlobalPropertyCell::set_value(Object* val, WriteBarrierMode ignored) {
2146 CAST_ACCESSOR(JSGlobalPropertyCell)
4806 void TypeFeedbackCells::SetCell(int index, JSGlobalPropertyCell* cell) {
4811 JSGlobalPropertyCell* TypeFeedbackCells::Cell(int index) {
4812 return JSGlobalPropertyCell::cast(get(index * 2));
H A Dobjects.cc426 value = JSGlobalPropertyCell::cast(value)->value();
436 JSGlobalPropertyCell* cell =
437 JSGlobalPropertyCell::cast(
483 JSGlobalPropertyCell* cell =
484 JSGlobalPropertyCell::cast(property_dictionary()->ValueAt(entry));
515 JSGlobalPropertyCell* cell =
516 JSGlobalPropertyCell::cast(dictionary->ValueAt(entry));
1288 JSGlobalPropertyCell::cast(this)->value()->ShortPrint(accumulator);
1377 JSGlobalPropertyCell::BodyDescriptor::IterateBody(this, v);
1683 JSGlobalPropertyCell
[all...]
H A Dic.cc656 Handle<JSGlobalPropertyCell> cell(global->GetPropertyCell(lookup));
968 Handle<JSGlobalPropertyCell> cell(global->GetPropertyCell(lookup));
1434 Handle<JSGlobalPropertyCell> cell(global->GetPropertyCell(lookup));

Completed in 1588 milliseconds

123