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

1 2

  /external/v8/src/mips/
assembler-mips-inl.h 172 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
175 return Handle<JSGlobalPropertyCell>(
176 reinterpret_cast<JSGlobalPropertyCell**>(address));
180 JSGlobalPropertyCell* RelocInfo::target_cell() {
184 address - JSGlobalPropertyCell::kValueOffset);
185 return reinterpret_cast<JSGlobalPropertyCell*>(object);
189 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell) {
191 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
stub-cache-mips.cc 277 void CallStubCompiler::GenerateLoadFunctionFromCell(JSGlobalPropertyCell* cell,
301 JSGlobalPropertyCell* cell,
311 JSGlobalPropertyCell* cell,
322 JSGlobalPropertyCell* cell,
333 JSGlobalPropertyCell* cell,
344 JSGlobalPropertyCell* cell,
354 JSGlobalPropertyCell* cell,
364 JSGlobalPropertyCell* cell,
376 JSGlobalPropertyCell* cell,
404 JSGlobalPropertyCell* cell
    [all...]
  /external/v8/src/arm/
assembler-arm-inl.h 113 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
116 return Handle<JSGlobalPropertyCell>(
117 reinterpret_cast<JSGlobalPropertyCell**>(address));
121 JSGlobalPropertyCell* RelocInfo::target_cell() {
125 address - JSGlobalPropertyCell::kValueOffset);
126 return reinterpret_cast<JSGlobalPropertyCell*>(object);
130 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell) {
132 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
stub-cache-arm.cc     [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 128 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
131 return Handle<JSGlobalPropertyCell>(
132 reinterpret_cast<JSGlobalPropertyCell**>(address));
136 JSGlobalPropertyCell* RelocInfo::target_cell() {
140 address - JSGlobalPropertyCell::kValueOffset);
141 return reinterpret_cast<JSGlobalPropertyCell*>(object);
145 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell) {
147 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
stub-cache-ia32.cc     [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 281 Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
284 return Handle<JSGlobalPropertyCell>(
285 reinterpret_cast<JSGlobalPropertyCell**>(address));
289 JSGlobalPropertyCell* RelocInfo::target_cell() {
293 address - JSGlobalPropertyCell::kValueOffset);
294 return reinterpret_cast<JSGlobalPropertyCell*>(object);
298 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell) {
300 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
stub-cache-x64.cc     [all...]
  /external/v8/src/
stub-cache.h 106 JSGlobalPropertyCell* cell,
164 JSGlobalPropertyCell* cell,
236 JSGlobalPropertyCell* cell,
602 JSGlobalPropertyCell* cell,
659 JSGlobalPropertyCell* holder,
725 JSGlobalPropertyCell* cell,
737 JSGlobalPropertyCell* cell,
744 JSGlobalPropertyCell* cell, \
754 JSGlobalPropertyCell* cell,
781 void GenerateLoadFunctionFromCell(JSGlobalPropertyCell* cell
    [all...]
assembler.h 301 INLINE(JSGlobalPropertyCell* target_cell());
302 INLINE(Handle<JSGlobalPropertyCell> target_cell_handle());
303 INLINE(void set_target_cell(JSGlobalPropertyCell* cell));
property.h 269 value = JSGlobalPropertyCell::cast(value)->value();
ic.cc 664 JSGlobalPropertyCell* cell =
665 JSGlobalPropertyCell::cast(global->GetPropertyCell(lookup));
    [all...]
objects-debug.cc 145 JSGlobalPropertyCell::cast(this)->JSGlobalPropertyCellVerify();
394 void JSGlobalPropertyCell::JSGlobalPropertyCellVerify() {
hydrogen-instructions.h     [all...]
factory.h 176 Handle<JSGlobalPropertyCell> NewJSGlobalPropertyCell(
ast.cc 717 cell_ = Handle<JSGlobalPropertyCell>::null();
721 cell_ = Handle<JSGlobalPropertyCell>(global->GetPropertyCell(lookup));
objects-printer.cc 158 JSGlobalPropertyCell::cast(this)->JSGlobalPropertyCellPrint(out);
595 void JSGlobalPropertyCell::JSGlobalPropertyCellPrint(FILE* out) {
596 HeapObject::PrintHeader(out, "JSGlobalPropertyCell");
objects.cc 382 value = JSGlobalPropertyCell::cast(value)->value();
392 JSGlobalPropertyCell* cell =
393 JSGlobalPropertyCell::cast(
429 JSGlobalPropertyCell* cell =
430 JSGlobalPropertyCell::cast(property_dictionary()->ValueAt(entry));
461 JSGlobalPropertyCell* cell =
462 JSGlobalPropertyCell::cast(dictionary->ValueAt(entry));
    [all...]
heap-inl.h 247 MaybeObject* result = cell_space_->AllocateRaw(JSGlobalPropertyCell::kSize);
stub-cache.cc 255 JSGlobalPropertyCell* cell,
670 JSGlobalPropertyCell* cell,
    [all...]
factory.cc 325 Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
330 JSGlobalPropertyCell);
    [all...]
objects.h 744 V(JSGlobalPropertyCell) \
    [all...]
objects-inl.h     [all...]
mark-compact.cc 429 JSGlobalPropertyCell::BodyDescriptor,
477 rinfo->set_target_cell(reinterpret_cast<JSGlobalPropertyCell*>(cell));
    [all...]
ast.h     [all...]

Completed in 924 milliseconds

1 2