Home
last modified time | relevance | path

Searched defs:IT (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DStackLifetime.cpp36 const auto IT = AllocaNumbering.find(AI); in getLiveRange() local
245 for (auto IT : BlockLiveness) { in calculateLiveIntervals() local
300 for (auto IT : BlockLiveness) { in dumpBlockLiveness() local
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp62 const uint32_t IT = Data.getU32(&Offset); in decode() local
272 const uint32_t IT = Data.getU32(&Offset); in lookup() local
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackLayout.cpp34 for (auto &IT : ObjectOffsets) { in print() local
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dassembly.h154 #define IT(cond) it cond macro
159 #define IT(cond) macro
166 #define IT(cond) macro
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopCacheAnalysis.h215 auto IT = llvm::find_if(LoopCosts, [&L](const LoopCacheCostTy &LCC) { in getLoopCost() local
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSubtarget.cpp59 IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT), variable
H A DARMLowOverheadLoops.cpp557 MachineInstr *IT = RDA.getMIOperand(Dead, *MO); in INITIALIZE_PASS() local
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDirectedGraph.h244 iterator IT = findNode(N); in removeNode() local
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp679 for (auto IT : InitialTypes) { in getAcceptedCompletionTypes() local
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp2223 if (const auto *IT = dyn_cast<BitIntType>(CanonicalType)) in isSignedIntegerType() local
2225 if (const auto *IT = dyn_cast<DependentBitIntType>(CanonicalType)) in isSignedIntegerType() local
2239 if (const auto *IT = dyn_cast<BitIntType>(CanonicalType)) in isSignedIntegerOrEnumerationType() local
2241 if (const auto *IT = dyn_cast<DependentBitIntType>(CanonicalType)) in isSignedIntegerOrEnumerationType() local
2268 if (const auto *IT = dyn_cast<BitIntType>(CanonicalType)) in isUnsignedIntegerType() local
2270 if (const auto *IT = dyn_cast<DependentBitIntType>(CanonicalType)) in isUnsignedIntegerType() local
2284 if (const auto *IT = dyn_cast<BitIntType>(CanonicalType)) in isUnsignedIntegerOrEnumerationType() local
2286 if (const auto *IT = dyn_cast<DependentBitIntType>(CanonicalType)) in isUnsignedIntegerOrEnumerationType() local
2358 if (const auto *IT = dyn_cast<BitIntType>(CanonicalType)) in hasBooleanRepresentation() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h138 IT : 8, // AArch32 only – CPSR.IT bits member
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp368 IntegerType *IT = cast<IntegerType>(SI->getCondition()->getType()); in ProcessSwitchInst() local
H A DSimplifyCFG.cpp6528 IntegerType *IT = cast<IntegerType>(ValueType); in SwitchLookupTable() local
6621 auto *IT = dyn_cast<IntegerType>(ElementType); in wouldFitInRegister() local
6639 auto *IT = dyn_cast<IntegerType>(Ty); in isTypeLegalForLookupTable() local
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp323 } else if (const InjectedClassNameType *IT in IsDerivedFromInclusive() local
676 } else if (const InjectedClassNameType *IT in findFriendship() local
H A DSemaPseudoObject.cpp583 QualType IT = S.Context.getObjCInterfaceType(PRE->getClassReceiver()); in LookupMethodInReceiverType() local
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h520 const Elf_Shdr *IT) const { in PrintIndexTable()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp294 auto IT = thread_id_map.find(id); in Renumber() local
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp809 for (auto *IT : ImageTypes) in EmitQualTypeFinder() local
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp821 for (const auto &IT : SymbolToTargetList) { in NormalizedTBD_V4() local
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp1856 auto IT = WS.begin(); in writeOneObject() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp920 auto IT = ImportThresholds.insert(std::make_pair( in computeImportForFunction() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp4046 if (IntrinsicInst *IT = findInitTrampolineFromAlloca(TrampMem)) in findInitTrampoline() local
4048 if (IntrinsicInst *IT = findInitTrampolineFromBB(AdjustTramp, TrampMem)) in findInitTrampoline() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp1428 auto IT = HoistStopMap.find(R); in hoistValue() local
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h2357 void setTrivial(bool IT) { FunctionDeclBits.IsTrivial = IT; } in setTrivial()
2360 void setTrivialForCall(bool IT) { FunctionDeclBits.IsTrivialForCall = IT; } in setTrivialForCall()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp2097 for (specific_attr_iterator<OMPReferencedVarAttr> IT(VD->attr_begin()), in getAddressOfLocalVariable() local

12