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

  /external/llvm/lib/IR/
InlineAsm.cpp 247 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) {
250 ConstraintInfoVector Constraints = ParseConstraints(ConstStr);
253 if (Constraints.empty() && !ConstStr.empty()) return false;
  /external/swiftshader/third_party/LLVM/lib/VMCore/
InlineAsm.cpp 245 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) {
248 ConstraintInfoVector Constraints = ParseConstraints(ConstStr);
251 if (Constraints.empty() && !ConstStr.empty()) return false;
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 61 auto ConstStr = CGM.GetAddrOfConstantCString(Str, Name.c_str());
62 return llvm::ConstantExpr::getGetElementPtr(ConstStr.getElementType(),
63 ConstStr.getPointer(), Zeros);
CGObjCGNU.cpp 180 auto *ConstStr = TheModule.getGlobalVariable(name);
181 if (!ConstStr) {
183 ConstStr = new llvm::GlobalVariable(TheModule, value->getType(), true,
186 return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType(),
187 ConstStr, Zeros);
    [all...]

Completed in 83 milliseconds