HomeSort by relevance Sort by last modified time
    Searched refs:LBranch (Results 1 - 25 of 26) 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) {
986 return new(zone()) LBranch(UseRegister(value), NULL, NULL);
992 return new(zone()) LBranch(UseRegister(value), NULL, NULL);
997 return new(zone()) LBranch(UseRegister(value), TempRegister(), NULL);
1009 return new(zone()) LBranch(UseRegister(value), temp1, temp2);
1012 new(zone()) LBranch(UseRegister(value), temp1, temp2));
    [all...]
lithium-arm64.h 791 class LBranch final : public LControlInstruction<1, 2> {
793 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) {
933 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) {
973 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) {
943 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) {
943 LInstruction* branch = new(zone()) LBranch(UseRegister(value));
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h     [all...]
lithium-ppc.cc 173 void LBranch::PrintDataTo(StringStream* stream) {
947 LInstruction* branch = new (zone()) LBranch(UseRegister(value));
    [all...]
lithium-codegen-ppc.cc     [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h     [all...]
lithium-x64.cc 171 void LBranch::PrintDataTo(StringStream* stream) {
962 LInstruction* branch = new(zone()) LBranch(UseRegister(value));
    [all...]
lithium-codegen-x64.cc     [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.h     [all...]
lithium-x87.cc 188 void LBranch::PrintDataTo(StringStream* stream) {
990 temp != NULL ? new (zone()) LBranch(UseRegister(value), temp)
991 : new (zone()) LBranch(UseRegisterAtStart(value), temp);
    [all...]
lithium-codegen-x87.cc     [all...]

Completed in 691 milliseconds

1 2