Home
last modified time | relevance | path

Searched refs:ByteSize (Results 1 – 8 of 8) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp143 const size_t ByteSize = 1 << i; in initializeCallbacks() local
144 const size_t BitSize = ByteSize * 8; in initializeCallbacks()
145 SmallString<32> ReadName("__tsan_read" + itostr(ByteSize)); in initializeCallbacks()
149 SmallString<32> WriteName("__tsan_write" + itostr(ByteSize)); in initializeCallbacks()
478 const size_t ByteSize = 1 << Idx; in instrumentAtomic() local
479 const size_t BitSize = ByteSize * 8; in instrumentAtomic()
492 const size_t ByteSize = 1 << Idx; in instrumentAtomic() local
493 const size_t BitSize = ByteSize * 8; in instrumentAtomic()
509 const size_t ByteSize = 1 << Idx; in instrumentAtomic() local
510 const size_t BitSize = ByteSize * 8; in instrumentAtomic()
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DConstantFold.cpp200 unsigned ByteSize) { in ExtractConstantBytes() argument
205 assert(ByteSize && "Must be accessing some piece"); in ExtractConstantBytes()
206 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
207 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
214 V = V.trunc(ByteSize*8); in ExtractConstantBytes()
226 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize); in ExtractConstantBytes()
235 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize); in ExtractConstantBytes()
241 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize); in ExtractConstantBytes()
249 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize); in ExtractConstantBytes()
267 ByteSize*8)); in ExtractConstantBytes()
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp65 unsigned ByteSize = SizeInBits / SizeOfByte; in AddOpPiece() local
66 EmitUnsigned(ByteSize); in AddOpPiece()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h374 SDValue get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG);
H A DPPCISelLowering.cpp1121 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { in get_VSPLTI_elt() argument
1129 if (EltSize < ByteSize) { in get_VSPLTI_elt()
1130 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval. in get_VSPLTI_elt()
1203 if (ValSizeInBytes < ByteSize) return SDValue(); in get_VSPLTI_elt()
1208 while (ValSizeInBytes > ByteSize) { in get_VSPLTI_elt()
1218 int MaskVal = SignExtend32(Value, ByteSize * 8); in get_VSPLTI_elt()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1763 unsigned ByteSize = VT.getStoreSize(); in CreateStackTemporary() local
1768 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false); in CreateStackTemporary()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6307 const uint64_t ByteSize = TLI.getDataLayout()->getTypeAllocSize(RetTy); in LowerFSINCOS() local
6309 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false); in LowerFSINCOS()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp13761 unsigned ByteSize = SrcVT.getSizeInBits()/8; in BuildFILD() local
13770 MachineMemOperand::MOLoad, ByteSize, ByteSize); in BuildFILD()