diff options
author | Piotr Padlewski <prazek@google.com> | 2015-09-15 21:46:55 +0000 |
---|---|---|
committer | Piotr Padlewski <prazek@google.com> | 2015-09-15 21:46:55 +0000 |
commit | 4b1ac72cd47f11ec55239dfd2978d85fd8dfbaef (patch) | |
tree | adf2d1e5f704b886d2fe7a3f269c6cf509dc02d1 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 9d0ecf27a70106392780bc5daaa048d0532579fc (diff) | |
download | llvm-4b1ac72cd47f11ec55239dfd2978d85fd8dfbaef.zip llvm-4b1ac72cd47f11ec55239dfd2978d85fd8dfbaef.tar.gz llvm-4b1ac72cd47f11ec55239dfd2978d85fd8dfbaef.tar.bz2 |
Decorating vptr load & stores with !invariant.group
Adding !invariant.group to vptr load/stores for devirtualization purposes.
For more goto:
http://lists.llvm.org/pipermail/cfe-dev/2015-July/044227.html
http://reviews.llvm.org/D12026
llvm-svn: 247725
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 754e3d1..e7ae20f 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -658,9 +658,13 @@ public: /// is the same as the type. For struct-path aware TBAA, the tag /// is different from the type: base type, access type and offset. /// When ConvertTypeToTag is true, we create a tag based on the scalar type. - void DecorateInstruction(llvm::Instruction *Inst, - llvm::MDNode *TBAAInfo, - bool ConvertTypeToTag = true); + void DecorateInstructionWithTBAA(llvm::Instruction *Inst, + llvm::MDNode *TBAAInfo, + bool ConvertTypeToTag = true); + + /// Adds !invariant.barrier !tag to instruction + void DecorateInstructionWithInvariantGroup(llvm::Instruction *I, + const CXXRecordDecl *RD); /// Emit the given number of characters as a value of type size_t. llvm::ConstantInt *getSize(CharUnits numChars); |