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

12345678

/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dgdb_disassemble.py6 instructions = lldb.frame.function.instructions
10 instructions = lldb.frame.symbol.instructions
14 for inst in instructions:
/openbsd-current/gnu/llvm/llvm/bindings/python/llvm/tests/
H A Dtest_disassembler.py30 instructions = list(disassembler.get_instructions(sequence))
31 self.assertEqual(len(instructions), 2)
33 self.assertEqual(instructions[0], (0, 3, '\tjcxz\t-127'))
34 self.assertEqual(instructions[1], (3, 2, '\taddl\t%eax, %edi'))
/openbsd-current/gnu/usr.bin/binutils/opcodes/
H A Darc-ext.h48 struct ExtInstruction *instructions[NUM_EXT_INST]; member in struct:arcExtMap
H A Darc-ext.c48 if (!arc_extension_map.instructions[opcode])
50 *flags = arc_extension_map.instructions[opcode]->flags;
51 return arc_extension_map.instructions[opcode]->name;
123 /* clean instructions */
126 insn = arc_extension_map.instructions[i];
159 For instructions:
192 arc_extension_map.instructions[(int) opcode] = insn;
/openbsd-current/gnu/usr.bin/binutils-2.17/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;
/openbsd-current/sys/arch/amd64/include/
H A Dcodepatch.h75 * stac/clac SMAP instructions have lfence like semantics. Let's
105 #define CODEPATCH_CODE(symbol, instructions...) \
108 symbol: instructions; \
112 #define CODEPATCH_CODE_LEN(symbol, instructions...) \
113 CODEPATCH_CODE(symbol, instructions); \
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020720-1.x2 # (1) They implement floating point instructions via software, or
10 # combiner is able to see all intermediate instructions simultaneously
/openbsd-current/games/cribbage/
H A Dinstr.c45 instructions(void) function
/openbsd-current/gnu/llvm/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
/openbsd-current/gnu/llvm/llvm/lib/Target/NVPTX/
H A DNVPTXAtomicLower.cpp26 // Hoisting the alloca instructions in the non-entry blocks to the entry
47 for (Instruction &I : instructions(F))
/openbsd-current/gnu/llvm/llvm/lib/Transforms/ObjCARC/
H A DObjCARCExpand.cpp56 for (Instruction &Inst : instructions(&F)) {
H A DProvenanceAnalysisEvaluator.cpp39 for (Instruction &I : instructions(F)) {
/openbsd-current/usr.bin/bc/
H A Dbc.y92 static struct tree *instructions = NULL;
753 p = reallocarray(instructions, newsize, sizeof(*p));
755 free(instructions);
758 instructions = p;
767 instructions[current].index = CONST_STRING;
768 instructions[current].u.cstr = str;
776 instructions[current].index = ALLOC_STRING;
777 instructions[current].u.astr = strdup(str);
778 if (instructions[current].u.astr == NULL)
793 instructions[curren
[all...]
/openbsd-current/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DReduceMemoryOperations.cpp19 for (Instruction &I : instructions(F)) {
49 for (Instruction &I : instructions(F)) {
82 for (Instruction &I : instructions(F)) {
H A DReduceInstructionFlags.cpp9 // Try to remove optimization flags on instructions
24 for (Instruction &I : instructions(F)) {
/openbsd-current/gnu/llvm/lldb/bindings/interface/
H A DSBSymbol.i89 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
90 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.''')
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DMemDerefPrinter.cpp54 for (auto &I: instructions(F)) {
89 for (auto &I : instructions(F)) {
/openbsd-current/sys/lib/libkern/arch/sh/
H A Dffs.S37 * This code makes use of ``test 8bit'' and ``shift 8bit'' instructions.
42 mov r4,r0 ! using r0 specific instructions
/openbsd-current/lib/libc/arch/sh/string/
H A Dffs.S38 * This code makes use of ``test 8bit'' and ``shift 8bit'' instructions.
43 mov r4,r0 ! using r0 specific instructions
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DMakeGuardsExplicit.cpp75 for (auto &I : instructions(F))
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DAnnotation2Metadata.cpp60 // Add annotation to all instructions in the function.
61 for (auto &I : instructions(Fn))
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DStripGCRelocates.cpp33 for (Instruction &I : instructions(F)) {
/openbsd-current/gnu/llvm/llvm/utils/
H A Dllvm-mca-compare.py17 instructions,
29 self.instructions = instructions
238 table_values[0][j + 1] = str(matrix_of_code_regions[j][i].instructions)
333 values[i][4] = array_of_summary[i].instructions
408 summary.instructions += array_of_code_regions[i].instructions
420 summary.instructions = round(summary.instructions / len(array_of_code_regions), 2)
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DThreadPlanStepRange.cpp325 InstructionList *instructions = local
327 if (instructions == nullptr)
331 uint32_t branch_index = instructions->GetIndexOfNextBranchInstruction(
337 uint32_t last_index = instructions->GetSize() - 1;
340 instructions->GetInstructionAtIndex(last_index);
347 instructions->GetInstructionAtIndex(branch_index)->GetAddress();

Completed in 245 milliseconds

12345678