HomeSort by relevance Sort by last modified time
    Searched defs:__ (Results 51 - 56 of 56) sorted by null

1 23

  /external/v8/src/ia32/
assembler-ia32.cc 67 #define __ assm. macro
69 __ push(ebp);
70 __ pushfd();
71 __ push(ecx);
72 __ push(ebx);
73 __ mov(ebp, Operand(esp));
76 __ pushfd();
77 __ pop(eax);
78 __ mov(edx, Operand(eax));
79 __ xor_(eax, 0x200000); // Flip bit 21
117 #undef __ macro
    [all...]
codegen-ia32.cc 46 #define __ ACCESS_MASM(masm_) macro
55 __ push(RegisterAllocator::ToRegister(i));
57 __ mov(Operand(ebp, action), RegisterAllocator::ToRegister(i));
68 __ pop(RegisterAllocator::ToRegister(i));
71 __ mov(RegisterAllocator::ToRegister(i), Operand(ebp, action));
150 __ int3();
193 __ cmp(context.reg(), Operand(esi));
194 __ Assert(equal, "Runtime::NewContext should end up in esi");
229 __ mov(SlotOperand(slot, context.reg()), value.reg());
235 __ RecordWrite(context.reg(), offset, value.reg(), scratch.reg())
7011 #undef __ macro
7012 #define __ macro
11024 #undef __ macro
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 55 #define __ assm. macro
57 __ push(rbp);
58 __ pushfq();
59 __ push(rcx);
60 __ push(rbx);
61 __ movq(rbp, rsp);
64 __ pushfq();
65 __ pop(rax);
66 __ movq(rdx, rax);
67 __ xor_(rax, Immediate(0x200000)); // Flip bit 21
115 #undef __ macro
    [all...]
codegen-x64.cc 43 #define __ ACCESS_MASM(masm_) macro
52 __ push(RegisterAllocator::ToRegister(i));
54 __ movq(Operand(rbp, action), RegisterAllocator::ToRegister(i));
65 __ pop(RegisterAllocator::ToRegister(i));
68 __ movq(RegisterAllocator::ToRegister(i), Operand(rbp, action));
271 __ movq(kScratchRegister, pairs, RelocInfo::EMBEDDED_OBJECT);
302 __ int3();
345 __ cmpq(context.reg(), rsi);
346 __ Assert(equal, "Runtime::NewContext should end up in rsi");
381 __ movq(SlotOperand(slot, context.reg()), value.reg())
5994 #undef __ macro
5995 #define __ macro
9427 #undef __ macro
9429 #define __ macro
9521 #undef __ macro
    [all...]
  /dalvik/vm/analysis/
CodeVerify.c 150 #define __ kRegTypeUnknown macro
191 { /*_*/ __,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X },
210 #undef __ macro
    [all...]
  /external/v8/src/arm/
codegen-arm.cc 43 #define __ ACCESS_MASM(masm_) macro
70 __ push(RegisterAllocator::ToRegister(i));
72 __ str(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
83 __ pop(RegisterAllocator::ToRegister(i));
86 __ ldr(RegisterAllocator::ToRegister(i), MemOperand(fp, action));
173 __ stop("stop-at");
190 __ ldr(r0, frame_->Function());
201 __ cmp(r0, Operand(cp));
203 __ stop("NewContext: r0 is expected to be the same as cp");
207 __ str(cp, frame_->Context())
4337 #undef __ macro
4338 #define __ macro
7664 #undef __ macro
    [all...]

Completed in 235 milliseconds

1 23