/external/v8/src/compiler/ |
D | typer.cc | 269 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 …]
|
D | operation-typer.h | 38 Type ToNumeric(Type type);
|
D | js-operator.h | 711 const Operator* ToNumeric(); in NON_EXPORTED_BASE()
|
D | js-generic-lowering.cc | 86 REPLACE_STUB_CALL(ToNumeric) in REPLACE_STUB_CALL()
|
D | js-operator.cc | 617 V(ToNumeric, Operator::kNoProperties, 1, 1) \
|
D | operation-typer.cc | 319 Type OperationTyper::ToNumeric(Type type) { in ToNumeric() function in v8::internal::compiler::OperationTyper
|
D | bytecode-graph-builder.cc | 2597 node = NewNode(javascript()->ToNumeric(), object); in VisitToNumeric()
|
/external/v8/src/builtins/ |
D | builtins-conversion-gen.cc | 128 TF_BUILTIN(ToNumeric, CodeStubAssembler) { in TF_BUILTIN() argument
|
D | builtins-definitions.h | 194 TFC(ToNumeric, TypeConversion, 1) \
|
/external/v8/src/interpreter/ |
D | bytecode-array-builder.h | 383 BytecodeArrayBuilder& ToNumeric(int feedback_slot);
|
D | bytecodes.h | 241 V(ToNumeric, AccumulatorUse::kReadWrite, OperandType::kIdx) \
|
D | bytecode-array-builder.cc | 1032 BytecodeArrayBuilder& BytecodeArrayBuilder::ToNumeric(int feedback_slot) { in ToNumeric() function in v8::internal::interpreter::BytecodeArrayBuilder
|
D | interpreter-generator.cc | 1291 IGNITION_HANDLER(ToNumeric, InterpreterAssembler) { in IGNITION_HANDLER() argument
|
D | bytecode-generator.cc | 4018 ->ToNumeric(feedback_index(count_slot)) in VisitCountOperation()
|
/external/v8/src/runtime/ |
D | runtime.h | 360 F(ToNumeric, 1, 1) \
|
D | runtime-object.cc | 1144 RETURN_RESULT_OR_FAILURE(isolate, Object::ToNumeric(isolate, input)); in RUNTIME_FUNCTION()
|
/external/v8/src/ |
D | objects-inl.h | 678 MaybeHandle<Object> Object::ToNumeric(Isolate* isolate, Handle<Object> input) { in ToNumeric() function
|
D | objects.h | 1248 V8_WARN_UNUSED_RESULT static inline MaybeHandle<Object> ToNumeric(
|
D | objects.cc | 582 if (!Object::ToNumeric(isolate, x).ToHandle(&x) || in Compare() 583 !Object::ToNumeric(isolate, y).ToHandle(&y)) { in Compare()
|