Home
last modified time | relevance | path

Searched refs:UnalignedLoad (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsInstrInfo.td217 class UnalignedLoad<PatFrag Node> : PatFrag<(ops node:$ptr), (Node node:$ptr), [{
250 def sextloadi16_u : UnalignedLoad<sextloadi16>;
251 def zextloadi16_u : UnalignedLoad<zextloadi16>;
252 def extloadi16_u : UnalignedLoad<extloadi16>;
253 def load_u : UnalignedLoad<load>;
254 def sextloadi32_u : UnalignedLoad<sextloadi32>;
255 def zextloadi32_u : UnalignedLoad<zextloadi32>;
256 def extloadi32_u : UnalignedLoad<extloadi32>;
/external/v8/src/compiler/
Draw-machine-assembler.h148 Node* UnalignedLoad(MachineType type, Node* base) { in UnalignedLoad() function
149 return UnalignedLoad(type, base, IntPtrConstant(0)); in UnalignedLoad()
151 Node* UnalignedLoad(MachineType type, Node* base, Node* index) { in UnalignedLoad() function
155 return AddNode(machine()->UnalignedLoad(type), base, index); in UnalignedLoad()
757 return UnalignedLoad(rep, PointerConstant(address), Int32Constant(offset));
Dmachine-operator.cc490 struct UnalignedLoad##Type##Operator final \
492 UnalignedLoad##Type##Operator() \
508 UnalignedLoad##Type##Operator kUnalignedLoad##Type; \
865 const Operator* MachineOperatorBuilder::UnalignedLoad(LoadRepresentation rep) { in UnalignedLoad() function in v8::internal::compiler::MachineOperatorBuilder
Dgraph-assembler.cc175 : machine()->UnalignedLoad(rep); in LoadUnaligned()
Dmachine-operator.h597 const Operator* UnalignedLoad(LoadRepresentation rep); in NON_EXPORTED_BASE()
Dopcodes.h650 V(UnalignedLoad) \
Dint64-lowering.cc193 load_op = machine()->UnalignedLoad(MachineType::Int32()); in LowerNode()
Dsimd-scalar-lowering.cc365 load_op = machine()->UnalignedLoad(MachineTypeFrom(type)); in LowerLoadOp()
Dwasm-compiler.cc3137 return mcgraph()->machine()->UnalignedLoad(mach_type); in GetSafeLoadOperator()
3206 load = graph()->NewNode(mcgraph()->machine()->UnalignedLoad(memtype), in LoadMem()
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc3613 TEST(MemorySanitizer, UnalignedLoad) { in TEST() argument