OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ASTCallbackVH
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Analysis/
AliasSetTracker.h
283
class
ASTCallbackVH
: public CallbackVH {
288
ASTCallbackVH
(Value *V, AliasSetTracker *AST = 0);
289
ASTCallbackVH
&operator=(Value *V);
298
typedef DenseMap<
ASTCallbackVH
, AliasSet::PointerRec*,
410
AliasSet::PointerRec *&Entry = PointerMap[
ASTCallbackVH
(V, this)];
/external/llvm/lib/Analysis/
AliasSetTracker.cpp
599
//
ASTCallbackVH
Class Implementation
602
void AliasSetTracker::
ASTCallbackVH
::deleted() {
603
assert(AST && "
ASTCallbackVH
called with a null AliasSetTracker!");
608
void AliasSetTracker::
ASTCallbackVH
::allUsesReplacedWith(Value *V) {
612
AliasSetTracker::
ASTCallbackVH
::
ASTCallbackVH
(Value *V, AliasSetTracker *ast)
615
AliasSetTracker::
ASTCallbackVH
&
616
AliasSetTracker::
ASTCallbackVH
::operator=(Value *V) {
617
return *this =
ASTCallbackVH
(V, AST);
Completed in 51 milliseconds