HomeSort by relevance Sort by last modified time
    Searched refs:JSGlobalPropertyCell (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/v8/src/arm/
assembler-arm-inl.h 134 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;
stub-cache-arm.cc     [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 201 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;
stub-cache-mips.cc     [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 143 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;
stub-cache-ia32.cc 835 Handle<JSGlobalPropertyCell> cell =
841 __ cmp(FieldOperand(scratch, JSGlobalPropertyCell::kValueOffset),
    [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 302 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;
stub-cache-x64.cc 812 Handle<JSGlobalPropertyCell> cell =
816 __ Cmp(FieldOperand(scratch, JSGlobalPropertyCell::kValueOffset),
    [all...]
  /external/v8/src/
stub-cache.h 107 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,
    [all...]
assembler.h 286 INLINE(JSGlobalPropertyCell* target_cell());
287 INLINE(Handle<JSGlobalPropertyCell> target_cell_handle());
288 INLINE(void set_target_cell(JSGlobalPropertyCell* cell,
full-codegen.h 405 void RecordTypeFeedbackCell(unsigned id, Handle<JSGlobalPropertyCell> cell);
607 Handle<JSGlobalPropertyCell> cell;
801 Handle<JSGlobalPropertyCell> profiling_counter_;
property.h 306 value = JSGlobalPropertyCell::cast(value)->value();
spaces.h     [all...]
ast.cc 529 cell_ = Handle<JSGlobalPropertyCell>::null();
533 cell_ = Handle<JSGlobalPropertyCell>(global->GetPropertyCell(lookup));
    [all...]
objects-debug.cc 157 JSGlobalPropertyCell::cast(this)->JSGlobalPropertyCellVerify();
543 void JSGlobalPropertyCell::JSGlobalPropertyCellVerify() {
objects-printer.cc 179 JSGlobalPropertyCell::cast(this)->JSGlobalPropertyCellPrint(out);
802 void JSGlobalPropertyCell::JSGlobalPropertyCellPrint(FILE* out) {
803 HeapObject::PrintHeader(out, "JSGlobalPropertyCell");
objects.h     [all...]
factory.h 213 Handle<JSGlobalPropertyCell> NewJSGlobalPropertyCell(
heap-inl.h 286 MaybeObject* result = cell_space_->AllocateRaw(JSGlobalPropertyCell::kSize);
stub-cache.cc 220 Handle<JSGlobalPropertyCell> cell,
464 Handle<JSGlobalPropertyCell> cell,
662 Handle<JSGlobalPropertyCell> cell,
    [all...]
hydrogen-instructions.h     [all...]
mark-compact.cc 996 JSGlobalPropertyCell::BodyDescriptor,
    [all...]
objects-inl.h 614 TYPE_CHECKER(JSGlobalPropertyCell, JS_GLOBAL_PROPERTY_CELL_TYPE)
    [all...]
objects.cc 426 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));
    [all...]
ic.cc 656 Handle<JSGlobalPropertyCell> cell(global->GetPropertyCell(lookup));
    [all...]

Completed in 707 milliseconds

1 2 3