Searched refs:UnalignedLoad (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsInstrInfo.td | 217 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/ |
D | raw-machine-assembler.h | 142 Node* UnalignedLoad(MachineType rep, Node* base) { in UnalignedLoad() function 143 return UnalignedLoad(rep, base, IntPtrConstant(0)); in UnalignedLoad() 145 Node* UnalignedLoad(MachineType rep, Node* base, Node* index) { in UnalignedLoad() function 149 return AddNode(machine()->UnalignedLoad(rep), base, index); in UnalignedLoad() 707 return UnalignedLoad(rep, PointerConstant(address), Int32Constant(offset));
|
D | machine-operator.cc | 466 struct UnalignedLoad##Type##Operator final \ 468 UnalignedLoad##Type##Operator() \ 491 UnalignedLoad##Type##Operator kUnalignedLoad##Type; \ 649 const Operator* MachineOperatorBuilder::UnalignedLoad( in UnalignedLoad() function in v8::internal::compiler::MachineOperatorBuilder
|
D | simd-scalar-lowering.cc | 295 load_op = machine()->UnalignedLoad(MachineType::Int32()); in LowerNode() 297 load_op = machine()->UnalignedLoad(MachineType::Float32()); in LowerNode()
|
D | machine-operator.h | 593 const Operator* UnalignedLoad(UnalignedLoadRepresentation rep); in NON_EXPORTED_BASE()
|
D | opcodes.h | 540 V(UnalignedLoad) \
|
D | int64-lowering.cc | 164 load_op = machine()->UnalignedLoad(MachineType::Int32()); in LowerNode()
|
D | wasm-compiler.cc | 3223 load = graph()->NewNode(jsgraph()->machine()->UnalignedLoad(memtype), in LoadMem()
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 3613 TEST(MemorySanitizer, UnalignedLoad) { in TEST() argument
|