Searched refs:ConstStr (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/IR/ |
D | InlineAsm.cpp | 247 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) { in Verify() argument 250 ConstraintInfoVector Constraints = ParseConstraints(ConstStr); in Verify() 253 if (Constraints.empty() && !ConstStr.empty()) return false; in Verify()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | InlineAsm.cpp | 245 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) { in Verify() argument 248 ConstraintInfoVector Constraints = ParseConstraints(ConstStr); in Verify() 251 if (Constraints.empty() && !ConstStr.empty()) return false; in Verify()
|
/external/clang/lib/CodeGen/ |
D | CGCUDANV.cpp | 61 auto ConstStr = CGM.GetAddrOfConstantCString(Str, Name.c_str()); in makeConstantString() local 62 return llvm::ConstantExpr::getGetElementPtr(ConstStr.getElementType(), in makeConstantString() 63 ConstStr.getPointer(), Zeros); in makeConstantString()
|
D | CGObjCGNU.cpp | 180 auto *ConstStr = TheModule.getGlobalVariable(name); in ExportUniqueString() local 181 if (!ConstStr) { in ExportUniqueString() 183 ConstStr = new llvm::GlobalVariable(TheModule, value->getType(), true, in ExportUniqueString() 186 return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType(), in ExportUniqueString() 187 ConstStr, Zeros); in ExportUniqueString()
|