Home
last modified time | relevance | path

Searched refs:var_unique (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/ic/
Dkeyed-store-generic.cc910 TVARIABLE(Object, var_unique, key); in KeyedStoreGeneric()
921 TryToName(key, &if_index, &var_index, &if_unique_name, &var_unique, &slow, in KeyedStoreGeneric()
934 StoreICParameters p(context, receiver, var_unique.value(), value, slot, in KeyedStoreGeneric()
945 &var_unique, &slow, &slow); in KeyedStoreGeneric()
Daccessor-assembler.cc546 VARIABLE(var_unique, MachineRepresentation::kTagged); in HandleLoadICSmiHandlerCase()
554 TryToName(p->name, &if_index, &var_index, &if_unique_name, &var_unique, in HandleLoadICSmiHandlerCase()
560 p->context, holder, var_unique.value(), p->receiver, in HandleLoadICSmiHandlerCase()
1432 VARIABLE(var_unique, MachineRepresentation::kTagged); in HandleStoreToProxy()
1440 TryToName(p->name, &if_index, &var_index, &if_unique_name, &var_unique, in HandleStoreToProxy()
1445 var_unique.value(), p->value, p->receiver, language_mode); in HandleStoreToProxy()
2741 VARIABLE(var_unique, MachineRepresentation::kTagged); in KeyedLoadICGeneric()
2742 var_unique.Bind(p->name); // Dummy initialization. in KeyedLoadICGeneric()
2750 TryToName(p->name, &if_index, &var_index, &if_unique_name, &var_unique, &slow, in KeyedLoadICGeneric()
2762 pp.name = var_unique.value(); in KeyedLoadICGeneric()
[all …]
/external/v8/src/builtins/
Dbuiltins-internal-gen.cc493 VARIABLE(var_unique, MachineRepresentation::kTagged, key); in TF_BUILTIN()
501 TryToName(key, &if_index, &var_index, &if_unique_name, &var_unique, &slow, in TF_BUILTIN()
513 TNode<Name> unique = CAST(var_unique.value()); in TF_BUILTIN()
547 &var_unique, &if_notfound, &slow); in TF_BUILTIN()
Dbuiltins-object-gen.cc436 VARIABLE(var_unique, MachineRepresentation::kTagged); in TF_BUILTIN()
439 TryToName(key, &if_index, &var_index, &if_unique_name, &var_unique, in TF_BUILTIN()
443 TryHasOwnProperty(object, map, instance_type, var_unique.value(), in TF_BUILTIN()
460 &var_unique, &not_in_string_table, &call_runtime); in TF_BUILTIN()
/external/v8/src/
Dcode-stub-assembler.cc7463 Variable* var_unique, Label* if_bailout, in TryToName() argument
7466 DCHECK_EQ(MachineRepresentation::kTagged, var_unique->rep()); in TryToName()
7477 var_unique->Bind(key); in TryToName()
7504 var_unique->Bind(LoadObjectField(key, ThinString::kActualOffset)); in TryToName()
7513 var_unique->Bind(LoadObjectField(key, Oddball::kToStringOffset)); in TryToName()
8810 VARIABLE(var_unique, MachineRepresentation::kTagged); in TryPrototypeChainLookup()
8813 TryToName(key, &if_keyisindex, &var_index, &if_iskeyunique, &var_unique, in TryPrototypeChainLookup()
8834 holder_instance_type, var_unique.value(), in TryPrototypeChainLookup()
8842 GotoIfNot(IsString(var_unique.value()), &next_proto); in TryPrototypeChainLookup()
8843 BranchIfMaybeSpecialIndex(CAST(var_unique.value()), if_bailout, in TryPrototypeChainLookup()
Dcode-stub-assembler.h2143 Label* if_keyisunique, Variable* var_unique, Label* if_bailout,