HomeSort by relevance Sort by last modified time
    Searched refs:CallSize (Results 1 - 5 of 5) sorted by null

  /external/v8/src/arm/
macro-assembler-arm.h 103 static int CallSize(Register target, Condition cond = al);
105 static int CallSize(byte* target, RelocInfo::Mode rmode, Condition cond = al);
107 static int CallSize(Handle<Code> code,
    [all...]
macro-assembler-arm.cc 109 int MacroAssembler::CallSize(Register target, Condition cond) {
135 CHECK_EQ(pre_position + CallSize(target, cond), post_position);
140 int MacroAssembler::CallSize(
184 CHECK_EQ(pre_position + CallSize(target, rmode, cond), post_position);
189 int MacroAssembler::CallSize(
191 return CallSize(reinterpret_cast<intptr_t>(target), rmode);
206 CHECK_EQ(pre_position + CallSize(target, rmode, cond), post_position);
211 int MacroAssembler::CallSize(
213 return CallSize(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
229 CHECK_EQ(pre_position + CallSize(code, rmode, cond), post_position)
    [all...]
deoptimizer-arm.cc 91 int call_size_in_bytes = MacroAssembler::CallSize(deoptimization_entry,
  /external/v8/src/x64/
macro-assembler-x64.h 120 // Used by CallSize(ExternalReference) to find the size of a call.
698 int CallSize(Address destination, RelocInfo::Mode rmode) {
701 int CallSize(ExternalReference ext);
702 int CallSize(Handle<Code> code_object) {
706 int CallSize(Register target) {
710 int CallSize(const Operand& target) {
    [all...]
macro-assembler-x64.cc     [all...]

Completed in 131 milliseconds