Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPInt.cpp3040 unsigned LoadBytes) { in LoadIntFromMemory() argument
3041 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory()
3048 memcpy(Dst, Src, LoadBytes); in LoadIntFromMemory()
3054 while (LoadBytes > sizeof(uint64_t)) { in LoadIntFromMemory()
3055 LoadBytes -= sizeof(uint64_t); in LoadIntFromMemory()
3057 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); in LoadIntFromMemory()
3061 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); in LoadIntFromMemory()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1071 const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); in LoadValueFromMemory() local
1077 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes); in LoadValueFromMemory()
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPInt.h2264 void LoadIntFromMemory(APInt &IntVal, const uint8_t *Src, unsigned LoadBytes);
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12556 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; in shouldReduceLoadWidth() local
12557 if (ShiftAmount == Log2_32(LoadBytes)) in shouldReduceLoadWidth()