Home
last modified time | relevance | path

Searched refs:Direct (Results 1 – 25 of 211) sorted by relevance

123456789

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DByteCodeExprGen.cpp258 const Expr *LV, DerefKind AK, llvm::function_ref<bool(PrimType)> Direct, in dereference() argument
266 return dereferenceParam(LV, *T, PD, AK, Direct, Indirect); in dereference()
268 return dereferenceVar(LV, *T, VD, AK, Direct, Indirect); in dereference()
284 llvm::function_ref<bool(PrimType)> Direct, in dereferenceParam() argument
294 if (!Direct(T)) in dereferenceParam()
303 if (!Direct(T)) in dereferenceParam()
326 llvm::function_ref<bool(PrimType)> Direct, in dereferenceVar() argument
338 if (!Direct(T)) in dereferenceVar()
347 if (!Direct(T)) in dereferenceVar()
361 if (!Direct(T)) in dereferenceVar()
[all …]
H A DByteCodeExprGen.h183 llvm::function_ref<bool(PrimType)> Direct,
187 llvm::function_ref<bool(PrimType)> Direct,
190 DerefKind AK, llvm::function_ref<bool(PrimType)> Direct,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DMemoryLocation.h81 enum DirectConstruction { Direct }; enumerator
113 return LocationSize(Value | ImpreciseBit, Direct); in upperBound()
124 return LocationSize(AfterPointer, Direct); in afterPointer()
130 return LocationSize(BeforeOrAfterPointer, Direct); in beforeOrAfterPointer()
135 return LocationSize(MapTombstone, Direct); in mapTombstone()
138 return LocationSize(MapEmpty, Direct); in mapEmpty()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ELFRelocs/
H A DM68k.def6 ELF_RELOC(R_68K_32, 1) /* Direct 32 bit */
7 ELF_RELOC(R_68K_16, 2) /* Direct 16 bit */
8 ELF_RELOC(R_68K_8, 3) /* Direct 8 bit */
/netbsd-src/external/gpl3/binutils/dist/include/opcode/
H A Dtic30.h195 #define Direct 0x0010 macro
209 #define GAddr1 Rn | Direct | Indirect | Imm16
409 { "iack" ,1,0x1B000000,AddressMode, { Direct|Indirect, 0, 0 }, Imm_None },
441 { "ldfi" ,2,0x07800000,AddressMode, { Direct|Indirect, Rn, 0 }, Imm_None },
470 { "ldii" ,2,0x08800000,AddressMode, { Direct|Indirect, AllReg, 0 }, Imm_None },
472 { "ldp" ,2,0x08700000,0, { Abs24|Direct, DPReg|NotReq, 0 }, Imm_UInt },
557 { "stf" ,2,0x14000000,AddressMode, { Rn, Direct|Indirect, 0 }, Imm_Float },
558 { "stfi" ,2,0x14800000,AddressMode, { Rn, Direct|Indirect, 0 }, Imm_Float },
559 { "sti" ,2,0x15000000,AddressMode, { AllReg, Direct|Indirect, 0 }, Imm_SInt },
560 { "stii" ,2,0x15800000,AddressMode, { AllReg, Direct|Indirect, 0 }, Imm_SInt },
/netbsd-src/external/gpl3/binutils.old/dist/include/opcode/
H A Dtic30.h195 #define Direct 0x0010 macro
209 #define GAddr1 Rn | Direct | Indirect | Imm16
409 { "iack" ,1,0x1B000000,AddressMode, { Direct|Indirect, 0, 0 }, Imm_None },
441 { "ldfi" ,2,0x07800000,AddressMode, { Direct|Indirect, Rn, 0 }, Imm_None },
470 { "ldii" ,2,0x08800000,AddressMode, { Direct|Indirect, AllReg, 0 }, Imm_None },
472 { "ldp" ,2,0x08700000,0, { Abs24|Direct, DPReg|NotReq, 0 }, Imm_UInt },
557 { "stf" ,2,0x14000000,AddressMode, { Rn, Direct|Indirect, 0 }, Imm_Float },
558 { "stfi" ,2,0x14800000,AddressMode, { Rn, Direct|Indirect, 0 }, Imm_Float },
559 { "sti" ,2,0x15000000,AddressMode, { AllReg, Direct|Indirect, 0 }, Imm_SInt },
560 { "stii" ,2,0x15800000,AddressMode, { AllReg, Direct|Indirect, 0 }, Imm_SInt },
/netbsd-src/external/apache2/llvm/dist/clang/docs/analyzer/developer-docs/
H A DRegionStore.rst114 These are known as "Direct" bindings. However, RegionStore supports a second
119 When there is no Direct binding for a particular region, the store manager
129 manyInts[1] = 42; // Creates a Direct binding for manyInts[1].
130 print(manyInts[1]); // Retrieves the Direct binding for manyInts[1];
131 print(manyInts[0]); // There is no Direct binding for manyInts[0].
174 p.x = 42; // A Direct binding is made to the FieldRegion 'p.x'.
179 // There is no Direct binding, so we look for a Default
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h41 Direct, enumerator
86 KindFirst = Direct,
135 ABIArgInfo(Kind K = Direct)
145 auto AI = ABIArgInfo(Direct);
296 bool isDirect() const { return TheKind == Direct; } in isDirect()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-import-test/
H A Dclang-import-test.cpp50 Direct("direct", llvm::cl::Optional, variable
370 if (!Direct || UseOrigins) { in main()
380 Parse(Expression, (Direct && !UseOrigins) ? ImportCIs : IndirectCIs, in main()
386 Forget(*ExpressionCI, (Direct && !UseOrigins) ? ImportCIs : IndirectCIs); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DBreakCriticalEdges.cpp436 BasicBlock::iterator Direct = DirectSucc->begin(); in SplitIndirectBrCriticalEdges() local
443 PHINode *DirPHI = cast<PHINode>(Direct); in SplitIndirectBrCriticalEdges()
449 Direct++; in SplitIndirectBrCriticalEdges()
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-tic30.c430 current_op->op_type = Direct; in tic30_operand()
1593 if ((insn.tm->operand_types[1] & (Indirect | Direct)) in md_assemble()
1594 == (Indirect | Direct)) in md_assemble()
1599 else if (insn.operand_type[addr_insn]->op_type & Direct) in md_assemble()
1713 if (insn.operand_type[0]->op_type & Direct) in md_assemble()
1716 && (insn.operand_type[1]->op_type & Direct)) in md_assemble()
1895 else if ((insn.tm->operand_types[0] & (Abs24 | Direct)) in md_assemble()
1896 == (Abs24 | Direct)) in md_assemble()
1900 if (insn.operand_type[0]->op_type & Direct) in md_assemble()
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-tic30.c430 current_op->op_type = Direct; in tic30_operand()
1593 if ((insn.tm->operand_types[1] & (Indirect | Direct)) in md_assemble()
1594 == (Indirect | Direct)) in md_assemble()
1599 else if (insn.operand_type[addr_insn]->op_type & Direct) in md_assemble()
1713 if (insn.operand_type[0]->op_type & Direct) in md_assemble()
1716 && (insn.operand_type[1]->op_type & Direct)) in md_assemble()
1895 else if ((insn.tm->operand_types[0] & (Abs24 | Direct)) in md_assemble()
1896 == (Abs24 | Direct)) in md_assemble()
1900 if (insn.operand_type[0]->op_type & Direct) in md_assemble()
/netbsd-src/sys/external/gpl2/dts/dist/arch/mips/boot/dts/cavium-octeon/
H A Docteon_3xxx.dtsi16 ranges; /* Direct mapping */
221 ranges; /* Direct mapping */
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h52 case StackMapParserT::LocationKind::Direct: in prettyPrintStackMap()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DStackMapParser.h107 Register = 1, Direct = 2, Indirect = 3, Constant = 4, ConstantIndex = 5 enumerator
147 assert((getKind() == LocationKind::Direct || in getOffset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp82 if (TI.getSimpleMode() == SimpleTypeMode::Direct) in simpleTypeName()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DStackMaps.rst343 uint8 : Register | Direct | Indirect | Constant | ConstantIndex
368 0x2 Direct Reg + Offset Frame index value
381 encoded as ``Direct`` locations in the form ``BP + Offset``. LLVM may
479 Direct Stack Map Entries
482 As shown in :ref:`stackmap-section`, a Direct stack map location
486 be loaded. Direct locations can communicate the address if an alloca,
508 stack map's location is a Direct location type.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCGSCCPassManager.cpp383 int Direct; in run() member
402 ++Count.Direct; in run()
472 CallCountOld.Direct < CallCountNew.Direct) { in run()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DLeakSanitizer.rst35 Direct leak of 7 byte(s) in 1 object(s) allocated from:
/netbsd-src/external/bsd/am-utils/dist/
H A DREADME.autofs65 - Direct mounts are implemented and work correctly.
94 - Direct maps cannot be supported since there is no kernel support for them;
144 - complain if certain incompatible options (autofs and ...) are used. Direct
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/
H A Dtic30-dis.c369 if ((insn->tm->operand_types[1] & (Direct | Indirect)) in print_two_operand()
370 == (Direct | Indirect)) in print_two_operand()
/netbsd-src/external/gpl3/binutils/dist/opcodes/
H A Dtic30-dis.c369 if ((insn->tm->operand_types[1] & (Direct | Indirect)) in print_two_operand()
370 == (Direct | Indirect)) in print_two_operand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypePointer.cpp23 assert(TI.getSimpleMode() != SimpleTypeMode::Direct); in NativeTypePointer()
/netbsd-src/external/gpl3/gdb.old/dist/sim/erc32/
H A DREADME.gdb38 Direct simulator commands during a GDB session must be issued
/netbsd-src/external/gpl3/gdb/dist/sim/erc32/
H A DREADME.gdb38 Direct simulator commands during a GDB session must be issued

123456789