| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | MemoryLocation.h | 83 enum DirectConstruction { Direct }; enumerator 115 return LocationSize(Value | ImpreciseBit, Direct); in upperBound() 126 return LocationSize(AfterPointer, Direct); in afterPointer() 132 return LocationSize(BeforeOrAfterPointer, Direct); in beforeOrAfterPointer() 137 return LocationSize(MapTombstone, Direct); in mapTombstone() 140 return LocationSize(MapEmpty, Direct); in mapEmpty()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | M68k.def | 6 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 */
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/include/opcode/ |
| H A D | tic30.h | 195 #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 },
|
| /openbsd-src/gnu/usr.bin/binutils/include/opcode/ |
| H A D | tic30.h | 195 #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 },
|
| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | ByteCodeExprGen.cpp | 602 const Expr *LV, DerefKind AK, llvm::function_ref<bool(PrimType)> Direct, in dereference() argument 610 return dereferenceParam(LV, *T, PD, AK, Direct, Indirect); in dereference() 612 return dereferenceVar(LV, *T, VD, AK, Direct, Indirect); in dereference() 628 llvm::function_ref<bool(PrimType)> Direct, in dereferenceParam() argument 638 if (!Direct(T)) in dereferenceParam() 647 if (!Direct(T)) in dereferenceParam() 670 llvm::function_ref<bool(PrimType)> Direct, in dereferenceVar() argument 682 if (!Direct(T)) in dereferenceVar() 691 if (!Direct(T)) in dereferenceVar() 705 if (!Direct(T)) in dereferenceVar() [all …]
|
| H A D | ByteCodeExprGen.h | 202 llvm::function_ref<bool(PrimType)> Direct, 206 llvm::function_ref<bool(PrimType)> Direct, 209 DerefKind AK, llvm::function_ref<bool(PrimType)> Direct,
|
| /openbsd-src/gnu/llvm/clang/docs/analyzer/developer-docs/ |
| H A D | RegionStore.rst | 114 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
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | LDSDIRInstructions.td | 1 //===-- LDSDIRInstructions.td - LDS Direct Instruction Definitions --------===// 88 // LDS Direct Instructions
|
| /openbsd-src/gnu/llvm/clang/include/clang/CodeGen/ |
| H A D | CGFunctionInfo.h | 41 Direct, enumerator 86 KindFirst = Direct, 135 ABIArgInfo(Kind K = Direct) 145 auto AI = ABIArgInfo(Direct); 296 bool isDirect() const { return TheKind == Direct; } in isDirect()
|
| /openbsd-src/gnu/llvm/clang/tools/clang-import-test/ |
| H A D | clang-import-test.cpp | 50 Direct("direct", llvm::cl::Optional, variable 372 if (!Direct || UseOrigins) { in main() 382 Parse(Expression, (Direct && !UseOrigins) ? ImportCIs : IndirectCIs, in main() 388 Forget(*ExpressionCI, (Direct && !UseOrigins) ? ImportCIs : IndirectCIs); in main()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | BreakCriticalEdges.cpp | 427 BasicBlock::iterator Direct = DirectSucc->begin(); in SplitIndirectBrCriticalEdges() local 434 PHINode *DirPHI = cast<PHINode>(Direct); in SplitIndirectBrCriticalEdges() 440 Direct++; in SplitIndirectBrCriticalEdges()
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/ |
| H A D | tc-tic30.c | 455 current_op->op_type = Direct; in tic30_operand() 1612 if ((insn.tm->operand_types[1] & (Indirect | Direct)) in md_assemble() 1613 == (Indirect | Direct)) in md_assemble() 1618 else if (insn.operand_type[addr_insn]->op_type & Direct) in md_assemble() 1732 if (insn.operand_type[0]->op_type & Direct) in md_assemble() 1735 && (insn.operand_type[1]->op_type & Direct)) in md_assemble() 1914 else if ((insn.tm->operand_types[0] & (Abs24 | Direct)) in md_assemble() 1915 == (Abs24 | Direct)) in md_assemble() 1919 if (insn.operand_type[0]->op_type & Direct) in md_assemble()
|
| /openbsd-src/gnu/usr.bin/binutils/gas/config/ |
| H A D | tc-tic30.c | 434 if ((insn.tm->operand_types[1] & (Indirect | Direct)) == (Indirect | Direct)) 438 else if (insn.operand_type[addr_insn]->op_type & Direct) 545 if (insn.operand_type[0]->op_type & Direct) 547 if ((insn.operands > 1) && (insn.operand_type[1]->op_type & Direct)) 697 else if ((insn.tm->operand_types[0] & (Abs24 | Direct)) == (Abs24 | Direct)) 700 if (insn.operand_type[0]->op_type & Direct) 1233 current_op->op_type = Direct;
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | StackMapPrinter.h | 52 case StackMapParserT::LocationKind::Direct: in prettyPrintStackMap()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 83 if (TI.getSimpleMode() == SimpleTypeMode::Direct) in simpleTypeName()
|
| H A D | TypeRecordHelpers.cpp | 57 if (TI.getSimpleMode() != SimpleTypeMode::Direct) { in getSizeInBytesForTypeIndex()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Object/ |
| H A D | StackMapParser.h | 107 Register = 1, Direct = 2, Indirect = 3, Constant = 4, ConstantIndex = 5 enumerator 147 assert((getKind() == LocationKind::Direct || in getOffset()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | str-nq.fin | 31 Direct DIRECT
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | LeakSanitizer.rst | 35 Direct leak of 7 byte(s) in 1 object(s) allocated from:
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | StackMaps.rst | 343 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.
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | CGSCCPassManager.cpp | 371 int Direct; in run() member 390 ++Count.Direct; in run() 465 CallCountOld.Direct < CallCountNew.Direct) { in run()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypePointer.cpp | 24 assert(TI.getSimpleMode() != SimpleTypeMode::Direct); in NativeTypePointer()
|
| /openbsd-src/gnu/usr.bin/binutils/opcodes/ |
| H A D | tic30-dis.c | 252 if ((insn->tm->operand_types[1] & (Direct | Indirect)) == (Direct | Indirect))
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/ |
| H A D | tic30-dis.c | 355 if ((insn->tm->operand_types[1] & (Direct | Indirect)) in print_two_operand() 356 == (Direct | Indirect)) in print_two_operand()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | StackMaps.h | 265 Direct, enumerator
|