Searched defs:ConstantAddress (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
H A DAddress.h75 class ConstantAddress : public Address { class in namespace:clang::CodeGen
77 ConstantAddress(llvm::Constant *pointer, CharUnits alignment) function in class:clang::CodeGen::ConstantAddress
80 static ConstantAddress invalid() {
81 return ConstantAddress(nullptr, CharUnits());
88 ConstantAddress getBitCast(llvm::Type *ty) const {
89 return ConstantAddress(llvm::ConstantExpr::getBitCast(getPointer(), ty),
93 ConstantAddress getElementBitCast(llvm::Type *ty) const {
100 static ConstantAddress castImpl(Address addr) {
101 return ConstantAddress(llvm::cast<llvm::Constant>(addr.getPointer()),

Completed in 153 milliseconds