OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:defined_by
(Results
1 - 4
of
4
) sorted by null
/art/compiler/optimizing/
optimizing_unit_test.h
52
HInstruction*
defined_by
= nullptr) {
53
LiveInterval* interval = LiveInterval::MakeInterval(allocator, Primitive::kPrimInt,
defined_by
);
54
if (
defined_by
!= nullptr) {
55
defined_by
->SetLiveInterval(interval);
register_allocator.cc
506
HInstruction*
defined_by
= current->GetParent()->GetDefinedBy();
local
509
&& !(
defined_by
!= nullptr && (
defined_by
->IsParameterValue()
510
||
defined_by
->IsCurrentMethod()))) {
544
if (
defined_by
!= nullptr) {
545
message << "(" <<
defined_by
->DebugName() << ")";
723
// The interval becomes inactive at `
defined_by
`. We make its register
724
// available only until the next use strictly after `
defined_by
`.
752
HInstruction*
defined_by
= current->GetDefinedBy();
local
753
if (
defined_by
!= nullptr && !current->IsSplit())
1303
HInstruction*
defined_by
= parent->GetDefinedBy();
local
1767
HInstruction*
defined_by
= parent->GetDefinedBy();
local
[
all
...]
ssa_liveness_analysis.cc
546
HInstruction*
defined_by
= GetParent()->GetDefinedBy();
local
547
if (
defined_by
->IsConstant()) {
548
return
defined_by
->GetLocations()->Out();
ssa_liveness_analysis.h
803
// Find the interval that covers `
defined_by
`_. Calls to this function
834
// Find the interval that covers `
defined_by
`_. Calls to this function
844
// `
defined_by
`_.
877
HInstruction*
defined_by
= nullptr,
901
defined_by_(
defined_by
) {}
[
all
...]
Completed in 1250 milliseconds