HomeSort by relevance Sort by last modified time
    Searched full:instrs (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/llvm/lib/Target/PTX/
PTXFPRoundingModePass.cpp 43 DenseMap<unsigned, RndModeDesc> Instrs;
90 Instrs[PTX::FADDrr32] = std::make_pair(1U, (unsigned)RndNearestEven);
91 Instrs[PTX::FADDri32] = std::make_pair(1U, (unsigned)RndNearestEven);
92 Instrs[PTX::FADDrr64] = std::make_pair(1U, (unsigned)RndNearestEven);
93 Instrs[PTX::FADDri64] = std::make_pair(1U, (unsigned)RndNearestEven);
94 Instrs[PTX::FSUBrr32] = std::make_pair(1U, (unsigned)RndNearestEven);
95 Instrs[PTX::FSUBri32] = std::make_pair(1U, (unsigned)RndNearestEven);
96 Instrs[PTX::FSUBrr64] = std::make_pair(1U, (unsigned)RndNearestEven);
97 Instrs[PTX::FSUBri64] = std::make_pair(1U, (unsigned)RndNearestEven);
98 Instrs[PTX::FMULrr32] = std::make_pair(1U, (unsigned)RndNearestEven)
    [all...]
  /external/valgrind/main/lackey/tests/
true.stderr.exp 12 guest instrs: ...
16 guest instrs : SB entered = ... : ...
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCFixupKinds.h 26 /// fixup_ppc_lo16 - A 16-bit fixup corresponding to lo16(_foo) for instrs
30 /// fixup_ppc_ha16 - A 16-bit fixup corresponding to ha16(_foo) for instrs
34 /// fixup_ppc_lo14 - A 14-bit fixup corresponding to lo16(_foo) for instrs
  /external/llvm/test/CodeGen/PowerPC/
iabs.ll 2 ; RUN: grep {4 .*Number of machine instrs printed}
rlwimi3.ll 2 ; RUN: grep {Number of machine instrs printed} | grep 12
  /external/llvm/test/CodeGen/X86/
iabs.ll 2 ; RUN: grep {5 .*Number of machine instrs printed}
  /external/llvm/test/Assembler/
ConstantExprFoldCast.ll 11 ; Test folding of binary instrs
  /external/llvm/test/CodeGen/Thumb/
iabs.ll 2 ; RUN: grep {4 .*Number of machine instrs printed}
  /development/testrunner/
android_manifest.py 91 instrs = []
93 instrs.append(element.getAttribute('android:name'))
94 return instrs
  /external/llvm/lib/Target/X86/InstPrinter/
X86InstComments.h 1 //=- X86InstComments.h - Generate verbose-asm comments for instrs -*- C++ -*-=//
  /external/emma/core/java12/com/vladium/emma/report/
IItem.java 51 // (coverage data) measured in counts or instrs:
62 // (metadata) measured in counts or instrs:
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 66 SmallVector<MachineInstr*, 8> Instrs;
70 bool isCollapsed() const { return Instrs.empty(); }
103 Instrs.clear();
300 while (!dv->Instrs.empty())
301 TII->setExecutionDomain(dv->Instrs.pop_back_val(), domain);
323 A->Instrs.append(B->Instrs.begin(), B->Instrs.end());
627 dv->Instrs.push_back(mi);
  /external/llvm/lib/Target/Mips/
MipsExpandPseudo.cpp 120 /// instrs into real instrs
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.c 9 * the parity instrs
172 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
216 * the parity instrs
379 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
423 * the parity instrs
586 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
630 * the parity instrs
793 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
837 * the parity instrs
1000 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
    [all...]
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.c 9 * the parity instrs
172 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
216 * the parity instrs
379 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
423 * the parity instrs
586 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
630 * the parity instrs
793 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
837 * the parity instrs
1000 /* b0 may be non-zero in lwarx/ldarx Power6 instrs */
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_EXECUTE_INLINE_RANGE.S 43 add pc, pc, r0, lsl #3 @ computed goto, 2 instrs each
OP_EXECUTE_INLINE.S 51 add pc, pc, r0, lsl #3 @ computed goto, 2 instrs each
  /external/llvm/lib/Transforms/InstCombine/
InstCombineWorklist.h 57 DEBUG(errs() << "IC: ADDING: " << NumEntries << " instrs to worklist\n");
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMFixupKinds.h 68 // fixup_arm_thumb_cp - Fixup for Thumb load/store from constant pool instrs.
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 207 std::string Instrs = InstrsForCase[i];
208 if (Instrs.size() > 70) {
209 Instrs.erase(Instrs.begin()+70, Instrs.end());
210 Instrs += "...";
213 if (!Instrs.empty())
214 UniqueOperandCommands[i] = " // " + Instrs + "\n" +
    [all...]
  /development/testrunner/test_defs/
instrumentation_test.py 241 instrs = manifest_parser.GetInstrumentationNames()
242 if not instrs:
  /external/llvm/include/llvm/
Instruction.def 133 HANDLE_MEMORY_INST(27, Load , LoadInst ) // Memory manipulation instrs
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.h 105 /// (which do not go into the machine instrs.)
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMFixupKinds.h 90 // fixup_arm_thumb_cp - Fixup for Thumb load/store from constant pool instrs.
  /external/llvm/lib/Transforms/Utils/
DemoteRegToStack.cpp 90 /* empty */; // Don't insert before PHI nodes or landingpad instrs.

Completed in 1498 milliseconds

1 2 3 4