summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsISelLowering.h
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2014-03-26 12:52:28 +0000
committerRenato Golin <renato.golin@linaro.org>2014-03-26 12:52:28 +0000
commitc4b058f9e7145765783fb741ea280acc4fea1f94 (patch)
tree9bf30fddda52ba7983b841347023b07a10592147 /lib/Target/Mips/MipsISelLowering.h
parent159e7f40956437a2513f54e19b03772bd3a0e942 (diff)
downloadllvm-c4b058f9e7145765783fb741ea280acc4fea1f94.tar.gz
llvm-c4b058f9e7145765783fb741ea280acc4fea1f94.tar.bz2
llvm-c4b058f9e7145765783fb741ea280acc4fea1f94.tar.xz
Add @llvm.clear_cache builtin
Implementing the LLVM part of the call to __builtin___clear_cache which translates into an intrinsic @llvm.clear_cache and is lowered by each target, either to a call to __clear_cache or nothing at all incase the caches are unified. Updating LangRef and adding some tests for the implemented architectures. Other archs will have to implement the method in case this builtin has to be compiled for it, since the default behaviour is to bail unimplemented. A Clang patch is required for the builtin to be lowered into the llvm intrinsic. This will be done next. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsISelLowering.h')
-rw-r--r--lib/Target/Mips/MipsISelLowering.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/Mips/MipsISelLowering.h b/lib/Target/Mips/MipsISelLowering.h
index 27492a8046..b03cccfb58 100644
--- a/lib/Target/Mips/MipsISelLowering.h
+++ b/lib/Target/Mips/MipsISelLowering.h
@@ -583,6 +583,11 @@ namespace llvm {
bool MemcpyStrSrc,
MachineFunction &MF) const;
+ /// Clear cache library call
+ const char * getClearCacheBuiltinName() const {
+ return "__clear_cache";
+ }
+
/// isFPImmLegal - Returns true if the target can instruction select the
/// specified FP immediate natively. If false, the legalizer will
/// materialize the FP immediate as a load from a constant pool.