Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dtyper.cc269 static Type ToNumeric(Type, Typer*);
402 lhs = ToNumeric(lhs, t); in BinaryNumberOpTyper()
403 rhs = ToNumeric(rhs, t); in BinaryNumberOpTyper()
439 type = ToNumeric(type, t); in BitwiseNot()
447 type = ToNumeric(type, t); in Decrement()
455 type = ToNumeric(type, t); in Increment()
463 type = ToNumeric(type, t); in Negate()
538 Type Typer::Visitor::ToNumeric(Type type, Typer* t) { in ToNumeric() function in v8::internal::compiler::Typer::Visitor
539 return t->operation_typer_.ToNumeric(type); in ToNumeric()
967 lhs = ToNumeric(lhs, t); in JSCompareTyper()
[all …]
Doperation-typer.h38 Type ToNumeric(Type type);
Djs-operator.h711 const Operator* ToNumeric(); in NON_EXPORTED_BASE()
Djs-generic-lowering.cc86 REPLACE_STUB_CALL(ToNumeric) in REPLACE_STUB_CALL()
Djs-operator.cc617 V(ToNumeric, Operator::kNoProperties, 1, 1) \
Doperation-typer.cc319 Type OperationTyper::ToNumeric(Type type) { in ToNumeric() function in v8::internal::compiler::OperationTyper
Dbytecode-graph-builder.cc2597 node = NewNode(javascript()->ToNumeric(), object); in VisitToNumeric()
/external/v8/src/builtins/
Dbuiltins-conversion-gen.cc128 TF_BUILTIN(ToNumeric, CodeStubAssembler) { in TF_BUILTIN() argument
Dbuiltins-definitions.h194 TFC(ToNumeric, TypeConversion, 1) \
/external/v8/src/interpreter/
Dbytecode-array-builder.h383 BytecodeArrayBuilder& ToNumeric(int feedback_slot);
Dbytecodes.h241 V(ToNumeric, AccumulatorUse::kReadWrite, OperandType::kIdx) \
Dbytecode-array-builder.cc1032 BytecodeArrayBuilder& BytecodeArrayBuilder::ToNumeric(int feedback_slot) { in ToNumeric() function in v8::internal::interpreter::BytecodeArrayBuilder
Dinterpreter-generator.cc1291 IGNITION_HANDLER(ToNumeric, InterpreterAssembler) { in IGNITION_HANDLER() argument
Dbytecode-generator.cc4018 ->ToNumeric(feedback_index(count_slot)) in VisitCountOperation()
/external/v8/src/runtime/
Druntime.h360 F(ToNumeric, 1, 1) \
Druntime-object.cc1144 RETURN_RESULT_OR_FAILURE(isolate, Object::ToNumeric(isolate, input)); in RUNTIME_FUNCTION()
/external/v8/src/
Dobjects-inl.h678 MaybeHandle<Object> Object::ToNumeric(Isolate* isolate, Handle<Object> input) { in ToNumeric() function
Dobjects.h1248 V8_WARN_UNUSED_RESULT static inline MaybeHandle<Object> ToNumeric(
Dobjects.cc582 if (!Object::ToNumeric(isolate, x).ToHandle(&x) || in Compare()
583 !Object::ToNumeric(isolate, y).ToHandle(&y)) { in Compare()