/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mc/ |
D | Disassembler.cpp | 114 unsigned ByteVal; in ByteArrayFromString() local 115 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString() 125 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
|
/external/llvm/tools/llvm-mc/ |
D | Disassembler.cpp | 114 unsigned ByteVal; in ByteArrayFromString() local 115 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString() 125 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 66 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument 68 uint64_t StoreVal = ByteVal; in memsetStore() 70 StoreVal |= ByteVal << (I * 8); in memsetStore() 94 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local 95 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset() 100 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset() 107 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 66 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument 68 uint64_t StoreVal = ByteVal; in memsetStore() 70 StoreVal |= ByteVal << (I * 8); in memsetStore() 95 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local 96 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset() 101 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset() 108 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
|
/external/swiftshader/third_party/LLVM/tools/llvm-mc/ |
D | Disassembler.cpp | 125 unsigned ByteVal; in ByteArrayFromString() local 126 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString() 135 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data())); in ByteArrayFromString()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 340 Value *ByteVal); 365 Value *StartPtr, Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY() 390 if (ByteVal != isBytewiseValue(NextStore->getOperand(0))) in INITIALIZE_PASS_DEPENDENCY() 403 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY() 457 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); in INITIALIZE_PASS_DEPENDENCY() 534 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0))) in processStore() local 536 ByteVal)) { in processStore() 795 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { in processMemCpy() local 797 Builder.CreateMemSet(M->getRawDest(), ByteVal, CopySize, in processMemCpy()
|
/external/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 337 Value *ByteVal); 365 Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY() 390 if (ByteVal != isBytewiseValue(NextStore->getOperand(0))) in INITIALIZE_PASS_DEPENDENCY() 403 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY() 455 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); in INITIALIZE_PASS_DEPENDENCY() 713 if (Value *ByteVal = isBytewiseValue(V)) { in processStore() local 715 ByteVal)) { in processStore() 730 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, in processStore() 1149 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { in processMemCpy() local 1151 Builder.CreateMemSet(M->getRawDest(), ByteVal, M->getLength(), in processMemCpy()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 391 Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY() 416 if (ByteVal != isBytewiseValue(NextStore->getOperand(0))) in INITIALIZE_PASS_DEPENDENCY() 429 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY() 480 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); in INITIALIZE_PASS_DEPENDENCY() 753 if (Value *ByteVal = isBytewiseValue(V)) { in processStore() local 755 ByteVal)) { in processStore() 770 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, in processStore() 1199 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { in processMemCpy() local 1201 Builder.CreateMemSet(M->getRawDest(), ByteVal, M->getLength(), in processMemCpy()
|
/external/llvm/include/llvm/Transforms/Scalar/ |
D | MemCpyOptimizer.h | 62 Value *ByteVal);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/ |
D | MemCpyOptimizer.h | 72 Value *ByteVal);
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 1044 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local 1049 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr() 1061 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local 1064 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 2776 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) { in SplatByte() argument 2777 APInt Val = APInt(NumBits, ByteVal); in SplatByte()
|
D | SelectionDAG.cpp | 3239 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) { in SplatByte() argument 3240 APInt Val = APInt(NumBits, ByteVal); in SplatByte()
|