Home
last modified time | relevance | path

Searched refs:ToNumeric (Results 1 – 22 of 22) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dtyper.cc211 static Type ToNumeric(Type, Typer*);
392 lhs = ToNumeric(lhs, t); in BinaryNumberOpTyper()
393 rhs = ToNumeric(rhs, t); in BinaryNumberOpTyper()
433 type = ToNumeric(type, t); in BitwiseNot()
441 type = ToNumeric(type, t); in Decrement()
449 type = ToNumeric(type, t); in Increment()
457 type = ToNumeric(type, t); in Negate()
531 Type Typer::Visitor::ToNumeric(Type type, Typer* t) { in ToNumeric() function in v8::internal::compiler::Typer::Visitor
532 return t->operation_typer_.ToNumeric(type); in ToNumeric()
1074 lhs = ToNumeric(lhs, t); in JSCompareTyper()
[all …]
Doperation-typer.h38 Type ToNumeric(Type type);
Djs-operator.cc744 V(ToNumeric, Operator::kNoProperties, 1, 1) \
Djs-generic-lowering.cc69 REPLACE_STUB_CALL(ToNumeric) in REPLACE_STUB_CALL()
Doperation-typer.cc314 Type OperationTyper::ToNumeric(Type type) { in ToNumeric() function in v8::internal::compiler::OperationTyper
Djs-operator.h939 const Operator* ToNumeric(); in NON_EXPORTED_BASE()
Dbytecode-graph-builder.cc3411 node = NewNode(javascript()->ToNumeric(), object); in VisitToNumeric()
/third_party/node/deps/v8/src/builtins/
Dconstructor.tq140 // a. Let prim be ? ToNumeric(value).
Dconversion.tq30 transitioning builtin ToNumeric(implicit context: Context)(input: JSAny):
Dbuiltins-intl.cc95 Object::ToNumeric(isolate, value)); in BUILTIN()
516 Object::ToNumeric(isolate, value)); in BUILTIN()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-array-builder.h416 BytecodeArrayBuilder& ToNumeric(int feedback_slot);
Dbytecodes.h297 V(ToNumeric, ImplicitRegisterUse::kReadWriteAccumulator, OperandType::kIdx) \
Dbytecode-array-builder.cc1090 BytecodeArrayBuilder& BytecodeArrayBuilder::ToNumeric(int feedback_slot) { in ToNumeric() function in v8::internal::interpreter::BytecodeArrayBuilder
Dinterpreter-generator.cc1194 IGNITION_HANDLER(ToNumeric, InterpreterAssembler) { in IGNITION_HANDLER() argument
Dbytecode-generator.cc6020 ->ToNumeric(feedback_index(count_slot)) in VisitCountOperation()
/third_party/node/deps/v8/src/maglev/
Dmaglev-graph-builder.cc714 MAGLEV_UNIMPLEMENTED_BYTECODE(ToNumeric) in MAGLEV_UNIMPLEMENTED_BYTECODE()
/third_party/node/deps/v8/src/objects/
Dobjects.h432 V8_WARN_UNUSED_RESULT static inline MaybeHandle<Object> ToNumeric(
Dobjects-inl.h594 MaybeHandle<Object> Object::ToNumeric(Isolate* isolate, Handle<Object> input) { in ToNumeric() function
Dintl-objects.cc1466 Object::ToNumeric(isolate, num), String); in NumberToLocaleString()
Dobjects.cc737 if (!Object::ToNumeric(isolate, x).ToHandle(&x) || in Compare()
738 !Object::ToNumeric(isolate, y).ToHandle(&y)) { in Compare()
/third_party/node/deps/v8/src/runtime/
Druntime.h351 F(ToNumeric, 1, 1) \
Druntime-object.cc1420 RETURN_RESULT_OR_FAILURE(isolate, Object::ToNumeric(isolate, input)); in RUNTIME_FUNCTION()