Searched refs:UnalignedLoad (Results 1 – 10 of 10) 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 | 148 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));
|
D | machine-operator.cc | 490 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
|
D | graph-assembler.cc | 175 : machine()->UnalignedLoad(rep); in LoadUnaligned()
|
D | machine-operator.h | 597 const Operator* UnalignedLoad(LoadRepresentation rep); in NON_EXPORTED_BASE()
|
D | opcodes.h | 650 V(UnalignedLoad) \
|
D | int64-lowering.cc | 193 load_op = machine()->UnalignedLoad(MachineType::Int32()); in LowerNode()
|
D | simd-scalar-lowering.cc | 365 load_op = machine()->UnalignedLoad(MachineTypeFrom(type)); in LowerLoadOp()
|
D | wasm-compiler.cc | 3137 return mcgraph()->machine()->UnalignedLoad(mach_type); in GetSafeLoadOperator() 3206 load = graph()->NewNode(mcgraph()->machine()->UnalignedLoad(memtype), in LoadMem()
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 3613 TEST(MemorySanitizer, UnalignedLoad) { in TEST() argument
|