Searched refs:LoadBytes (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorOps.cpp | 744 unsigned LoadBytes = WideBytes; in ExpandLoad() local 746 if (RemainingBytes >= LoadBytes) { in ExpandLoad() 754 while (RemainingBytes < LoadBytes) { in ExpandLoad() 755 LoadBytes >>= 1; // Reduce the load size by half. in ExpandLoad() 756 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3); in ExpandLoad() 765 RemainingBytes -= LoadBytes; in ExpandLoad() 766 Offset += LoadBytes; in ExpandLoad() 768 BasePTR = DAG.getObjectPtrOffset(dl, BasePTR, LoadBytes); in ExpandLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 3091 void llvm::LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) { in LoadIntFromMemory() argument 3092 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory() 3099 memcpy(Dst, Src, LoadBytes); in LoadIntFromMemory() 3105 while (LoadBytes > sizeof(uint64_t)) { in LoadIntFromMemory() 3106 LoadBytes -= sizeof(uint64_t); in LoadIntFromMemory() 3108 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); in LoadIntFromMemory() 3112 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); in LoadIntFromMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 1074 const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); in LoadValueFromMemory() local 1080 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes); in LoadValueFromMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 2286 void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 8831 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; in shouldReduceLoadWidth() local 8832 if (ShiftAmount == Log2_32(LoadBytes)) in shouldReduceLoadWidth()
|