HomeSort by relevance Sort by last modified time
    Searched refs:LBranch (Results 1 - 25 of 29) sorted by null

1 2

  /external/v8/test/mjsunit/compiler/
regress-lbranch-double.js 30 // ARM's code generator for LBranch had a bug, swapping the true/false
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 283 BasicBlock *LBranch = switchConvert(LHS.begin(), LHS.end(), LowerBound,
293 BranchInst::Create(LBranch, RBranch, Comp, NewNode);
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 63 void LBranch::PrintDataTo(StringStream* stream) {
949 return new(zone()) LBranch(UseRegister(value), NULL, NULL);
955 return new(zone()) LBranch(UseRegister(value), NULL, NULL);
960 return new(zone()) LBranch(UseRegister(value), TempRegister(), NULL);
972 return new(zone()) LBranch(UseRegister(value), temp1, temp2);
975 new(zone()) LBranch(UseRegister(value), temp1, temp2));
    [all...]
lithium-arm64.h 806 class LBranch final : public LControlInstruction<1, 2> {
808 explicit LBranch(LOperand* value, LOperand *temp1, LOperand *temp2) {
    [all...]
lithium-codegen-arm64.cc     [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.h     [all...]
lithium-arm.cc 158 void LBranch::PrintDataTo(StringStream* stream) {
901 LInstruction* branch = new(zone()) LBranch(UseRegister(value));
    [all...]
lithium-codegen-arm.cc     [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h     [all...]
lithium-ia32.cc 177 void LBranch::PrintDataTo(StringStream* stream) {
935 LInstruction* branch = new(zone()) LBranch(UseRegister(value), temp);
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h     [all...]
lithium-mips.cc 160 void LBranch::PrintDataTo(StringStream* stream) {
911 LInstruction* branch = new(zone()) LBranch(UseRegister(value));
    [all...]
lithium-codegen-mips.cc     [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h     [all...]
lithium-mips64.cc 160 void LBranch::PrintDataTo(StringStream* stream) {
911 LInstruction* branch = new(zone()) LBranch(UseRegister(value));
    [all...]
lithium-codegen-mips64.cc     [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h     [all...]
lithium-ppc.cc 173 void LBranch::PrintDataTo(StringStream* stream) {
916 LInstruction* branch = new (zone()) LBranch(UseRegister(value));
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.h     [all...]
lithium-s390.cc 162 void LBranch::PrintDataTo(StringStream* stream) {
837 LInstruction* branch = new (zone()) LBranch(UseRegister(value));
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h     [all...]
lithium-x64.cc 171 void LBranch::PrintDataTo(StringStream* stream) {
931 LInstruction* branch = new(zone()) LBranch(UseRegister(value));
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.h     [all...]
lithium-x87.cc 188 void LBranch::PrintDataTo(StringStream* stream) {
951 temp != NULL ? new (zone()) LBranch(UseRegister(value), temp)
952 : new (zone()) LBranch(UseRegisterAtStart(value), temp);
    [all...]

Completed in 453 milliseconds

1 2