Searched refs:NumTargets (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.cpp | 607 InstJumpTable::InstJumpTable(Cfg *Func, SizeT NumTargets, CfgNode *Default) in InstJumpTable() argument 609 Id(Func->getTarget()->makeNextJumpTableNumber()), NumTargets(NumTargets), in InstJumpTable() 611 Targets = Func->allocateArrayOf<CfgNode *>(NumTargets); in InstJumpTable() 612 for (SizeT I = 0; I < NumTargets; ++I) { in InstJumpTable() 619 for (SizeT I = 0; I < NumTargets; ++I) { in repointEdges() 629 JumpTableData::TargetList TargetList(NumTargets); in toJumpTableData() 630 for (SizeT i = 0; i < NumTargets; ++i) { in toJumpTableData() 1073 for (SizeT I = 0; I < NumTargets; ++I) in dump()
|
D | IceInst.h | 1059 static InstJumpTable *create(Cfg *Func, SizeT NumTargets, CfgNode *Default) { in create() argument 1061 InstJumpTable(Func, NumTargets, Default); in create() 1064 assert(TargetIndex < NumTargets); in addTarget() 1069 SizeT getNumTargets() const { return NumTargets; } in getNumTargets() 1071 assert(I < NumTargets); in getTarget() 1098 InstJumpTable(Cfg *Func, SizeT NumTargets, CfgNode *Default); 1105 const SizeT NumTargets; variable
|
/external/llvm/lib/ProfileData/ |
D | SampleProfReader.cpp | 637 uint32_t NumTargets; in readOneFunctionProfile() local 638 if (!GcovBuffer.readInt(NumTargets)) in readOneFunctionProfile() 667 for (uint32_t J = 0; J < NumTargets; J++) { in readOneFunctionProfile()
|