Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp3036 unsigned LoadBytes) { in LoadIntFromMemory() argument
3037 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory()
3044 memcpy(Dst, Src, LoadBytes); in LoadIntFromMemory()
3050 while (LoadBytes > sizeof(uint64_t)) { in LoadIntFromMemory()
3051 LoadBytes -= sizeof(uint64_t); in LoadIntFromMemory()
3053 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); in LoadIntFromMemory()
3057 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); in LoadIntFromMemory()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h2312 void LoadIntFromMemory(APInt &IntVal, const uint8_t *Src, unsigned LoadBytes);
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp13599 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; in shouldReduceLoadWidth() local
13600 if (ShiftAmount == Log2_32(LoadBytes)) in shouldReduceLoadWidth()