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

1 2

  /external/v8/src/
field-index-inl.h 14 inline FieldIndex FieldIndex::ForInObjectOffset(int offset, Map* map) {
20 return FieldIndex(true, index, false, 0, 0, true);
24 inline FieldIndex FieldIndex::ForPropertyIndex(Map* map,
37 return FieldIndex(is_inobject,
44 // FieldIndex object from it.
45 inline FieldIndex FieldIndex::ForLoadByFieldIndex(Map* map, int orig_index) {
60 FieldIndex result(is_inobject, field_index, is_double
    [all...]
field-index.h 20 class FieldIndex final {
22 FieldIndex() : bit_field_(0) {}
24 static FieldIndex ForPropertyIndex(Map* map,
27 static FieldIndex ForInObjectOffset(int offset, Map* map = NULL);
28 static FieldIndex ForDescriptor(Map* map, int descriptor_index);
29 static FieldIndex ForLoadByFieldIndex(Map* map, int index);
30 static FieldIndex ForKeyedLookupCacheIndex(Map* map, int index);
31 static FieldIndex FromFieldAccessStubKey(int key);
78 FieldIndex(bool is_inobject, int local_index, bool is_double,
90 explicit FieldIndex(int bit_field) : bit_field_(bit_field) {
    [all...]
layout-descriptor.cc 266 FieldIndex field_index = FieldIndex::ForDescriptor(map, i);
lookup.cc 524 FieldIndex field_index = FieldIndex::ForDescriptor(holder->map(), number_);
551 FieldIndex LookupIterator::GetFieldIndex() const {
560 return FieldIndex::ForPropertyIndex(holder_map, index, is_double);
code-stubs.h     [all...]
string-stream.cc 366 FieldIndex index = FieldIndex::ForDescriptor(map, i);
objects-printer.cc 292 FieldIndex index = FieldIndex::ForDescriptor(map(), i);
302 FieldIndex index = FieldIndex::ForDescriptor(map(), i);
    [all...]
property-descriptor.cc 68 FieldIndex::ForDescriptor(map, i));
lookup.h 248 FieldIndex GetFieldIndex() const;
json-stringifier.cc 538 FieldIndex field_index = FieldIndex::ForDescriptor(*map, i);
keys.cc 306 FieldIndex field_index = FieldIndex::ForDescriptor(*map, i);
code-stubs-hydrogen.cc 76 HLoadNamedField* BuildLoadNamedField(HValue* object, FieldIndex index);
77 void BuildStoreNamedField(HValue* object, HValue* value, FieldIndex index,
    [all...]
  /external/v8/src/compiler/
access-info.h 68 Type* receiver_type, FieldIndex field_index, Type* field_type,
84 FieldIndex field_index() const { return field_index_; }
93 MaybeHandle<Map> transition_map, FieldIndex field_index,
101 FieldIndex field_index_;
access-info.cc 77 Type* receiver_type, FieldIndex field_index, Type* field_type,
118 FieldIndex field_index, Type* field_type,
267 FieldIndex field_index = FieldIndex::ForPropertyIndex(
375 FieldIndex field_index = FieldIndex::ForInObjectOffset(offset);
422 FieldIndex field_index = FieldIndex::ForPropertyIndex(
access-builder.h 83 static FieldAccess ForJSDateField(JSDate::FieldIndex index);
js-create-lowering.cc 177 FieldIndex field_index = FieldIndex::ForDescriptor(boilerplate->map(), i);
    [all...]
  /external/v8/test/cctest/
test-unboxed-doubles.cc 63 static double GetDoubleFieldValue(JSObject* obj, FieldIndex field_index) {
923 FieldIndex index = FieldIndex::ForDescriptor(*map, i);
    [all...]
test-inobject-slack-tracking.cc 92 FieldIndex index = FieldIndex::ForPropertyIndex(obj->map(), property_index);
97 static double GetDoubleFieldValue(JSObject* obj, FieldIndex field_index) {
109 FieldIndex index = FieldIndex::ForPropertyIndex(obj->map(), property_index);
    [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 147 static ABIArgInfo getInAlloca(unsigned FieldIndex) {
149 AI.setInAllocaFieldIndex(FieldIndex);
255 void setInAllocaFieldIndex(unsigned FieldIndex) {
257 AllocaFieldIndex = FieldIndex;
  /external/clang/lib/CodeGen/
CGBlocks.h 147 unsigned FieldIndex;
  /external/v8/src/ic/
handler-compiler.h 123 Handle<Code> CompileLoadField(Handle<Name> name, FieldIndex index);
handler-compiler.cc 189 FieldIndex field) {
515 FieldIndex::ForDescriptor(*transition, descriptor),
ic.cc 853 Handle<Code> LoadIC::SimpleFieldLoad(FieldIndex index) {
    [all...]
  /external/v8/src/runtime/
runtime-object.cc 606 FieldIndex field_index =
607 FieldIndex::ForLoadByFieldIndex(object->map(), index->value());
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]

Completed in 217 milliseconds

1 2