Searched refs:LoadBytes (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp744 unsigned LoadBytes = WideBytes; local
746 if (RemainingBytes >= LoadBytes) {
754 while (RemainingBytes < LoadBytes) {
755 LoadBytes >>= 1; // Reduce the load size by half.
756 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3);
765 RemainingBytes -= LoadBytes;
766 Offset += LoadBytes;
768 BasePTR = DAG.getObjectPtrOffset(dl, BasePTR, LoadBytes);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp3089 /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
3091 void llvm::LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) {
3092 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
3099 memcpy(Dst, Src, LoadBytes);
3105 while (LoadBytes > sizeof(uint64_t)) {
3106 LoadBytes -= sizeof(uint64_t);
3108 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
3112 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1074 const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); local
1080 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h2284 /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
2286 void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp8831 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; local
8832 if (ShiftAmount == Log2_32(LoadBytes))

Completed in 147 milliseconds