Searched refs:Direct (Results 1 - 23 of 23) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h75 enum DirectConstruction { Direct }; enumerator in enum:llvm::LocationSize::DirectConstruction
98 return LocationSize(Value | ImpreciseBit, Direct);
102 return LocationSize(Unknown, Direct);
107 return LocationSize(MapTombstone, Direct);
110 return LocationSize(MapEmpty, Direct);
H A DCGSCCPassManager.h577 int Direct; member in struct:llvm::DevirtSCCRepeatedPass::CallCount
596 ++Count.Direct;
676 CallCountOld.Direct < CallCountNew.Direct) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeExprGen.cpp258 const Expr *LV, DerefKind AK, llvm::function_ref<bool(PrimType)> Direct,
266 return dereferenceParam(LV, *T, PD, AK, Direct, Indirect);
268 return dereferenceVar(LV, *T, VD, AK, Direct, Indirect);
284 llvm::function_ref<bool(PrimType)> Direct,
294 if (!Direct(T))
303 if (!Direct(T))
326 llvm::function_ref<bool(PrimType)> Direct,
338 if (!Direct(T))
347 if (!Direct(T))
361 if (!Direct(
[all...]
H A DByteCodeExprGen.h172 /// Direct method generates a value which is written. Returns pointer.
174 /// Direct method receives the value, pushes mutated value. Returns pointer.
182 llvm::function_ref<bool(PrimType)> Direct,
186 llvm::function_ref<bool(PrimType)> Direct,
189 DerefKind AK, llvm::function_ref<bool(PrimType)> Direct,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp82 if (TI.getSimpleMode() == SimpleTypeMode::Direct)
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h52 case StackMapParserT::LocationKind::Direct:
53 OS << "Direct R#" << Loc.getDwarfRegNum() << " + " << Loc.getOffset();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h35 /// Direct - Pass the argument directly using the normal converted LLVM
41 Direct,
73 KindFirst = Direct,
112 ABIArgInfo(Kind K = Direct) argument
121 auto AI = ABIArgInfo(Direct);
255 bool isDirect() const { return TheKind == Direct; }
267 // Direct/Extend accessors
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBreakCriticalEdges.cpp431 // (a) Remove the edge coming from IBRPred from the "Direct" PHI
436 BasicBlock::iterator Direct = DirectSucc->begin(); local
443 PHINode *DirPHI = cast<PHINode>(Direct);
449 Direct++;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypePointer.cpp23 assert(TI.getSimpleMode() != SimpleTypeMode::Direct);
H A DSymbolCache.cpp98 if (Index.getSimpleMode() != codeview::SimpleTypeMode::Direct)
H A DNativeTypeEnum.cpp188 Underlying.getSimpleMode() != SimpleTypeMode::Direct) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DStackMapParser.h104 Register = 1, Direct = 2, Indirect = 3, Constant = 4, ConstantIndex = 5 member in class:llvm::StackMapParser::LocationKind
142 /// Get the offset for this location. (Kind must be Direct or Indirect).
144 assert((getKind() == LocationKind::Direct ||
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DStackMaps.h199 Direct, enumerator in enum:llvm::StackMaps::Location::LocationType
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackMaps.cpp118 Locs.emplace_back(StackMaps::Location::Direct, Size,
199 case Location::Direct:
200 OS << "Direct ";
471 /// uint8 : Register | Direct | Indirect | Constant | ConstantIndex
488 /// 0x2, Direct, Reg + Offset (frame index)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndex.h82 Direct = 0x00000000, // Not a pointer member in class:llvm::codeview::SimpleTypeMode
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp45 enum Kind { Default = 0x0, Direct = 0x1 }; enumerator in enum:__anon894::BindingKey::Kind
71 bool isDirect() const { return P.getInt() & Direct; }
125 Out << "\"kind\": \"" << (K.isDirect() ? "Direct" : "Default")
211 return removeBinding(R, BindingKey::Direct).
266 return Optional<SVal>::create(lookup(R, BindingKey::Direct));
1253 B = B.addBinding(baseR, BindingKey::Direct, V);
1552 const SVal *V = B.lookup(R, BindingKey::Direct);
2202 return NewB.addBinding(BindingKey::Make(R, BindingKey::Direct), V);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp1465 case ABIArgInfo::Direct: {
1569 case ABIArgInfo::Direct:
1645 case ABIArgInfo::Direct: {
2002 case ABIArgInfo::Direct:
2084 case ABIArgInfo::Direct:
2384 case ABIArgInfo::Direct: {
2894 case ABIArgInfo::Direct:
4066 case ABIArgInfo::Direct: {
4567 case ABIArgInfo::Direct: {
H A DTargetInfo.cpp226 case Direct:
227 OS << "Direct Type=";
1874 case ABIArgInfo::Direct:
8517 case ABIArgInfo::Direct: {
8875 case ABIArgInfo::Direct:
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp835 case SimpleTypeMode::Direct:
H A DSymbolFileNativePDB.cpp497 if (ti.getSimpleMode() != SimpleTypeMode::Direct) {
H A DPdbAstBuilder.cpp701 if (ti.getSimpleMode() != SimpleTypeMode::Direct) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1703 PointeeTI.getSimpleMode() == SimpleTypeMode::Direct &&
2105 /// Direct members.
2107 // Direct overloaded methods gathered by name.
/freebsd-11-stable/contrib/binutils/bfd/
H A Dconfigure1034 --with-bugurl=URL Direct users to URL to report a bug

Completed in 398 milliseconds