HomeSort by relevance Sort by last modified time
    Searched full:clobbers (Results 26 - 50 of 253) sorted by null

12 3 4 5 6 7 8 91011

  /development/tutorials/ReverseDebug/
main.c 26 /* Make sure it clobbers something. */
  /external/clang/test/Parser/
asm.c 4 // PR7673: Some versions of GCC support an empty clobbers section.
  /external/llvm/test/CodeGen/X86/
2012-01-16-mfence-nosse-flags.ll 14 ; clobbers EFLAGS.
2010-06-09-FastAllocRegisters.ll 4 ; The inline asm in this function clobbers almost all allocatable registers.
2010-09-01-RemoveCopyByCommutingDef.ll 13 ; The imull clobbers a 32-bit register.
stack-align-memcpy.ll 9 ; We can't use rep;movsl here because it clobbers the base pointer in %esi.
  /external/valgrind/memcheck/tests/amd64-linux/
int3-amd64.c 41 : /* clobbers */ "rdx"
  /external/valgrind/memcheck/tests/x86-linux/
int3-x86.c 41 : /* clobbers */ "edx"
  /external/valgrind/none/tests/amd64-solaris/
syscall_return_args.c 22 : "rax", "rcx", "rdx", "cc", "memory"); /* clobbers */
  /external/clang/lib/AST/
Stmt.cpp 427 StringLiteral **Clobbers,
447 C.Deallocate(this->Clobbers);
448 this->Clobbers = new (C) StringLiteral*[NumClobbers];
449 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers);
689 StringLiteral **clobbers, SourceLocation rparenloc)
704 Clobbers = new (C) StringLiteral*[NumClobbers];
705 std::copy(clobbers, clobbers + NumClobbers, Clobbers)
    [all...]
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 574 SmallVector<std::string, 4> Clobbers;
576 NumInputs, OpExprs, Constraints, Clobbers,
581 // fpsr as clobbers.
582 auto End = std::remove(Clobbers.begin(), Clobbers.end(), "fpsw");
583 Clobbers.erase(End, Clobbers.end());
586 ClobberRefs.insert(ClobberRefs.end(), Clobbers.begin(), Clobbers.end());
625 /// ':' asm-clobbers
    [all...]
  /external/llvm/test/CodeGen/SystemZ/
asm-17.ll 63 ; Test clobbers of GPRs and CC.
74 ; Test clobbers of FPRs and CC.
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.h 27 /// given set of clobbers for a memory intrinsic.
  /external/v8/test/webkit/
dfg-to-string-side-effect-clobbers-toString.js 25 "Tests what happens when you do ToString twice, and it has a side effect that clobbers the toString method in between the two ToStrings."
dfg-cse-cfa-discrepancy.js 40 y = 72; // PutScopedVar appears to clobber world in CSE but only clobbers structures in CFA.
  /external/llvm/include/llvm/CodeGen/
LivePhysRegs.h 97 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers);
113 /// The clobbers set will be the list of registers either defined or clobbered
117 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers);
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 145 Expr *asmString, MultiExprArg clobbers,
147 unsigned NumClobbers = clobbers.size();
151 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
163 Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc);
335 // Check that the clobbers are valid.
337 StringLiteral *Literal = Clobbers[i];
350 AsmString, NumClobbers, Clobbers, RParenLoc);
724 ArrayRef<StringRef> Clobbers,
733 Clobbers, EndLoc)
    [all...]
  /system/connectivity/shill/
profile.h 117 // Clobbers persisted notion of |service| with data from |service|.
152 // Clobbers persisted notion of |device| with data from |device|. Returns true
159 // Clobbers persisted notion of |wifi_provider| with data from
  /external/bison/m4/
strerror.m4 43 dnl If the system's strerror_r or __xpg_strerror_r clobbers strerror's
  /external/llvm/test/CodeGen/ARM/
cse-call.ll 5 ; Don't CSE a cmp across a call that clobbers CPSR.
  /external/v8/src/
arguments.cc 97 // TODO(ulan): This clobbers only subset of registers depending on compiler,
  /external/gemmlowp/meta/generators/
neon_emitter.py 85 def Clobbers(self):
205 def EmitAsmEnd(self, outputs, inputs, clobbers):
208 self.EmitClobbers(clobbers)
  /external/jemalloc/include/jemalloc/internal/
atomic.h 111 : "memory" /* Clobbers. */
125 : "memory" /* Clobbers. */
349 : "memory" /* Clobbers. */
  /external/llvm/lib/IR/
InlineAsm.cpp 123 if (Type == isClobber || // Cannot commute clobbers.
262 return false; // outputs before inputs and clobbers.
270 if (NumClobbers) return false; // inputs before clobbers.
  /external/llvm/test/CodeGen/SPARC/
spill.ll 6 ;; For i32/i64 tests, use an asm statement which clobbers most

Completed in 1917 milliseconds

12 3 4 5 6 7 8 91011