Home
last modified time | relevance | path

Searched refs:typeof_mode (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/ic/
Daccessor-assembler.h59 void GenerateLoadGlobalIC(TypeofMode typeof_mode);
60 void GenerateLoadGlobalICTrampoline(TypeofMode typeof_mode);
61 void GenerateLoadGlobalICBaseline(TypeofMode typeof_mode);
62 void GenerateLookupGlobalICBaseline(TypeofMode typeof_mode);
63 void GenerateLookupContextBaseline(TypeofMode typeof_mode);
187 const LazyNode<Name>& lazy_name, TypeofMode typeof_mode,
435 TypeofMode typeof_mode,
Daccessor-assembler.cc3276 TypeofMode typeof_mode, in LoadGlobalIC() argument
3292 typeof_mode, exit_point, &miss); in LoadGlobalIC()
3302 SmiConstant(typeof_mode)); in LoadGlobalIC()
3309 static_cast<int>((typeof_mode == TypeofMode::kInside) in LoadGlobalIC()
3358 TypeofMode typeof_mode, ExitPoint* exit_point, Label* miss) { in LoadGlobalIC_TryHandlerCase() argument
3368 OnNonExistent on_nonexistent = typeof_mode == TypeofMode::kNotInside in LoadGlobalIC_TryHandlerCase()
4322 void AccessorAssembler::GenerateLoadGlobalIC(TypeofMode typeof_mode) { in GenerateLoadGlobalIC() argument
4338 [=] { return name; }, typeof_mode, &direct_exit); in GenerateLoadGlobalIC()
4341 void AccessorAssembler::GenerateLoadGlobalICTrampoline(TypeofMode typeof_mode) { in GenerateLoadGlobalICTrampoline() argument
4350 CodeFactory::LoadGlobalICInOptimizedCode(isolate(), typeof_mode); in GenerateLoadGlobalICTrampoline()
[all …]
Dic.cc2755 TypeofMode typeof_mode = static_cast<TypeofMode>(typeof_value); in RUNTIME_FUNCTION() local
2764 FeedbackSlotKind kind = (typeof_mode == TypeofMode::kInside) in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/codegen/
Dcode-factory.h37 static Callable LoadGlobalIC(Isolate* isolate, TypeofMode typeof_mode);
39 TypeofMode typeof_mode);
Dcode-factory.cc82 Callable CodeFactory::LoadGlobalIC(Isolate* isolate, TypeofMode typeof_mode) { in LoadGlobalIC() argument
83 return typeof_mode == TypeofMode::kNotInside in LoadGlobalIC()
91 TypeofMode typeof_mode) { in LoadGlobalICInOptimizedCode() argument
92 return typeof_mode == TypeofMode::kNotInside in LoadGlobalICInOptimizedCode()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-array-builder.h102 TypeofMode typeof_mode);
219 TypeofMode typeof_mode);
225 TypeofMode typeof_mode,
232 TypeofMode typeof_mode,
Dbytecode-array-builder.cc722 TypeofMode typeof_mode) { in LoadGlobal() argument
727 typeof_mode); in LoadGlobal()
728 switch (typeof_mode) { in LoadGlobal()
777 const AstRawString* name, TypeofMode typeof_mode) { in LoadLookupSlot() argument
779 switch (typeof_mode) { in LoadLookupSlot()
791 const AstRawString* name, TypeofMode typeof_mode, int slot_index, in LoadLookupContextSlot() argument
794 switch (typeof_mode) { in LoadLookupContextSlot()
806 const AstRawString* name, TypeofMode typeof_mode, int feedback_slot, in LoadLookupGlobalSlot() argument
809 switch (typeof_mode) { in LoadLookupGlobalSlot()
Dbytecode-generator.h257 TypeofMode typeof_mode = TypeofMode::kNotInside);
260 TypeofMode typeof_mode = TypeofMode::kNotInside);
430 FeedbackSlot GetCachedLoadGlobalICSlot(TypeofMode typeof_mode,
Dbytecode-generator.cc3522 TypeofMode typeof_mode) { in BuildVariableLoad() argument
3558 FeedbackSlot slot = GetCachedLoadGlobalICSlot(typeof_mode, variable); in BuildVariableLoad()
3560 typeof_mode); in BuildVariableLoad()
3593 builder()->LoadLookupContextSlot(variable->raw_name(), typeof_mode, in BuildVariableLoad()
3604 FeedbackSlot slot = feedback_spec()->AddLoadGlobalICSlot(typeof_mode); in BuildVariableLoad()
3606 builder()->LoadLookupGlobalSlot(variable->raw_name(), typeof_mode, in BuildVariableLoad()
3611 builder()->LoadLookupSlot(variable->raw_name(), typeof_mode); in BuildVariableLoad()
3625 FeedbackSlot slot = GetCachedLoadGlobalICSlot(typeof_mode, variable); in BuildVariableLoad()
3627 typeof_mode); in BuildVariableLoad()
3634 Variable* variable, HoleCheckMode hole_check_mode, TypeofMode typeof_mode) { in BuildVariableLoadForAccumulatorValue() argument
[all …]
Dinterpreter-generator.cc178 TypeofMode typeof_mode) { in LdaGlobal() argument
200 lazy_name, typeof_mode, &exit_point); in LdaGlobal()
425 TypeofMode typeof_mode = in LookupGlobalSlot() local
430 LdaGlobal(kSlotOperandIndex, kNameOperandIndex, typeof_mode); in LookupGlobalSlot()
/third_party/node/deps/v8/src/compiler/
Djs-operator.cc335 lhs.typeof_mode() == rhs.typeof_mode(); in operator ==()
347 static_cast<int>(p.typeof_mode())); in hash_value()
353 << static_cast<int>(p.typeof_mode()); in operator <<()
1169 TypeofMode typeof_mode) { in LoadGlobal() argument
1172 LoadGlobalParameters parameters(name, feedback, typeof_mode); in LoadGlobal()
Dbytecode-graph-builder.cc224 TypeofMode typeof_mode);
233 void BuildLdaLookupSlot(TypeofMode typeof_mode);
234 void BuildLdaLookupContextSlot(TypeofMode typeof_mode);
235 void BuildLdaLookupGlobalSlot(TypeofMode typeof_mode);
1536 TypeofMode typeof_mode) { in BuildLoadGlobal() argument
1539 const Operator* op = javascript()->LoadGlobal(name, feedback, typeof_mode); in BuildLoadGlobal()
1701 void BytecodeGraphBuilder::BuildLdaLookupSlot(TypeofMode typeof_mode) { in BuildLdaLookupSlot() argument
1705 javascript()->CallRuntime(typeof_mode == TypeofMode::kNotInside in BuildLdaLookupSlot()
1831 void BytecodeGraphBuilder::BuildLdaLookupContextSlot(TypeofMode typeof_mode) { in BuildLdaLookupContextSlot() argument
1857 javascript()->CallRuntime(typeof_mode == TypeofMode::kNotInside in BuildLdaLookupContextSlot()
[all …]
Djs-operator.h479 TypeofMode typeof_mode) in LoadGlobalParameters() argument
480 : name_(name), feedback_(feedback), typeof_mode_(typeof_mode) {} in LoadGlobalParameters()
483 TypeofMode typeof_mode() const { return typeof_mode_; } in typeof_mode() function
1049 TypeofMode typeof_mode = TypeofMode::kNotInside); in NON_EXPORTED_BASE()
Djs-generic-lowering.cc366 Callable callable = CodeFactory::LoadGlobalIC(isolate(), p.typeof_mode()); in LowerJSLoadGlobal()
373 CodeFactory::LoadGlobalICInOptimizedCode(isolate(), p.typeof_mode()); in LowerJSLoadGlobal()
/third_party/node/deps/v8/src/objects/
Dfeedback-vector.h392 FeedbackSlot AddLoadGlobalICSlot(TypeofMode typeof_mode) { in AddLoadGlobalICSlot() argument
393 return AddSlot(typeof_mode == TypeofMode::kInside in AddLoadGlobalICSlot()