Home
last modified time | relevance | path

Searched refs:LoadBytes (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp3055 unsigned LoadBytes) { in LoadIntFromMemory() argument
3056 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory()
3063 memcpy(Dst, Src, LoadBytes); in LoadIntFromMemory()
3069 while (LoadBytes > sizeof(uint64_t)) { in LoadIntFromMemory()
3070 LoadBytes -= sizeof(uint64_t); in LoadIntFromMemory()
3072 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); in LoadIntFromMemory()
3076 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); in LoadIntFromMemory()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1097 const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); in LoadValueFromMemory() local
1103 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes); in LoadValueFromMemory()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h2308 void LoadIntFromMemory(APInt &IntVal, const uint8_t *Src, unsigned LoadBytes);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp14687 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; in shouldReduceLoadWidth() local
14688 if (ShiftAmount == Log2_32(LoadBytes)) in shouldReduceLoadWidth()