OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:field_loc
(Results
1 - 9
of
9
) sorted by null
/art/compiler/dex/quick/mips/
assemble_mips.cc
657
switch (encoder->
field_loc
[i].kind) {
661
if (encoder->
field_loc
[i].start == 0 && encoder->
field_loc
[i].end == 31) {
664
value = (operand << encoder->
field_loc
[i].start) &
665
((1 << (encoder->
field_loc
[i].end + 1)) - 1);
671
bits |= (value << encoder->
field_loc
[i].start);
672
bits |= (value << encoder->
field_loc
[i].end);
678
value = (RegStorage::RegNum(operand) << encoder->
field_loc
[i].start) &
679
((1 << (encoder->
field_loc
[i].end + 1)) - 1);
685
value = (RegStorage::RegNum(operand) << encoder->
field_loc
[i].start)
[
all
...]
mips_lir.h
485
// Instruction assembly
field_loc
kind.
501
}
field_loc
[4];
member in struct:art::MipsEncodingMap
/art/compiler/dex/quick/arm64/
arm64_lir.h
399
// Instruction assembly
field_loc
kind.
430
}
field_loc
[4];
member in struct:art::ArmEncodingMap
451
}
field_loc
[4];
assemble_arm64.cc
[
all
...]
utility_arm64.cc
624
ArmEncodingKind kind = EncodingMap[opcode].
field_loc
[2].kind;
658
ArmEncodingKind kind = EncodingMap[opcode].
field_loc
[2].kind;
[
all
...]
/art/compiler/dex/quick/arm/
assemble_arm.cc
[
all
...]
arm_lir.h
584
}
field_loc
[4];
member in struct:art::ArmEncodingMap
[
all
...]
utility_arm.cc
358
if (EncodingMap[opcode].
field_loc
[2].kind == kFmtShift) {
[
all
...]
/art/compiler/dex/
local_value_numbering.cc
709
uint16_t
field_loc
= entry.first;
local
715
auto it = lvn->non_aliasing_ifield_value_map_.find(
field_loc
);
719
value_name = gvn_->LookupValue(kNonAliasingIFieldInitialOp,
field_loc
, kNoValue, kNoValue);
[
all
...]
Completed in 226 milliseconds