/external/v8/src/compiler/ |
D | machine-operator.h | 54 class StoreRepresentation final { 56 StoreRepresentation(MachineRepresentation representation, in StoreRepresentation() function 69 V8_EXPORT_PRIVATE bool operator==(StoreRepresentation, StoreRepresentation); 70 bool operator!=(StoreRepresentation, StoreRepresentation); 72 size_t hash_value(StoreRepresentation); 74 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, StoreRepresentation); 76 V8_EXPORT_PRIVATE StoreRepresentation const& StoreRepresentationOf( 593 const Operator* Store(StoreRepresentation rep); in NON_EXPORTED_BASE()
|
D | machine-operator.cc | 15 bool operator==(StoreRepresentation lhs, StoreRepresentation rhs) { in operator ==() 21 bool operator!=(StoreRepresentation lhs, StoreRepresentation rhs) { in operator !=() 26 size_t hash_value(StoreRepresentation rep) { in hash_value() 31 std::ostream& operator<<(std::ostream& os, StoreRepresentation rep) { in operator <<() 49 StoreRepresentation const& StoreRepresentationOf(Operator const* op) { in StoreRepresentationOf() 52 return OpParameter<StoreRepresentation>(op); in StoreRepresentationOf() 525 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \ 527 : Operator1<StoreRepresentation>( \ 531 StoreRepresentation(MachineRepresentation::Type, \ 564 : public Operator1<StoreRepresentation> { \ [all …]
|
D | memory-optimizer.cc | 199 __ Store(StoreRepresentation(MachineType::PointerRepresentation(), in VisitAllocateRaw() 255 __ Store(StoreRepresentation(MachineType::PointerRepresentation(), in VisitAllocateRaw() 285 __ Store(StoreRepresentation(MachineType::PointerRepresentation(), in VisitAllocateRaw() 399 node, machine()->Store(StoreRepresentation( in VisitStoreElement() 414 node, machine()->Store(StoreRepresentation( in VisitStoreField()
|
D | graph-assembler.cc | 145 Node* GraphAssembler::Store(StoreRepresentation rep, Node* object, Node* offset, in Store() 163 ? machine()->Store(StoreRepresentation(rep, kNoWriteBarrier)) in StoreUnaligned()
|
D | basic-block-instrumentor.cc | 85 graph->NewNode(machine.Store(StoreRepresentation( in Instrument()
|
D | int64-lowering.cc | 244 store_op = machine()->Store(StoreRepresentation( in LowerNode() 614 StoreRepresentation(MachineRepresentation::kWord32, in LowerNode() 623 StoreRepresentation(MachineRepresentation::kWord32, in LowerNode() 648 StoreRepresentation(MachineRepresentation::kFloat64, in LowerNode()
|
D | wasm-compiler.cc | 1744 StoreRepresentation(input_type, kNoWriteBarrier)); in BuildBitCountingCall() 1869 StoreRepresentation(type.representation(), kNoWriteBarrier)); in BuildCFuncInstruction() 1923 StoreRepresentation(parameter_representation, kNoWriteBarrier)); in BuildIntToFloatConversionInstruction() 1970 StoreRepresentation(float_ty.representation(), kNoWriteBarrier)); in BuildCcallConvertFloat() 2477 StoreRepresentation(MachineRepresentation::kWord64, kNoWriteBarrier)); in BuildDiv64Call() 3028 StoreRepresentation(mem_type.representation(), kNoWriteBarrier)); in SetGlobal() 3145 StoreRepresentation store_rep(rep, WriteBarrierKind::kNoWriteBarrier); in GetSafeStoreOperator() 3164 mcgraph()->machine()->Store(StoreRepresentation(rep, kNoWriteBarrier)), in TraceMemoryOperation() 3258 StoreRepresentation rep(mem_rep, kNoWriteBarrier); in StoreMem() 3373 const Operator* store_op = mcgraph()->machine()->Store(StoreRepresentation( in BuildAsmjsStoreMem() [all …]
|
D | graph-assembler.h | 219 Node* Store(StoreRepresentation rep, Node* object, Node* offset, Node* value);
|
D | raw-machine-assembler.h | 142 return AddNode(machine()->Store(StoreRepresentation(rep, write_barrier)), in Store() 164 return AddNode(machine()->Store(StoreRepresentation( in UnalignedStore()
|
D | effect-control-linearizer.cc | 2651 StoreRepresentation rep(MachineRepresentation::kFloat64, kNoWriteBarrier); in LowerNewDoubleElements() 2699 StoreRepresentation rep(MachineRepresentation::kTagged, kNoWriteBarrier); in LowerNewSmiOrObjectElements() 3042 StoreRepresentation(MachineRepresentation::kWord8, kNoWriteBarrier), in LowerStringFromSingleCharCode() 3065 StoreRepresentation(MachineRepresentation::kWord16, kNoWriteBarrier), in LowerStringFromSingleCharCode() 3164 StoreRepresentation(MachineRepresentation::kWord8, kNoWriteBarrier), in LowerStringFromSingleCodePoint() 3188 StoreRepresentation(MachineRepresentation::kWord16, kNoWriteBarrier), in LowerStringFromSingleCodePoint() 3234 StoreRepresentation(MachineRepresentation::kWord32, kNoWriteBarrier), in LowerStringFromSingleCodePoint()
|
D | simd-scalar-lowering.cc | 417 store_op = machine()->Store(StoreRepresentation( in LowerStoreOp() 673 StoreRepresentation(MachineRepresentation::kFloat64, kNoWriteBarrier)); in BuildF64Trunc()
|
/external/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 252 ArchOpcode GetStoreOpcode(StoreRepresentation store_rep) { in GetStoreOpcode() 337 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore() 392 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitProtectedStore()
|
/external/v8/src/ppc/ |
D | macro-assembler-ppc.h | 766 void StoreRepresentation(Register src, const MemOperand& mem,
|
D | macro-assembler-ppc.cc | 2742 void MacroAssembler::StoreRepresentation(Register src, const MemOperand& mem, in StoreRepresentation() function in v8::internal::MacroAssembler
|
/external/v8/src/s390/ |
D | macro-assembler-s390.h | 1304 void StoreRepresentation(Register src, const MemOperand& mem,
|
D | macro-assembler-s390.cc | 2034 void MacroAssembler::StoreRepresentation(Register src, const MemOperand& mem, in StoreRepresentation() function in v8::internal::MacroAssembler
|
/external/v8/src/compiler/ppc/ |
D | instruction-selector-ppc.cc | 262 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore()
|
/external/v8/src/compiler/mips/ |
D | instruction-selector-mips.cc | 314 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore()
|
/external/v8/src/compiler/s390/ |
D | instruction-selector-s390.cc | 724 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore()
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 338 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore()
|
/external/v8/src/compiler/mips64/ |
D | instruction-selector-mips64.cc | 418 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore()
|
/external/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 519 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore()
|
/external/v8/src/compiler/arm64/ |
D | instruction-selector-arm64.cc | 666 StoreRepresentation store_rep = StoreRepresentationOf(node->op()); in VisitStore()
|