HomeSort by relevance Sort by last modified time
    Searched defs:ID (Results 276 - 300 of 595) sorted by null

<<11121314151617181920>>

  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 118 /// stack object ID for the alloca (if the code generator is
124 /// addSafePoint - Notes the existence of a safe point. Num is the ID of the
172 static char ID;
LiveIntervalAnalysis.h 96 static char ID; // Pass identification, replacement for typeid
97 LiveIntervals() : MachineFunctionPass(ID) {
  /external/llvm/include/llvm/
PassManagers.h 410 static char ID;
412 : ModulePass(ID), PMDataManager() { }
  /external/llvm/include/llvm/Support/
GraphWriter.h 248 void emitSimpleNode(const void *ID, const std::string &Attr,
251 O << "\tNode" << ID << "[ ";
  /external/llvm/include/llvm/Target/
TargetData.h 128 : ImmutablePass(ID) {
143 ImmutablePass(ID),
317 static char ID; // Pass identification, replacement for typeid
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 626 static char ID; // Pass identification, replacement for typeid
627 AliasSetPrinter() : FunctionPass(ID) {
648 char AliasSetPrinter::ID = 0;
BranchProbabilityInfo.cpp 33 char BranchProbabilityInfo::ID = 0;
LoopDependenceAnalysis.cpp 57 char LoopDependenceAnalysis::ID = 0;
125 FoldingSetNodeID id; local
126 id.AddPointer(A);
127 id.AddPointer(B);
129 P = Pairs.FindNodeOrInsertPos(id, insertPos);
132 P = new (PairAllocator) DependencePair(id, A, B);
LoopInfo.cpp 42 char LoopInfo::ID = 0;
PathProfileInfo.cpp 38 PathProfileLoaderPass() : ModulePass(ID) { }
53 if (PI == &PathProfileInfo::ID)
62 static char ID;
86 char PathProfileLoaderPass::ID = 0;
95 char &llvm::PathProfileLoaderPassID = PathProfileLoaderPass::ID;
218 char llvm::PathProfileInfo::ID = 0;
408 static char ID; // Class identification, replacement for typeinfo
409 NoPathProfileInfo() : ImmutablePass(ID) {
418 if (PI == &PathProfileInfo::ID)
429 char NoPathProfileInfo::ID = 0
    [all...]
ProfileEstimatorPass.cpp 40 static char ID; // Class identification, replacement for typeinfo
42 : FunctionPass(ID), ExecCount(execcount) {
64 if (PI == &ProfileInfo::ID)
75 char ProfileEstimatorPass::ID = 0;
83 char &ProfileEstimatorPassID = ProfileEstimatorPass::ID;
ProfileVerifierPass.cpp 60 static char ID; // Class identification, replacement for typeinfo
62 explicit ProfileVerifierPassT () : FunctionPass(ID) {
66 explicit ProfileVerifierPassT (bool da) : FunctionPass(ID),
368 char ProfileVerifierPassT<FType, BType>::ID = 0;
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 46 static char ID;
48 : ModulePass(ID), PMDataManager() { }
103 char CGPassManager::ID = 0;
585 static char ID;
587 : CallGraphSCCPass(ID), Banner(B), Out(o) {}
603 char PrintCallGraphPass::ID = 0;
GlobalsModRef.cpp 92 static char ID;
93 GlobalsModRef() : ModulePass(ID) {
163 if (PI == &AliasAnalysis::ID)
188 char GlobalsModRef::ID = 0;
  /external/llvm/lib/AsmParser/
LLParser.cpp 548 return TokError("Metadata id is already used");
590 ValID ID;
591 if (ParseValID(ID)) return true;
592 if (ID.Kind != ValID::t_Constant)
594 Aliasee = ID.ConstantVal;
742 /// GetGlobalVal - Get a value with the specified name or ID, creating a
786 GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
793 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
799 I = ForwardRefValIDs.find(ID);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 35 /// ID - File identifier for source.
37 unsigned ID;
87 unsigned getID() const { return ID; }
  /external/llvm/lib/CodeGen/
GCStrategy.cpp 52 static char ID;
82 static char ID;
142 char LowerIntrinsics::ID = 0;
145 : FunctionPass(ID) {
336 char GCMachineCodeAnalysis::ID = 0;
337 char &llvm::GCMachineCodeAnalysisID = GCMachineCodeAnalysis::ID;
343 : MachineFunctionPass(ID) {}
MachineScheduler.cpp 68 static char ID; // Class identification, replacement for typeinfo
72 char MachineScheduler::ID = 0;
74 char &llvm::MachineSchedulerID = MachineScheduler::ID;
85 : MachineFunctionPass(ID) {
MachineSink.cpp 59 static char ID; // Pass identification
60 MachineSinking() : MachineFunctionPass(ID) {
104 char MachineSinking::ID = 0;
105 char &llvm::MachineSinkingID = MachineSinking::ID;
PHIElimination.cpp 47 static char ID; // Pass identification, replacement for typeid
48 PHIElimination() : MachineFunctionPass(ID) {
94 char PHIElimination::ID = 0;
95 char& llvm::PHIEliminationID = PHIElimination::ID;
PeepholeOptimizer.cpp 81 static char ID; // Pass identification
82 PeepholeOptimizer() : MachineFunctionPass(ID) {
111 char PeepholeOptimizer::ID = 0;
112 char &llvm::PeepholeOptimizerID = PeepholeOptimizer::ID;
StackSlotColoring.cpp 83 static char ID; // Pass identification
85 MachineFunctionPass(ID), ColorWithRegs(false), NextColor(-1) {
114 char StackSlotColoring::ID = 0;
115 char &llvm::StackSlotColoringID = StackSlotColoring::ID;
  /external/llvm/lib/Support/
FoldingSet.cpp 132 // AddNodeID - Adds the Bit data of another ID to *this.
133 void FoldingSetNodeID::AddNodeID(const FoldingSetNodeID &ID) {
134 Bits.append(ID.Bits.begin(), ID.Bits.end());
190 /// GetBucketFor - Hash the specified node ID and return the hash bucket for
191 /// the specified ID.
262 /// FindNodeOrInsertPos - Look up the node specified by ID. If it exists,
266 *FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
268 unsigned IDHash = ID.ComputeHash();
276 if (NodeEquals(NodeInBucket, ID, IDHash, TempID)
    [all...]
  /external/llvm/lib/Target/ARM/
MLxExpansionPass.cpp 40 static char ID;
41 MLxExpansion() : MachineFunctionPass(ID) {}
70 char MLxExpansion::ID = 0;
Thumb2ITBlockPass.cpp 30 static char ID;
31 Thumb2ITBlockPass() : MachineFunctionPass(ID) {}
50 char Thumb2ITBlockPass::ID = 0;

Completed in 1295 milliseconds

<<11121314151617181920>>