Home
last modified time | relevance | path

Searched refs:LoadImmutable (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Ddecompression-optimizer.cc212 machine()->LoadImmutable(compressed_load_rep)); in ChangeLoad()
Draw-machine-assembler.h140 Node* LoadImmutable(MachineType type, Node* base) { in LoadImmutable() function
141 return LoadImmutable(type, base, IntPtrConstant(0)); in LoadImmutable()
143 Node* LoadImmutable(MachineType type, Node* base, Node* index) { in LoadImmutable() function
144 const Operator* op = machine()->LoadImmutable(type); in LoadImmutable()
Dmachine-operator.cc945 struct LoadImmutable##Type##Operator final \
947 LoadImmutable##Type##Operator() \
955 LoadImmutable##Type##Operator kLoadImmutable##Type;
1446 const Operator* MachineOperatorBuilder::LoadImmutable(LoadRepresentation rep) { in LoadImmutable() function in v8::internal::compiler::MachineOperatorBuilder
Dmachine-operator.h933 const Operator* LoadImmutable(LoadRepresentation rep); in NON_EXPORTED_BASE()
Dwasm-compiler.cc92 gasm_->LoadImmutable( \
107 : gasm_->LoadImmutable( \
278 Node* LoadImmutable(LoadRepresentation rep, Node* base, Node* offset) { in LoadImmutable() function in v8::internal::compiler::WasmGraphAssembler
279 return AddNode(graph()->NewNode(mcgraph()->machine()->LoadImmutable(rep), in LoadImmutable()
283 Node* LoadImmutable(LoadRepresentation rep, Node* base, int offset) { in LoadImmutable() function in v8::internal::compiler::WasmGraphAssembler
284 return LoadImmutable(rep, base, IntPtrConstant(offset)); in LoadImmutable()
3349 Node* internal_functions = gasm_->LoadImmutable( in CompareToInternalFunctionAtIndex()
3738 : gasm_->LoadImmutable(mem_type, base, offset); in GlobalGet()
5717 return gasm_->LoadImmutable( in RttCanon()
Dopcodes.h690 V(LoadImmutable) \
Dint64-lowering.cc261 machine()->LoadImmutable(MachineType::Int32())); in LowerNode()