Searched refs:instructions (Results 1 - 25 of 84) sorted by relevance

1234

/freebsd-11-stable/contrib/binutils/opcodes/
H A Darc-ext.h48 struct ExtInstruction *instructions[NUM_EXT_INST]; member in struct:arcExtMap
H A Darc-ext.c49 if (!arc_extension_map.instructions[opcode])
51 *flags = arc_extension_map.instructions[opcode]->flags;
52 return arc_extension_map.instructions[opcode]->name;
124 /* clean instructions */
127 insn = arc_extension_map.instructions[i];
160 For instructions:
193 arc_extension_map.instructions[(int) opcode] = insn;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dreps.c49 /* Limit the size of the instructions stream. This should not exceed the
56 /* Byte strings are described by a series of copy instructions that each
61 * - reference other instruction and specify how many of instructions of
68 * instruction and the number of instructions to execute.
83 * container->instructions[-offset].
93 /* Number of bytes to copy / instructions to execute
112 * instructions for this base. */
174 /* array of instruction_t objects describing all instructions */
175 apr_array_header_t *instructions; member in struct:svn_fs_x__reps_builder_t
197 /* fulltext i can be reconstructed by executing instructions
207 const instruction_t *instructions; member in struct:svn_fs_x__reps_t
778 instruction_t *instructions; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstIterator.h10 // instructions in a function. This is effectively a wrapper around a two level
14 // instructions are moved around.
133 inline inst_range instructions(Function *F) { function in namespace:llvm
142 inline const_inst_range instructions(const Function *F) { function in namespace:llvm
147 inline inst_range instructions(Function &F) { function in namespace:llvm
156 inline const_inst_range instructions(const Function &F) { function in namespace:llvm
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DStripGCRelocates.cpp49 for (Instruction &I : instructions(F)) {
H A DInjectTLIMappings.cpp140 for (auto &I : instructions(F))
/freebsd-11-stable/usr.bin/bc/
H A Dbc.y100 static struct tree *instructions = NULL;
774 p = realloc(instructions, newsize * sizeof(*p));
776 free(instructions);
779 instructions = p;
789 instructions[current].index = CONST_STRING;
790 instructions[current].u.cstr = str;
799 instructions[current].index = ALLOC_STRING;
800 instructions[current].u.astr = strdup(str);
801 if (instructions[current].u.astr == NULL)
816 instructions[curren
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbol.i87 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
88 instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this symbol.''')
H A DSBFunction.i124 instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
127 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemDerefPrinter.cpp54 for (auto &I: instructions(F)) {
H A DMemDepPrinter.cpp98 for (auto &I : instructions(F)) {
135 for (const auto &I : instructions(*F)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerGuardIntrinsic.cpp52 for (auto &I : instructions(F))
H A DMakeGuardsExplicit.cpp77 for (auto &I : instructions(F))
H A DLowerWidenableCondition.cpp53 for (auto &I : instructions(F))
H A DConstantProp.cpp12 // * Converts instructions like "add int 1, 2" into 3
37 STATISTIC(NumInstKilled, "Number of instructions killed");
39 "Controls which instructions are killed");
72 // Initialize the worklist to all of the instructions ready to process...
78 for (Instruction &I : instructions(&F)) {
93 if (!I->use_empty()) // Don't muck with dead instructions...
H A DBDCE.cpp10 // instructions (shifts, some ands, ors, etc.) kill some of their input bits.
11 // We track these dead bits and remove instructions that compute only these
34 STATISTIC(NumRemoved, "Number of instructions removed (unused)");
35 STATISTIC(NumSimplified, "Number of instructions trivialized (dead bits)");
92 for (Instruction &I : instructions(F)) {
99 // Remove instructions that are dead, either because they were not reached
H A DADCE.cpp10 // optimistically assumes that all instructions are dead until proven otherwise,
61 STATISTIC(NumRemoved, "Number of instructions removed");
62 STATISTIC(NumBranchesRemoved, "Number of branch instructions removed");
87 /// True when this block contains a live instructions.
128 /// Mapping of instructions to associated information.
154 /// Return true for instrumentation instructions for value profiling.
179 /// Remove instructions not marked live, return if any instruction was
224 // instructions to size the InstInfo hash table.
244 // Collect the set of "root" instructions that are known live.
245 for (Instruction &I : instructions(
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dsvndiff.c72 /* This is at least as big as the largest possible instructions
73 section: in theory, the instructions could be SVN_DELTA_WINDOW_SIZE
74 1-byte copy-from-source instructions (though this is very unlikely). */
139 /* append instructions (1 to a handful of bytes) */
167 svn_stringbuf_t *instructions; local
174 instructions = svn_stringbuf_create_empty(pool);
177 /* Encode the instructions. */
194 svn_stringbuf_appendbytes(instructions, (const char *)ibuf, ip - ibuf);
205 SVN_ERR(svn__compress_lz4(instructions->data, instructions
255 svn_stringbuf_t *instructions; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp328 InstructionList *instructions = local
330 if (instructions == nullptr)
336 instructions->GetIndexOfNextBranchInstruction(pc_index, target,
344 uint32_t last_index = instructions->GetSize() - 1;
347 instructions->GetInstructionAtIndex(last_index);
354 instructions->GetInstructionAtIndex(branch_index)->GetAddress();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp81 for (Instruction &I : instructions(F))
108 // llvm.coro.alloc and llvm.coro.free instructions.
255 // See if there are any coro.subfn.addr instructions referring to coro.devirt
259 for (auto &I : instructions(F))
306 for (auto &I : instructions(F))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVVMReflect.cpp115 for (Instruction &I : instructions(F)) {
H A DNVVMIntrRange.cpp85 for (Instruction &I : instructions(F)) {
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Ddarwin-vecsave.asm36 save/restore requires 2 instructions (8 bytes.)
41 (4 bytes) to do the operation; for Vector regs, 2 instructions are
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DMemory.inc63 // Cache uses instructions dcbf and icbi, both of which are treated by
65 // executing these instructions will result in a segmentation fault.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandReductions.cpp82 for (auto &I : instructions(F)) {

Completed in 292 milliseconds

1234