OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LDoubleRegister
(Results
1 - 5
of
5
) sorted by null
/external/v8/src/
lithium.h
361
class
LDoubleRegister
: public LOperand {
363
static
LDoubleRegister
* Create(int index) {
366
return new
LDoubleRegister
(index);
369
static
LDoubleRegister
* cast(LOperand* op) {
371
return reinterpret_cast<
LDoubleRegister
*>(op);
378
static
LDoubleRegister
* cache;
380
LDoubleRegister
() : LOperand() { }
381
explicit
LDoubleRegister
(int index) : LOperand(DOUBLE_REGISTER, index) { }
lithium.cc
111
DEFINE_OPERAND_CACHE(
LDoubleRegister
, DOUBLE_REGISTER)
120
LDoubleRegister
::SetUpCache();
lithium-allocator.cc
233
op =
LDoubleRegister
::Create(assigned_register());
[
all
...]
/external/chromium_org/v8/src/
lithium.h
431
class
LDoubleRegister
V8_FINAL : public LOperand {
433
static
LDoubleRegister
* Create(int index, Zone* zone) {
436
return new(zone)
LDoubleRegister
(index);
439
static
LDoubleRegister
* cast(LOperand* op) {
441
return reinterpret_cast<
LDoubleRegister
*>(op);
449
static
LDoubleRegister
* cache;
451
LDoubleRegister
() : LOperand() { }
452
explicit
LDoubleRegister
(int index) : LOperand(DOUBLE_REGISTER, index) { }
lithium-allocator.cc
239
op =
LDoubleRegister
::Create(assigned_register(), zone);
[
all
...]
Completed in 396 milliseconds