diff options
author | James Y Knight <jyknight@google.com> | 2019-01-10 16:07:20 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2019-01-10 16:07:20 +0000 |
commit | 62df5eed16a07c4dd183c71d69d6858b5fa19652 (patch) | |
tree | e9d9c43424b364b6ed2ee4524e26e16ab34e7047 /llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | |
parent | 20c7844f50a2f2c555bfc6d9b3d2376a6f154511 (diff) | |
download | llvm-62df5eed16a07c4dd183c71d69d6858b5fa19652.zip llvm-62df5eed16a07c4dd183c71d69d6858b5fa19652.tar.gz llvm-62df5eed16a07c4dd183c71d69d6858b5fa19652.tar.bz2 |
[opaque pointer types] Remove some calls to generic Type subtype accessors.
That is, remove many of the calls to Type::getNumContainedTypes(),
Type::subtypes(), and Type::getContainedType(N).
I'm not intending to remove these accessors -- they are
useful/necessary in some cases. However, removing the pointee type
from pointers would potentially break some uses, and reducing the
number of calls makes it easier to audit.
llvm-svn: 350835
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index 044d9b7..334fcac 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp @@ -103,8 +103,9 @@ static ExFunc lookupFunction(const Function *F) { // composite function name should be. std::string ExtName = "lle_"; FunctionType *FT = F->getFunctionType(); - for (unsigned i = 0, e = FT->getNumContainedTypes(); i != e; ++i) - ExtName += getTypeID(FT->getContainedType(i)); + ExtName += getTypeID(FT->getReturnType()); + for (Type *T : FT->params()) + ExtName += getTypeID(T); ExtName += ("_" + F->getName()).str(); sys::ScopedLock Writer(*FunctionsLock); |