HomeSort by relevance Sort by last modified time
    Searched refs:SrcStr (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 185 Value *SrcStr = CI->getArgOperand(0);
191 uint64_t Len = GetStringLength(SrcStr);
195 return emitMemChr(SrcStr, CI->getArgOperand(1), // include nul.
203 if (!getConstantStringInfo(SrcStr, Str)) {
205 return B.CreateGEP(B.getInt8Ty(), SrcStr, emitStrLen(SrcStr, B, DL, TLI),
219 return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strchr");
223 Value *SrcStr = CI->getArgOperand(0);
231 if (!getConstantStringInfo(SrcStr, Str)) {
234 return emitStrChr(SrcStr, '\0', B, TLI)
    [all...]
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 240 const char *SrcStr = "define void @foo() !attach !0 {\n"
253 std::unique_ptr<Module> Src = parseAssemblyString(SrcStr, Err, C);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Linker/
LinkModulesTest.cpp 240 const char *SrcStr = "define void @foo() !attach !0 {\n"
253 std::unique_ptr<Module> Src = parseAssemblyString(SrcStr, Err, C);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 242 Value *SrcStr = CI->getArgOperand(0);
251 uint64_t Len = GetStringLength(SrcStr);
255 return EmitMemChr(SrcStr, CI->getArgOperand(1), // include nul.
263 if (!GetConstantStringInfo(SrcStr, Str))
275 return B.CreateGEP(SrcStr, B.getInt64(I), "strchr");
292 Value *SrcStr = CI->getArgOperand(0);
300 if (!GetConstantStringInfo(SrcStr, Str)) {
303 return EmitStrChr(SrcStr, '\0', B, TD);
316 return B.CreateGEP(SrcStr, B.getInt64(I), "strrchr");
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 231 Value *SrcStr = CI->getArgOperand(0);
237 uint64_t Len = GetStringLength(SrcStr);
241 return emitMemChr(SrcStr, CI->getArgOperand(1), // include nul.
249 if (!getConstantStringInfo(SrcStr, Str)) {
251 return B.CreateGEP(B.getInt8Ty(), SrcStr, emitStrLen(SrcStr, B, DL, TLI),
265 return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strchr");
269 Value *SrcStr = CI->getArgOperand(0);
277 if (!getConstantStringInfo(SrcStr, Str)) {
280 return emitStrChr(SrcStr, '\0', B, TLI)
    [all...]

Completed in 508 milliseconds